Skip to content

Commit

Permalink
Merge branch 'blueprints'
Browse files Browse the repository at this point in the history
PR #1057

* blueprints:
  Update changelog with latest features
  Add feature opt in test through CLI layer
  Fix linting error for line spacing
  Update docs with a link to GH issues
  Move error message to constant
  Change link from rst to html
  Add documentation for feature flags
  Add support for experimental features
  Remove unused params in Blueprint
  Add API docs for blueprints
  Add test to verify blueprint has all decorators
  Clarify comment on taking kwargs in the route decorator
  Remove unused kwargs param
  Map lambda context to blueprint
  Update pyi file to be consistent with app.py
  Add support for blueprints
  • Loading branch information
jamesls committed Jan 30, 2019
2 parents 2b63cb5 + 77332c8 commit 9afae50
Show file tree
Hide file tree
Showing 15 changed files with 1,043 additions and 147 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Next Release (TBD)
(`#1047 <https://github.com/aws/chalice/pull/1047>`__)
* Add support for passing SNS ARNs to ``on_sns_message``
(`#1048 <https://github.com/aws/chalice/pull/1048>`__)
* Add support for Blueprints
(`#1023 <https://github.com/aws/chalice/pull/1023>`__)
* Add support for opting-in to experimental features
(`#1053 <https://github.com/aws/chalice/pull/1053>`__)


1.6.2
Expand Down
2 changes: 1 addition & 1 deletion chalice/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from chalice.app import Chalice
from chalice.app import Chalice, Blueprint
from chalice.app import (
ChaliceViewError, BadRequestError, UnauthorizedError, ForbiddenError,
NotFoundError, ConflictError, TooManyRequestsError, Response, CORSConfig,
Expand Down
Loading

0 comments on commit 9afae50

Please sign in to comment.