Skip to content

Commit 3cce66e

Browse files
authored
docs(roadmap): latest roadmap update; use new grid to de-clutter homepage (#3755)
* fix(parameters): make cache aware of single vs multiple calls Signed-off-by: heitorlessa <[email protected]> * chore: cleanup, add test for single and nested Signed-off-by: heitorlessa <[email protected]> * docs: key areas over themes; add launch/drop sections Signed-off-by: heitorlessa <[email protected]> * docs: add links to launched event handler feat * docs: add last office hours items * docs: link sigv4 mvp until RFC is complete * docs: update feedback email Signed-off-by: heitorlessa <[email protected]> * docs: update govcloud items Signed-off-by: heitorlessa <[email protected]> * docs: link versioning process * docs: add bedrock * docs: add py3.7 area * docs: update wording on why an item was dropped * docs: add parameters set area * docs: remove python 3.7 banner Signed-off-by: heitorlessa <[email protected]> * docs: enable code tab deep linking * docs: draft grids * docs: cleanup grids; fix warnings Signed-off-by: heitorlessa <[email protected]> * docs: cleanup support us sections Signed-off-by: heitorlessa <[email protected]> * docs: cleanup install Signed-off-by: heitorlessa <[email protected]> * docs: major cleanup for layer sections Signed-off-by: heitorlessa <[email protected]> * chore: fixed Simon's feedback on bot email Signed-off-by: heitorlessa <[email protected]> --------- Signed-off-by: heitorlessa <[email protected]>
1 parent ea47f53 commit 3cce66e

File tree

8 files changed

+679
-570
lines changed

8 files changed

+679
-570
lines changed

.github/actions/create-pr/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ runs:
6464
name: Git client setup and refresh tip
6565
run: |
6666
git config user.name "Powertools for AWS Lambda (Python) bot"
67-
git config user.email "aws-lambda-powertools-feedback@amazon.com"
67+
git config user.email "151832416+aws-powertools-[email protected].com"
6868
git config pull.rebase true
6969
git config remote.origin.url >&-
7070
shell: bash

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ jobs:
273273
name: Git client setup and refresh tip
274274
run: |
275275
git config user.name "Powertools for AWS Lambda (Python) bot"
276-
git config user.email "aws-lambda-powertools-feedback@amazon.com"
276+
git config user.email "151832416+aws-powertools-[email protected].com"
277277
git config remote.origin.url >&-
278278
279279
- name: Create Git Tag

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ This helps us understand who uses Powertools for AWS Lambda (Python) in a non-in
8181
## Connect
8282

8383
* **Powertools for AWS Lambda on Discord**: `#python` - **[Invite link](https://discord.gg/B8zZKbbyET)**
84-
* **Email**: <aws-lambda-powertools-feedback@amazon.com>
84+
* **Email**: <aws-powertools-maintainers@amazon.com>
8585

8686
## Security disclosures
8787

docs/index.md

+551-489
Large diffs are not rendered by default.

docs/overrides/main.html

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{% extends "base.html" %}
22

33
{% block announce %}
4-
<p>🚨 As of February 8, 2024, AWS Lambda will no longer allow Python 3.7 functions to be updated. Inline with this, Powertools releases will stop supporting it.</p>
5-
<p>Please ensure you update your functions to Python 3.8 or later to continue to use the latest version of Powertools for AWS Lambda (Python).</p>
64
{% endblock %}
75

86
{% block outdated %}

docs/roadmap.md

+117-73
Large diffs are not rendered by default.

docs/tutorial/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1045,4 +1045,4 @@ This requires a change in mindset to ensure operational excellence is part of th
10451045
Powertools for AWS Lambda (Python) is largely designed to make some of these practices easier to adopt from day 1.
10461046

10471047
???+ question "Have ideas for other tutorials?"
1048-
You can open up a [documentation issue](https://github.com/aws-powertools/powertools-lambda-python/issues/new?assignees=&labels=documentation&template=documentation-improvements.md&title=Tutorial%20Suggestion){target="_blank"}, or via e-mail [aws-lambda-powertools-feedback@amazon.com](mailto:aws-lambda-powertools-feedback@amazon.com).
1048+
You can open up a [documentation issue](https://github.com/aws-powertools/powertools-lambda-python/issues/new?assignees=&labels=documentation&template=documentation-improvements.md&title=Tutorial%20Suggestion){target="_blank"}, or via e-mail [aws-powertools-maintainers@amazon.com](mailto:aws-powertools-maintainers@amazon.com).

mkdocs.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ theme:
8787
- navigation.tabs
8888
- content.code.annotate
8989
- content.code.copy
90+
- content.tabs.link
9091
icon:
9192
repo: fontawesome/brands/github
9293
logo: media/aws-logo-light.svg
@@ -98,6 +99,9 @@ markdown_extensions:
9899
- abbr
99100
- pymdownx.tabbed:
100101
alternate_style: true
102+
slugify: !!python/object/apply:pymdownx.slugs.slugify
103+
kwds:
104+
case: lower
101105
- pymdownx.highlight:
102106
linenums: true
103107
- pymdownx.details
@@ -112,9 +116,10 @@ markdown_extensions:
112116
permalink: true
113117
toc_depth: 4
114118
- attr_list
119+
- md_in_html
115120
- pymdownx.emoji:
116-
emoji_index: !!python/name:materialx.emoji.twemoji
117-
emoji_generator: !!python/name:materialx.emoji.to_svg
121+
emoji_index: !!python/name:material.extensions.emoji.twemoji
122+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
118123
- pymdownx.inlinehilite
119124
- pymdownx.superfences:
120125
custom_fences:

0 commit comments

Comments
 (0)