Skip to content

Commit 011350e

Browse files
authored
Merge pull request #1 from aws/master
Pull latest upstream changes
2 parents a83b7ee + 86633bf commit 011350e

File tree

112 files changed

+15169
-2097
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+15169
-2097
lines changed

.changes/1.16.0.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"schema-version": "1.0",
3+
"changes": [
4+
{
5+
"type": "enhancement",
6+
"category": "local",
7+
"description": "Avoid error from cognito client credentials in local authorizer (#1447)"
8+
},
9+
{
10+
"type": "bugfix",
11+
"category": "package",
12+
"description": "Traverse symlinks to directories when packaging the vendor directory (#583)."
13+
},
14+
{
15+
"type": "feature",
16+
"category": "DomainName",
17+
"description": "Add support for custom domain names to REST/WebSocket APIs (#1194)"
18+
},
19+
{
20+
"type": "feature",
21+
"category": "auth",
22+
"description": "Add support for oauth scopes on routes (#1444)."
23+
}
24+
]
25+
}

.changes/1.17.0.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"schema-version": "1.0",
3+
"changes": [
4+
{
5+
"type": "feature",
6+
"category": "Testing",
7+
"description": "Add Chalice test client (#1468)"
8+
},
9+
{
10+
"type": "enhancement",
11+
"category": "regions",
12+
"description": "Add support for non `aws` partitions including aws-cn and aws-us-gov (#792)."
13+
},
14+
{
15+
"type": "bugfix",
16+
"category": "dependencies",
17+
"description": "Fix error when using old versions of click by requiring >=7"
18+
},
19+
{
20+
"type": "bugfix",
21+
"category": "local",
22+
"description": "Fix local mode builtin authorizer not stripping query string from URL (#1470)"
23+
}
24+
]
25+
}

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Add files or directories to the blacklist. They should be base names, not
1111
# paths.
12-
ignore=compat.py
12+
ignore=compat.py,regions.py
1313

1414
# Pickle collected data for later comparisons.
1515
persistent=yes

CHANGELOG.rst

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
CHANGELOG
33
=========
44

5+
1.17.0
6+
======
7+
8+
* feature:Testing:Add Chalice test client (#1468)
9+
* enhancement:regions:Add support for non `aws` partitions including aws-cn and aws-us-gov (#792).
10+
* bugfix:dependencies:Fix error when using old versions of click by requiring >=7
11+
* bugfix:local:Fix local mode builtin authorizer not stripping query string from URL (#1470)
12+
13+
14+
1.16.0
15+
======
16+
17+
* enhancement:local:Avoid error from cognito client credentials in local authorizer (#1447)
18+
* bugfix:package:Traverse symlinks to directories when packaging the vendor directory (#583).
19+
* feature:DomainName:Add support for custom domain names to REST/WebSocket APIs (#1194)
20+
* feature:auth:Add support for oauth scopes on routes (#1444).
21+
22+
523
1.15.1
624
======
725

@@ -290,7 +308,7 @@ code used in Chalice. This is a backwards compatible change
290308
for users, but you may see changes to the autogenerated
291309
files Chalice creates.
292310
Please read the `upgrade notes for 1.2.0
293-
<http://aws.github.io/chalice/upgrading.html#v1-2-0>`__
311+
<http://chalice.readthedocs.io/en/latest/upgrading.html#v1-2-0>`__
294312
for more detailed information about upgrading to this release.
295313

296314

@@ -430,7 +448,7 @@ for more detailed information about upgrading to this release.
430448

431449

432450
Please read the `upgrade notes for 1.0.0b2
433-
<http://aws.github.io/chalice/upgrading.html#v1-0-0b2>`__
451+
<http://chalice.readthedocs.io/en/latest/upgrading.html#v1-0-0b2>`__
434452
for more detailed information about upgrading to this release.
435453

436454
Note: to install this beta version of chalice you must specify
@@ -458,7 +476,7 @@ use the ``--pre`` flag for pip: ``pip install --pre chalice``.
458476

459477

460478
Please read the `upgrade notes for 1.0.0b1
461-
<http://aws.github.io/chalice/upgrading.html#v1-0-0b1>`__
479+
<http://chalice.readthedocs.io/en/latest/upgrading.html#v1-0-0b1>`__
462480
for more detailed information about upgrading to this release.
463481

464482
Note: to install this beta version of chalice you must specify
@@ -583,7 +601,7 @@ use the ``--pre`` flag for pip: ``pip install --pre chalice``.
583601

584602

585603
Check out the `upgrade notes for 0.6.0
586-
<http://aws.github.io/chalice/upgrading.html#v0-6-0>`__
604+
<http://chalice.readthedocs.io/en/latest/upgrading.html#v0-6-0>`__
587605
for more detailed information about changes in this release.
588606

589607

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ TESTS=tests/unit tests/functional tests/integration
66
check:
77
###### FLAKE8 #####
88
# No unused imports, no undefined vars,
9-
flake8 --ignore=E731,W503,W504 --exclude chalice/__init__.py,chalice/compat.py --max-complexity 10 chalice/
9+
flake8 --ignore=E731,W503,W504 --exclude chalice/__init__.py,chalice/compat.py,chalice/vendored/botocore/regions.py --max-complexity 10 chalice/
1010
flake8 --ignore=E731,W503,W504,F401 --max-complexity 10 chalice/compat.py
1111
flake8 tests/unit/ tests/functional/ tests/integration tests/aws
1212
#
1313
# Proper docstring conventions according to pep257
1414
#
1515
#
16-
pydocstyle --add-ignore=D100,D101,D102,D103,D104,D105,D204,D301 chalice/
16+
pydocstyle --add-ignore=D100,D101,D102,D103,D104,D105,D204,D301 --match='(?!(test_|regions)).*\.py' chalice/
1717

1818
pylint:
1919
###### PYLINT ######
@@ -44,7 +44,7 @@ doccheck:
4444
#
4545
# TODO: Remove doc8
4646
##
47-
doc8 docs/source --ignore-path docs/source/topics/multifile.rst --ignore-path docs/source/tutorials/websockets.rst
47+
doc8 docs/source --ignore-path docs/source/topics/multifile.rst
4848
#
4949
#
5050
# Verify we have no broken external links

0 commit comments

Comments
 (0)