Skip to content

Commit

Permalink
Merge branch 'upstream' into terraform-package
Browse files Browse the repository at this point in the history
  • Loading branch information
kapilt committed Jul 30, 2019
2 parents 373d2f3 + bd7fa76 commit 124f3d9
Show file tree
Hide file tree
Showing 47 changed files with 5,072 additions and 256 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@
CHANGELOG
=========

Next Release (TBD)
==================

* Add experimental support for websockets
(`#1017 <https://github.com/aws/chalice/issues/1017>`__)

* API Gateway Endpoint Type Configuration
(`#1160 https://github.com/aws/chalice/pull/1160`__)

* API Gateway Resource Policy Configuration
(`#1160 https://github.com/aws/chalice/pull/1160`__)

1.9.1
=====

* Make MultiDict mutable
(`#1158 <https://github.com/aws/chalice/issues/1158>`__)


1.9.0
=====

Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ doccheck:
##### DOC8 ######
# Correct rst formatting for documentation
#
# TODO: Remove doc8
##
doc8 docs/source --ignore-path docs/source/topics/multifile.rst
doc8 docs/source --ignore-path docs/source/topics/multifile.rst --ignore-path docs/source/tutorials/websockets.rst
#
#
# Verify we have no broken external links
Expand Down
2 changes: 1 addition & 1 deletion chalice/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ChaliceViewError, BadRequestError, UnauthorizedError, ForbiddenError,
NotFoundError, ConflictError, TooManyRequestsError, Response, CORSConfig,
CustomAuthorizer, CognitoUserPoolAuthorizer, IAMAuthorizer,
UnprocessableEntityError,
UnprocessableEntityError, WebsocketDisconnectedError,
AuthResponse, AuthRoute, Cron, Rate, __version__ as chalice_version
)
# We're reassigning version here to keep mypy happy.
Expand Down
3 changes: 2 additions & 1 deletion chalice/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,8 @@ class AppViewTransformer(ast.NodeTransformer):
_CHALICE_DECORATORS = [
'route', 'authorizer', 'lambda_function',
'schedule', 'on_s3_event', 'on_sns_message',
'on_sqs_message',
'on_sqs_message', 'on_ws_connect', 'on_ws_message',
'on_ws_disconnect',
]

def visit_FunctionDef(self, node):
Expand Down
Loading

0 comments on commit 124f3d9

Please sign in to comment.