aws-annoying 0.8.3__tar.gz → 0.8.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.github/workflows/devcf_release.yaml +1 -1
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.github/workflows/main_prepare-release.yaml +1 -1
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/PKG-INFO +1 -1
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/pyproject.toml +1 -1
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/uv.lock +20 -19
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.devcontainer/.env.example +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.devcontainer/Dockerfile +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.devcontainer/devcontainer.json +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.devcontainer/docker-compose.devcontainer.yaml +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.devcontainer/onCreateCommand.sh +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.devcontainer/postAttachCommand.sh +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.editorconfig +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.gitattributes +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.github/dependabot.yaml +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.github/workflows/devcf_ci.yaml +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.github/workflows/main_ci.yaml +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.github/workflows/main_docs.yaml +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.github/workflows/main_release.yaml +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.gitignore +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.pre-commit-config.yaml +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.python-version +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.vscode/extensions.json +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.vscode/launch.json +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/.vscode/settings.json +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/LICENSE +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/Makefile +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/README.md +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/app.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/ecs/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/ecs/_app.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/ecs/task_definition_lifecycle.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/ecs/wait_for_deployment.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/load_variables.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/logging_handler.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/main.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/mfa/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/mfa/_app.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/mfa/configure.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/session_manager/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/session_manager/_app.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/session_manager/_common.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/session_manager/install.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/session_manager/port_forward.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/session_manager/start.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/cli/session_manager/stop.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/ecs/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/ecs/check.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/ecs/common.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/ecs/errors.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/ecs/wait_for.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/mfa_config.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/session_manager/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/session_manager/errors.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/session_manager/session_manager.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/session_manager/shortcuts.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/utils/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/utils/debugger.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/utils/downloader.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/utils/ec2.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/utils/platform.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/utils/timeout.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/aws_annoying/variable_loader.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/console/ecs-exec/README.md +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/console/ecs-exec/ecs-console.png +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/console/ecs-exec/ecs-exec.user.js +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/console/ecs-exec/session-manager.png +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/devcontainer-features/src/session-manager-plugin/README.md +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/devcontainer-features/src/session-manager-plugin/devcontainer-feature.json +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/devcontainer-features/src/session-manager-plugin/install.sh +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/devcontainer-features/test/_global/scenarios.json +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/devcontainer-features/test/session-manager-plugin/scenarios.json +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/devcontainer-features/test/session-manager-plugin/test.sh +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/docs/cli-references/ecs.md +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/docs/cli-references/mfa.md +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/docs/cli-references/misc.md +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/docs/cli-references/session-manager.md +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/docs/index.md +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/examples/dbeaver/README.md +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/examples/dbeaver/after-disconnect.png +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/examples/dbeaver/before-connect.png +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/examples/dbeaver/new-connection.png +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/examples/dbeaver/test-connection.png +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/mkdocs.yaml +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/_helpers.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/_helpers/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/_helpers/boto3.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/_helpers/command_builder.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/_helpers/invoke.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/_helpers/scripts/printenv.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/_helpers/string_.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/ecs/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/ecs/snapshots/test_task_definition_lifecycle/test_basic/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/ecs/snapshots/test_task_definition_lifecycle/test_delete/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/ecs/snapshots/test_task_definition_lifecycle/test_dry_run/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/ecs/test_task_definition_lifecycle.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/ecs/test_wait_for_deployment.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/mfa/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/mfa/snapshots/test_configure/test_basic/persist/aws_config.ini +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/mfa/snapshots/test_configure/test_basic/persist/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/mfa/snapshots/test_configure/test_basic/skip_persist/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/mfa/snapshots/test_configure/test_dry_run/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/mfa/snapshots/test_configure/test_load_existing_config/aws_config.ini +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/mfa/snapshots/test_configure/test_load_existing_config/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/mfa/test_configure.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/session_manager/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/session_manager/test_install.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/session_manager/test_port_forward.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/session_manager/test_start.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/session_manager/test_stop.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/snapshots/test_load_variables/test_basic/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/snapshots/test_load_variables/test_env_prefix/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/snapshots/test_load_variables/test_nothing/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/snapshots/test_load_variables/test_overwrite_env/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/snapshots/test_load_variables/test_replace_quiet/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/snapshots/test_load_variables/test_resource_not_found/ssm/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/snapshots/test_load_variables/test_unsupported_resource/stdout.txt +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/test_app.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/test_load_variables.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/test_logging_handler.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/cli/test_main.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/conftest.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/ecs/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/ecs/test_check.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/ecs/test_common.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/ecs/test_errors.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/ecs/test_wait_for.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/session_manager/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/session_manager/test_errors.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/session_manager/test_session_manager.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/session_manager/test_shortcuts.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/test_mfa_config.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/test_variable_loader.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/utils/__init__.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/utils/test_downloader.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/utils/test_ec2.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/utils/test_platform.py +0 -0
- {aws_annoying-0.8.3 → aws_annoying-0.8.4}/tests/utils/test_timeout.py +0 -0
|
@@ -37,7 +37,7 @@ jobs:
|
|
|
37
37
|
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
38
38
|
|
|
39
39
|
- name: Create PR for generated docs
|
|
40
|
-
uses: peter-evans/create-pull-request@v8.
|
|
40
|
+
uses: peter-evans/create-pull-request@v8.1.0
|
|
41
41
|
with:
|
|
42
42
|
token: ${{ steps.generate-token.outputs.token }}
|
|
43
43
|
sign-commits: true
|
|
@@ -42,7 +42,7 @@ jobs:
|
|
|
42
42
|
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
43
43
|
|
|
44
44
|
- name: Create pull request
|
|
45
|
-
uses: peter-evans/create-pull-request@v8.
|
|
45
|
+
uses: peter-evans/create-pull-request@v8.1.0
|
|
46
46
|
with:
|
|
47
47
|
token: ${{ steps.generate-token.outputs.token }}
|
|
48
48
|
sign-commits: true
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aws-annoying
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.4
|
|
4
4
|
Summary: Utils to handle some annoying AWS tasks.
|
|
5
5
|
Project-URL: Homepage, https://github.com/lasuillard-s/aws-annoying
|
|
6
6
|
Project-URL: Repository, https://github.com/lasuillard-s/aws-annoying.git
|
|
@@ -35,7 +35,7 @@ wheels = [
|
|
|
35
35
|
|
|
36
36
|
[[package]]
|
|
37
37
|
name = "aws-annoying"
|
|
38
|
-
version = "0.8.
|
|
38
|
+
version = "0.8.4"
|
|
39
39
|
source = { editable = "." }
|
|
40
40
|
dependencies = [
|
|
41
41
|
{ name = "boto3" },
|
|
@@ -617,7 +617,7 @@ wheels = [
|
|
|
617
617
|
|
|
618
618
|
[[package]]
|
|
619
619
|
name = "flask"
|
|
620
|
-
version = "3.1.
|
|
620
|
+
version = "3.1.1"
|
|
621
621
|
source = { registry = "https://pypi.org/simple" }
|
|
622
622
|
dependencies = [
|
|
623
623
|
{ name = "blinker" },
|
|
@@ -625,24 +625,25 @@ dependencies = [
|
|
|
625
625
|
{ name = "importlib-metadata", marker = "python_full_version < '3.10'" },
|
|
626
626
|
{ name = "itsdangerous" },
|
|
627
627
|
{ name = "jinja2" },
|
|
628
|
+
{ name = "markupsafe" },
|
|
628
629
|
{ name = "werkzeug" },
|
|
629
630
|
]
|
|
630
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
631
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c0/de/e47735752347f4128bcf354e0da07ef311a78244eba9e3dc1d4a5ab21a98/flask-3.1.1.tar.gz", hash = "sha256:284c7b8f2f58cb737f0cf1c30fd7eaf0ccfcde196099d24ecede3fc2005aa59e", size = 753440, upload-time = "2025-05-13T15:01:17.447Z" }
|
|
631
632
|
wheels = [
|
|
632
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
633
|
+
{ url = "https://files.pythonhosted.org/packages/3d/68/9d4508e893976286d2ead7f8f571314af6c2037af34853a30fd769c02e9d/flask-3.1.1-py3-none-any.whl", hash = "sha256:07aae2bb5eaf77993ef57e357491839f5fd9f4dc281593a81a9e4d79a24f295c", size = 103305, upload-time = "2025-05-13T15:01:15.591Z" },
|
|
633
634
|
]
|
|
634
635
|
|
|
635
636
|
[[package]]
|
|
636
637
|
name = "flask-cors"
|
|
637
|
-
version = "
|
|
638
|
+
version = "6.0.0"
|
|
638
639
|
source = { registry = "https://pypi.org/simple" }
|
|
639
640
|
dependencies = [
|
|
640
641
|
{ name = "flask" },
|
|
641
642
|
{ name = "werkzeug" },
|
|
642
643
|
]
|
|
643
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
644
|
+
sdist = { url = "https://files.pythonhosted.org/packages/20/e7/b3c6afdd984672b55dff07482699c688af6c01bd7fd5dd55f9c9d1a88d1c/flask_cors-6.0.0.tar.gz", hash = "sha256:4592c1570246bf7beee96b74bc0adbbfcb1b0318f6ba05c412e8909eceec3393", size = 11875, upload-time = "2025-05-17T14:35:16.98Z" }
|
|
644
645
|
wheels = [
|
|
645
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
646
|
+
{ url = "https://files.pythonhosted.org/packages/ba/f0/0ee29090016345938f016ee98aa8b5de1c500ee93491dc0c76495848fca1/flask_cors-6.0.0-py3-none-any.whl", hash = "sha256:6332073356452343a8ccddbfec7befdc3fdd040141fe776ec9b94c262f058657", size = 11549, upload-time = "2025-05-17T14:35:15.766Z" },
|
|
646
647
|
]
|
|
647
648
|
|
|
648
649
|
[[package]]
|
|
@@ -752,14 +753,14 @@ wheels = [
|
|
|
752
753
|
|
|
753
754
|
[[package]]
|
|
754
755
|
name = "jinja2"
|
|
755
|
-
version = "3.1.
|
|
756
|
+
version = "3.1.6"
|
|
756
757
|
source = { registry = "https://pypi.org/simple" }
|
|
757
758
|
dependencies = [
|
|
758
759
|
{ name = "markupsafe" },
|
|
759
760
|
]
|
|
760
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
761
|
+
sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" }
|
|
761
762
|
wheels = [
|
|
762
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
763
|
+
{ url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" },
|
|
763
764
|
]
|
|
764
765
|
|
|
765
766
|
[[package]]
|
|
@@ -2057,7 +2058,7 @@ wheels = [
|
|
|
2057
2058
|
|
|
2058
2059
|
[[package]]
|
|
2059
2060
|
name = "requests"
|
|
2060
|
-
version = "2.32.
|
|
2061
|
+
version = "2.32.4"
|
|
2061
2062
|
source = { registry = "https://pypi.org/simple" }
|
|
2062
2063
|
dependencies = [
|
|
2063
2064
|
{ name = "certifi" },
|
|
@@ -2066,9 +2067,9 @@ dependencies = [
|
|
|
2066
2067
|
{ name = "urllib3", version = "1.26.20", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
2067
2068
|
{ name = "urllib3", version = "2.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
2068
2069
|
]
|
|
2069
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2070
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e1/0a/929373653770d8a0d7ea76c37de6e41f11eb07559b103b1c02cafb3f7cf8/requests-2.32.4.tar.gz", hash = "sha256:27d0316682c8a29834d3264820024b62a36942083d52caf2f14c0591336d3422", size = 135258, upload-time = "2025-06-09T16:43:07.34Z" }
|
|
2070
2071
|
wheels = [
|
|
2071
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2072
|
+
{ url = "https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl", hash = "sha256:27babd3cda2a6d50b30443204ee89830707d396671944c998b5975b031ac2b2c", size = 64847, upload-time = "2025-06-09T16:43:05.728Z" },
|
|
2072
2073
|
]
|
|
2073
2074
|
|
|
2074
2075
|
[[package]]
|
|
@@ -2262,11 +2263,11 @@ wheels = [
|
|
|
2262
2263
|
|
|
2263
2264
|
[[package]]
|
|
2264
2265
|
name = "setuptools"
|
|
2265
|
-
version = "
|
|
2266
|
+
version = "78.1.1"
|
|
2266
2267
|
source = { registry = "https://pypi.org/simple" }
|
|
2267
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2268
|
+
sdist = { url = "https://files.pythonhosted.org/packages/81/9c/42314ee079a3e9c24b27515f9fbc7a3c1d29992c33451779011c74488375/setuptools-78.1.1.tar.gz", hash = "sha256:fcc17fd9cd898242f6b4adfaca46137a9edef687f43e6f78469692a5e70d851d", size = 1368163, upload-time = "2025-04-19T18:23:36.68Z" }
|
|
2268
2269
|
wheels = [
|
|
2269
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2270
|
+
{ url = "https://files.pythonhosted.org/packages/90/99/158ad0609729111163fc1f674a5a42f2605371a4cf036d0441070e2f7455/setuptools-78.1.1-py3-none-any.whl", hash = "sha256:c3a9c4211ff4c309edb8b8c4f1cbfa7ae324c4ba9f91ff254e3d305b9fd54561", size = 1256462, upload-time = "2025-04-19T18:23:34.525Z" },
|
|
2270
2271
|
]
|
|
2271
2272
|
|
|
2272
2273
|
[[package]]
|
|
@@ -2564,14 +2565,14 @@ wheels = [
|
|
|
2564
2565
|
|
|
2565
2566
|
[[package]]
|
|
2566
2567
|
name = "werkzeug"
|
|
2567
|
-
version = "3.1.
|
|
2568
|
+
version = "3.1.5"
|
|
2568
2569
|
source = { registry = "https://pypi.org/simple" }
|
|
2569
2570
|
dependencies = [
|
|
2570
2571
|
{ name = "markupsafe" },
|
|
2571
2572
|
]
|
|
2572
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2573
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5a/70/1469ef1d3542ae7c2c7b72bd5e3a4e6ee69d7978fa8a3af05a38eca5becf/werkzeug-3.1.5.tar.gz", hash = "sha256:6a548b0e88955dd07ccb25539d7d0cc97417ee9e179677d22c7041c8f078ce67", size = 864754, upload-time = "2026-01-08T17:49:23.247Z" }
|
|
2573
2574
|
wheels = [
|
|
2574
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2575
|
+
{ url = "https://files.pythonhosted.org/packages/ad/e4/8d97cca767bcc1be76d16fb76951608305561c6e056811587f36cb1316a8/werkzeug-3.1.5-py3-none-any.whl", hash = "sha256:5111e36e91086ece91f93268bb39b4a35c1e6f1feac762c9c822ded0a4e322dc", size = 225025, upload-time = "2026-01-08T17:49:21.859Z" },
|
|
2575
2576
|
]
|
|
2576
2577
|
|
|
2577
2578
|
[[package]]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aws_annoying-0.8.3 → aws_annoying-0.8.4}/devcontainer-features/src/session-manager-plugin/README.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aws_annoying-0.8.3 → aws_annoying-0.8.4}/devcontainer-features/test/session-manager-plugin/test.sh
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|