Skip to content

Commit ae35063

Browse files
author
Michael Brewer
committed
Merge branch 'develop' into feat-event-source-decorator
2 parents cc3547c + 9b88322 commit ae35063

10 files changed

+88
-63
lines changed

.github/auto-label_yml.inactive

-36
This file was deleted.

.github/dependabot.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
version: 2
2+
updates:
3+
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
commit-message:
9+
prefix: chore
10+
include: scope
11+
12+
- package-ecosystem: "pip"
13+
directory: "/"
14+
schedule:
15+
interval: "daily"
16+
target-branch: "develop"
17+
commit-message:
18+
prefix: chore
19+
include: scope
20+
21+
# - package-ecosystem: "pip"
22+
# directory: "/"
23+
# schedule:
24+
# interval: "daily"
25+
# target-branch: "develop"
26+
# update_types:
27+
# - "semver:major"
28+
# labels:
29+
# - "do-not-merge"
30+
# - "dependencies"
31+
# commit-message:
32+
# prefix: chore
33+
# include: scope

.github/mergify.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
pull_request_rules:
2+
- name: automatic merge for Dependabot pull requests
3+
conditions:
4+
- author~=^dependabot(|-preview)\[bot\]$
5+
- check-success=Build
6+
- -label~="do-not-merge"
7+
actions:
8+
merge:
9+
strict: false
10+
method: squash
11+
commit_message: title+body
12+
13+
- name: Automatic merge ⬇️ on approval ✔
14+
conditions:
15+
- base!=master
16+
- "#approved-reviews-by>=1"
17+
- "#changes-requested-reviews-by=0"
18+
- -title~=(WIP|wip)
19+
- check-success=Build
20+
- check-success=Semantic Pull Request
21+
- body~=(?m)^\[X\] Meet tenets criteria
22+
actions:
23+
merge:
24+
strict: smart
25+
method: squash
26+
strict_method: merge
27+
commit_message: title+body

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
fetch-depth: 0
3737
- name: Set up Python
38-
uses: actions/setup-python@v1
38+
uses: actions/setup-python@v2.2.2
3939
with:
4040
python-version: "3.8"
4141
- name: Set release notes tag

.github/workflows/python_build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v1
2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v1
26+
uses: actions/setup-python@v2.2.2
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
- name: Install dependencies

.github/workflows/python_docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
fetch-depth: 0
1515
- name: Set up Python
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v2.2.2
1717
with:
1818
python-version: "3.8"
1919
- name: Install dependencies

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
A suite of Python utilities for AWS Lambda functions to ease adopting best practices such as tracing, structured logging, custom metrics, and more. ([AWS Lambda Powertools Java](https://github.com/awslabs/aws-lambda-powertools-java) is also available).
77

8-
**[📜Documentation](https://awslabs.github.io/aws-lambda-powertools-python/)** | **[API Docs](https://awslabs.github.io/aws-lambda-powertools-python/api/)** | **[🐍PyPi](https://pypi.org/project/aws-lambda-powertools/)** | **[Feature request](https://github.com/awslabs/aws-lambda-powertools-python/issues/new?assignees=&labels=feature-request%2C+triage&template=feature_request.md&title=)** | **[🐛Bug Report](https://github.com/awslabs/aws-lambda-powertools-python/issues/new?assignees=&labels=bug%2C+triage&template=bug_report.md&title=)** | **[Hello world example](https://github.com/aws-samples/cookiecutter-aws-sam-python)** | **[Detailed blog post](https://aws.amazon.com/blogs/opensource/simplifying-serverless-best-practices-with-lambda-powertools/)**
8+
**[📜Documentation](https://awslabs.github.io/aws-lambda-powertools-python/)** | **[🐍PyPi](https://pypi.org/project/aws-lambda-powertools/)** | **[Roadmap](https://github.com/awslabs/aws-lambda-powertools-roadmap/projects/1)** | **[Quick hello world example](https://github.com/aws-samples/cookiecutter-aws-sam-python)** | **[Detailed blog post](https://aws.amazon.com/blogs/opensource/simplifying-serverless-best-practices-with-lambda-powertools/)**
99

1010
> **Join us on the AWS Developers Slack at `#lambda-powertools`** - **[Invite, if you don't have an account](https://join.slack.com/t/awsdevelopers/shared_invite/zt-gu30gquv-EhwIYq3kHhhysaZ2aIX7ew)**
1111

mkdocs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ edit_uri: edit/develop/docs
77
nav:
88
- Homepage: index.md
99
- Changelog: changelog.md
10+
- Roadmap: https://github.com/awslabs/aws-lambda-powertools-roadmap/projects/1" target="_blank
1011
- API reference: api/" target="_blank
1112
- Core utilities:
1213
- core/tracer.md

poetry.lock

+20-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ isort = "^5.8.0"
4343
pytest-cov = "^2.11.1"
4444
pytest-mock = "^3.5.1"
4545
pdoc3 = "^0.9.2"
46-
pytest-asyncio = "^0.14.0"
46+
pytest-asyncio = "^0.15.1"
4747
bandit = "^1.7.0"
4848
radon = "^4.5.0"
49-
xenon = "^0.7.1"
49+
xenon = "^0.7.3"
5050
flake8-eradicate = "^1.0.0"
5151
flake8-bugbear = "^21.3.2"
52-
mkdocs-material = "^7.1.0"
52+
mkdocs-material = "^7.1.6"
5353
mkdocs-git-revision-date-plugin = "^0.3.1"
5454
mike = "^0.6.0"
5555

0 commit comments

Comments
 (0)