René's URL Explorer Experiment


Title: Update dependency docker to v7 by mend-5034428[bot] · Pull Request #5 · cvent/cloudformation-cli-python-plugin · GitHub

Open Graph Title: Update dependency docker to v7 by mend-5034428[bot] · Pull Request #5 · cvent/cloudformation-cli-python-plugin

X Title: Update dependency docker to v7 by mend-5034428[bot] · Pull Request #5 · cvent/cloudformation-cli-python-plugin

Description: This PR contains the following updates: Package Change Age Adoption Passing Confidence docker (changelog) >=3.7,<3.8 -> >=7.1.0,<7.2 Release Notes docker/docker-py (docker) v7.1.0 Compare Source Upgrade Notes Bumped minimum engine API version to 1.24 Bumped default engine API version to 1.44 (Moby 25.0) Bugfixes Fixed issue with tag parsing when the registry address includes ports that resulted in invalid tag format errors Fixed issue preventing creating new configs (ConfigCollection), which failed with a KeyError due to the name field Fixed an issue due to an update in the requests package breaking docker-py by applying the suggested fix Miscellaneous Documentation improvements Updated Ruff (linter) and fixed minor linting issues Packaging/CI updates Started using hatch for packaging (https://github.com/pypa/hatch) Updated setup-python github action Updated tests Stopped checking for deprecated container and image related fields (Container and ContainerConfig) Updated tests that check NetworkSettings.Networks..Aliases due to engine changes What's Changed Bump default API version to 1.43 (Moby 24.0) by @​vvoland in #​3199 integration/commit: Don't check for deprecated fields by @​vvoland in #​3203 fix: tag regex should allow ports by @​artificial-intelligence in #​3196 utils: Fix datetime_to_timestamp by @​vvoland in #​3208 fix: keyerror when creating new config(#​3110) by @​Khushiyant in #​3200 Update Ruff, fix some minor issues by @​akx in #​3206 docs: change image.history() return type to list (#​3076) by @​Khushiyant in #​3202 lint: fix string formatting by @​milas in #​3211 Drop packaging dependency by @​akx in #​3205 Bump default API version to 1.44 (Moby 25.0) by @​vvoland in #​3231 Modernize build to use hatchling and hatch-vcs by @​akx in #​3207 Enable Ruff I (import sort), autofix by @​akx in #​3212 chore(ci): fix-ups across Make / Docker / GitHub Actions by @​milas in #​3241 chore: fix return type docs for container.logs() by @​BobDu in #​2240 CI fix by @​krissetto in #​3260 Fix for requests 2.32 by @​felixfontein in #​3257 Added 7.1.0 changelog by @​krissetto in #​3262 Fix env var name in release pipeline by @​krissetto in #​3263 Change env var name in release pipeline to match hatch expectations by @​krissetto in #​3264 New Contributors @​vvoland made their first contribution in #​3199 @​artificial-intelligence made their first contribution in #​3196 @​Khushiyant made their first contribution in #​3200 @​BobDu made their first contribution in #​2240 @​krissetto made their first contribution in #​3260 Full Changelog: docker/docker-py@7.0.0...7.1.0 v7.0.0 Compare Source Upgrade Notes (from 6.x) ⚠️ Removed SSL version (ssl_version) and explicit hostname check (assert_hostname) options (#​3185) assert_hostname has not been used since Python 3.6 and was removed in 3.12 Python 3.7+ supports TLSv1.3 by default Websocket support is no longer included by default (#​3123) Use pip install docker[websockets] to include websocket-client dependency By default, docker-py hijacks the TCP connection and does not use Websockets Websocket client is only required to use attach_socket(container, ws=True) Python 3.7 no longer supported (reached end-of-life June 2023) (#​3187) Features ✨ Python 3.12 support (#​3185) Full networking_config support for containers.create() (#​3121) Replaces network_driver_opt (added in 6.1.0) Add health() property to container that returns status (e.g. unhealthy) (#​3147) Add pause option to container.commit() (#​3159) Add support for bind mount propagation (e.g. rshared, private) (#​3164) Add support for filters, keep_storage, and all in prune_builds() on API v1.39+ (#​3192) Bugfixes 🐛 Consistently return docker.errors.NotFound on 404 responses (#​3156) Validate tag format before push (#​3191) Miscellaneous 🔧 Upgraded urllib3 version in requirements.txt (used for development/tests) (#​3183) Documentation typo fixes & formatting improvements (#​3130) Fixed integration test compatibility for newer Moby engine versions (#​3165, #​3166, #​3145, #​3169, #​3170) Switch to ruff for linting (#​3126) What's Changed fix user_guides/multiplex.rst by @​Longin-Yu in #​3130 tests/integration: fix flake8 failures (E721 do not compare types), and fix Dockerfile for debian "bookworm" by @​thaJeztah in #​3166 tests/integration: update some tests for updated error-messages by @​thaJeztah in #​3165 README: fix link for CI status badge by @​thaJeztah in #​3167 fix: use response.text to get string rather than bytes by @​mndeveci in #​3156 feat: add pause option to commit api by @​VincentLeeMax in #​3159 build(deps): Bump requests from 2.28.1 to 2.31.0 by @​dependabot in #​3136 test: remove APT_MIRROR from Dockerfile by @​thaJeztah in #​3145 Switch linting to ruff, use f-strings, fix lint errors and possible bugs by @​akx in #​3126 integration: Fix bad subnet declaration by @​akerouanton in #​3169 integration: Remove test_create_check_duplicate by @​akerouanton in #​3170 Support all Network.connect parameters in client.containers.run and client.containers.create by @​Skazza94 in #​3121 feat: move websocket-client to extra dependency by @​akx in #​3123 Add health property to Containers model by @​TurnrDev in #​3147 build(deps): Bump urllib3 from 1.26.11 to 1.26.18 by @​dependabot in #​3183 breaking: Python 3.12 compatibility & remove custom SSL adapter by @​milas in #​3185 chore: add changelog for 7.0.0 by @​milas in #​3186 chore: remove support for Python 3.7 by @​milas in #​3187 chore: update MAINTAINERS and remove CODEOWNERS by @​milas in #​3188 chore: fix missing setuptools in CI by @​milas in #​3189 Fix #​3153 - Validate tag before build using OCI regex by @​LombardiDaniel in #​3191 feat: accept filters and keep_storage in prune_builds by @​emranbm in #​3192 chore: update changelog and maintainer by @​milas in #​3193 New Contributors @​Longin-Yu made their first contribution in #​3130 @​mndeveci made their first contribution in #​3156 @​VincentLeeMax made their first contribution in #​3159 @​akerouanton made their first contribution in #​3169 @​TurnrDev made their first contribution in #​3147 @​LombardiDaniel made their first contribution in #​3191 @​emranbm made their first contribution in #​3192 Full Changelog: docker/docker-py@6.1.3...7.0.0 v6.1.3 Compare Source 🐛 Bugfixes Fix eventlet compatibility (#​3132) What's Changed fix: eventlet compatibility by @​tito in #​3132 New Contributors @​tito made their first contribution in #​3132 Full Changelog: docker/docker-py@6.1.2...6.1.3 v6.1.2 Compare Source 🐛 Bugfixes Fix for socket timeouts on long docker exec calls (#​3125) Respect timeout param on Windows (#​3112) Full Changelog Use windows api to honour timeouts (fixes #​3111) by @​ImogenBits in #​3112 Avoid socket timeouts when executing commands by @​loicleyendecker in #​3125 docs: update changelog by @​milas in #​3127 New Contributors @​ImogenBits made their first contribution in #​3112 Full Changelog: docker/docker-py@6.1.1...6.1.2 v6.1.1 Compare Source ℹ️ Upgrade Notes (6.1.x) Errors are no longer returned during client initialization if the credential helper cannot be found. A warning will be emitted instead, and an error is returned if the credential helper is used. 🐛 Bugfixes Fix containers.stats() hanging with stream=True Correct return type in docs for containers.diff() method What's Changed api: update return type of diff method by @​john-b-yang in #​3115 Fix container.stats infinite blocking on stream mode by @​RazCrimson in #​3120 New Contributors @​john-b-yang made their first contribution in #​3115 @​RazCrimson made their first contribution in #​3120 Full Changelog: docker/docker-py@6.1.0...6.1.1 v6.1.0 Compare Source ℹ️ Upgrade Notes Errors are no longer returned during client initialization if the credential helper cannot be found. A warning will be emitted instead, and an error is returned if the credential helper is used. ✨ Features Python 3.11 support Use poll() instead of select() on non-Windows platforms New API fields network_driver_opt on container run / create one-shot on container stats status on services list 🐛 Bugfixes Support for requests 2.29.0+ and urllib3 2.x Do not strip characters from volume names Fix connection leak on container.exec_* operations Fix errors closing named pipes on Windows What's Changed Add support for Python 3.11 by @​hugovk in #​3064 Avoid stripping characters in volume names by @​loicleyendecker in #​3073 docs: fix wrong command syntax in code annotation by @​serieznyi in #​3081 build(deps): Bump setuptools from 63.2.0 to 65.5.1 by @​dependabot in #​3082 fix(store): warn on init instead of throw by @​nomagick in #​3080 exec: fix file handle leak with container.exec_* APIs by @​Lekensteyn in #​2320 Add network_driver_opt to client.containers run and create by @​Skazza94 in #​3083 Add one-shot to container API stats by @​aroxby-wayscript in #​3089 Add status parameter to services list API by @​lorinbucher in #​3093 socket: fix for errors on pipe close in Windows by @​milas in #​3099 put_archive: note the data may also be a stream by @​akx in #​2478 Use poll() instead of select(), unless Windows. by @​I-question-this in #​2865 Make compatible with requests 2.29.0 and urllib3 2.0 by @​felixfontein in #​3116 New Contributors @​loicleyendecker made their first contribution in #​3073 @​serieznyi made their first contribution in #​3081 @​nomagick made their first contribution in #​3080 @​Lekensteyn made their first contribution in #​2320 @​aroxby-wayscript made their first contribution in #​3089 @​lorinbucher made their first contribution in #​3093 @​akx made their first contribution in #​2478 @​I-question-this made their first contribution in #​2865 Full Changelog: docker/docker-py@6.0.1...6.1.0 v6.0.1 Compare Source ⚠️ Notice This version is not compatible with requests 2.29+ or urllib3 2.x. Either add requests < 2.29 and urllib3 < 2 to your requirements or upgrade to to the latest docker-py release. 🐛 Bugfixes Fix for The pipe has been ended errors on Windows (#​3056) Support floats for timestamps in Docker logs (since / until) (#​3031) What's Changed docs: install package in ReadTheDocs build by @​milas in #​3032 Use latest stable syntax for Dockerfiles by @​thaJeztah in #​3035 feat: add support for floats to docker logs params since / until sinc… by @​ArchiMoebius in #​3031 Change prune test to use anonymous volumes by @​cpuguy83 in #​3051 socket: handle npipe close by @​nicks in #​3056 New Contributors @​ArchiMoebius made their first contribution in #​3031 @​nicks made their first contribution in #​3056 Full Changelog: docker/docker-py@6.0.0...6.0.1 v6.0.0 Compare Source ℹ️ Upgrade Notes Minimum supported Python version is 3.7+ When installing with pip, the docker[tls] extra is deprecated and a no-op, use docker for same functionality (TLS support is always available now) Native Python SSH client (used by default / use_ssh_client=False) will now reject unknown host keys with paramiko.ssh_exception.SSHException Short IDs are now 12 characters instead of 10 characters (same as Docker CLI) Version metadata is now exposed as __version__ ✨ Features Python 3.10 support Automatically negotiate most secure TLS version Add platform (e.g. linux/amd64, darwin/arm64) to container create & run Add support for GlobalJob and ReplicatedJobs for Swarm Add remove() method on Image Add force param to disable() on Plugin 🐛 Bugfixes Fix install issues on Windows related to pywin32 Do not accept unknown SSH host keys in native Python SSH mode Use 12 character short IDs for consistency with Docker CLI Ignore trailing whitespace in .dockerignore files Fix IPv6 host parsing when explicit port specified Fix ProxyCommand option for SSH connections Do not spawn extra subshell when launching external SSH client Improve exception semantics to preserve context Documentation improvements (formatting, examples, typos, missing params) 🔧 Miscellaneous Upgrade dependencies in requirements.txt to latest versions Remove extraneous transitive dependencies Eliminate usages of deprecated functions/methods Test suite reliability improvements GitHub Actions workflows for linting, unit tests, integration tests, and publishing releases Changelog Update changelog for 5.0.3 by @​aiordache in #​2897 Add support for Python 3.10 by @​hugovk in #​2898 Bump paramiko from 2.8.0 to 2.10.1 by @​dependabot in #​2974 deps: upgrade pywin32 & relax version constraint by @​milas in #​3004 ci: remove Python 3.6 and add 3.11 pre-releases by @​milas in #​3005 utils: fix IPv6 address w/ port parsing by @​milas in #​3006 test_create_with_device_cgroup_rules: don't check devices.list by @​thaJeztah in #​2940 Fix exception semantics in _raise_for_status by @​kmaork in #​2954 tls: use auto-negotiated highest version by @​milas in #​3007 sshcon: remove use of self.ssh_conf by @​glicht in #​2993 Use packaging instead of distutils for Version by @​FrancescoCasalegno in #​2931 test: fix a couple flaky/broken tests by @​milas in #​3008 ci: add flake8 job by @​milas in #​3009 Fixes and improvements by @​kinday in #​2947 deps: test on Python 3.10 by default by @​milas in #​3010 deps: remove backports.ssl_match_hostname by @​milas in #​3011 Fix: fix CVE-2020-28243 by @​errorcode7 in #​2910 Fix for CWE-295: Improper Certificate Validation by @​avnes in #​2932 Set daemon attribute instead of using setDaemon method that was deprecated in Python 3.10 by @​tirkarthi in #​2823 Remove unnecessary pass statements by @​vilhelmprytz in #​2541 ci: run SSH integration tests by @​milas in #​3012 docs: fix simple typo, containe -> container by @​timgates42 in #​3015 ci: bump version to 6.0.0-dev by @​milas in #​3013 deps: upgrade & remove unnecessary dependencies by @​milas in #​3014 lint: fix line length violation by @​milas in #​3017 docs: fix markdown rendering by @​milas in #​3020 Return 12 character short_ids by @​benfasoli in #​2862 api: preserve cause when re-raising error by @​milas in #​3023 deps: upgrade websocket-client to latest by @​milas in #​3022 Add platform parameter for create_container() by @​felixfontein in #​2927 Support cgroupns option in containers.run/containers.create by @​david0 in #​2930 Prevent pip cache in Docker image to save image size by @​PeterDaveHello in #​2828 Update: allow "force" parameter in plugin.disable() by @​till in #​2843 Fix: Issue #​2832 Allowing Rollback Config Arg for Services by @​ercildoune in #​2917 model: add remove() to Image by @​milas in #​3026 fix(dockerignore): trim trailing whitespace by @​kalioz in #​2733 Fix TLS server check example to actually verify by @​scop in #​2574 Clarify TLSConfig verify parameter docs by @​scop in #​2573 Add healthcheck doc for container.run by @​JanoschDeurer in #​2595 Fix image save example by @​hristog in #​2570 Changed a few words to be more clear by @​InnovativeInventor in #​2489 docs: fix RollbackConfig/Order values by @​milas in #​3027 ci: add workflow for releases by @​milas in #​3018 remove duplicate 'on' in comment by @​thomasgassmann in #​2370 Add gzip documentation to BuildApiMixin by @​SauravMaheshkar in #​2929 Use preexec_func always by @​q0w in #​2920 Remove docker.credentials.utils.find_executable by @​n1ngu in #​3028 Support global-job and replicated-job modes in Docker Swarm by @​kinday in #​3016 docs: add changelog for 6.0.0 by @​milas in #​3019 Add sysctl support for docker swarm services by @​Aadenei in #​3029 Connect with mac address by @​YuviGold in #​2481 docs/css: remove hyphens in literals by @​jrabbit in #​2452 Add swarm support for DataPathPort by @​dexteradeus in #​2987 test: add additional tests for cgroupns option by @​milas in #​3024 New Contributors @​hugovk made their first contribution in #​2898 @​milas made their first contribution in #​3004 @​kmaork made their first contribution in #​2954 @​glicht made their first contribution in #​2993 @​FrancescoCasalegno made their first contribution in #​2931 @​kinday made their first contribution in #​2947 @​errorcode7 made their first contribution in #​2910 @​avnes made their first contribution in #​2932 @​tirkarthi made their first contribution in #​2823 @​vilhelmprytz made their first contribution in #​2541 @​timgates42 made their first contribution in #​3015 @​benfasoli made their first contribution in #​2862 @​felixfontein made their first contribution in #​2927 @​david0 made their first contribution in #​2930 @​PeterDaveHello made their first contribution in #​2828 @​till made their first contribution in #​2843 @​ercildoune made their first contribution in #​2917 @​kalioz made their first contribution in #​2733 @​JanoschDeurer made their first contribution in #​2595 @​hristog made their first contribution in #​2570 @​InnovativeInventor made their first contribution in #​2489 @​thomasgassmann made their first contribution in #​2370 @​SauravMaheshkar made their first contribution in #​2929 @​q0w made their first contribution in #​2920 @​n1ngu made their first contribution in #​3028 @​Aadenei made their first contribution in #​3029 @​jrabbit made their first contribution in #​2452 @​dexteradeus made their first contribution in #​2987 Full Changelog: docker/docker-py@5.0.3...6.0.0 v5.0.3 Compare Source List of PRs / issues for this release Features Add cap_add and cap_drop parameters to service create and ContainerSpec Add templating parameter to config create Bugfixes Fix getting a read timeout for logs/attach with a tty and slow output Miscellaneous Fix documentation examples v5.0.2 Compare Source List of PRs / issues for this release Bugfixes Fix disable_buffering regression v5.0.1 Compare Source List of PRs / issues for this release Bugfixes Bring back support for ssh identity file Cleanup remaining python-2 dependencies Fix image save example in docs Miscellaneous Bump urllib3 to 1.26.5 Bump requests to 2.26.0 v5.0.0 Compare Source List of PRs / issues for this release Breaking changes Remove support for Python 2.7 Make Python 3.6 the minimum version supported Features Add limit parameter to image search endpoint Bugfixes Fix KeyError exception on secret create Verify TLS keys loaded from docker contexts Update PORT_SPEC regex to allow square brackets for IPv6 addresses Fix containers and images documentation examples v4.4.4 Compare Source Warning This is the last release with support for Python 2.7 and 3.5 List of PRs / issues for this release Bugfixes Remove LD_LIBRARY_PATH and SSL_CERT_FILE environment variables when shelling out to the ssh client v4.4.3 Compare Source List of PRs / issues for this release Features Add support for docker.types.Placement.MaxReplicas Bugfixes Fix SSH port parsing when shelling out to the ssh client v4.4.2 Compare Source List of PRs / issues for this release Bugfixes Fix SSH connection bug where the hostname was incorrectly trimmed and the error was hidden Fix docs example Miscellaneous Add Python3.8 and 3.9 in setup.py classifier list v4.4.1 Compare Source List of PRs / issues for this release Bugfixes Avoid setting unsupported parameter for subprocess.Popen on Windows v4.4.0 Compare Source List of PRs / issues for this release Features Add an alternative SSH connection to the paramiko one, based on shelling out to the SSh client. Similar to the behaviour of Docker cli Default image tag to latest on pull Bugfixes Fix plugin model upgrade Fix examples URL in ulimits Miscellaneous Improve exception messages for server and client errors Bump cryptography from 2.3 to 3.2 v4.3.1 Compare Source List of PRs / issues for this release Miscellaneous Set default API version to auto Fix conversion to bytes for float Support OpenSSH identityfile option v4.3.0 Compare Source Changelog Features Add DeviceRequest type to expose host resources such as GPUs Add support for DriverOpts in EndpointConfig Disable compression by default when using container.get_archive method Miscellaneous Update default API version to v1.39 Update test engine version to 19.03.12 v4.2.2 Compare Source 4.2.2 List of PRs / issues for this release Bugfixes Fix context load for non-docker endpoints v4.2.1 Compare Source List of PRs / issues for this release Features Add option on when to use tls on Context constructor Make context orchestrator field optional v4.2.0 Compare Source List of PRs / issues for this release Bugfixes Fix win32pipe.WaitNamedPipe throw exception in Windows containers Use Hostname, Username, Port and ProxyCommand settings from .ssh/config when on SSH Set host key policy for ssh transport to paramiko.WarningPolicy() Set logging level of paramiko to warn Features Add support for docker contexts through docker.ContextAPI v4.1.0 Compare Source List of PRs / issues for this release Bugfixes Correct INDEX_URL logic in build.py _set_auth_headers Fix for empty auth keys in config.json Features Add NetworkAttachmentConfig for service create/update Miscellaneous Bump pytest to 4.3.1 Adjust --platform tests for changes in docker engine Update credentials-helpers to v0.6.3 v4.0.2 Compare Source List of PRs / issues for this release Bugfixes Unified the way HealthCheck is created/configured Miscellaneous Bumped version of websocket-client v4.0.1 Compare Source List of PRs / issues for this release Bugfixes Fixed an obsolete import in the credentials subpackage that caused import errors in Python 3.7 Miscellaneous Docs building has been repaired v4.0.0 Compare Source List of PRs / issues for this release Breaking changes Support for Python 3.3 and Python 3.4 has been dropped APIClient.update_service, APIClient.init_swarm, and DockerClient.swarm.init now return a dict from the API's response body In APIClient.build and DockerClient.images.build, the use_config_proxy parameter now defaults to True init_path is no longer a valid parameter for HostConfig Features It is now possible to provide SCTP ports for port mappings ContainerSpecs now support the init parameter DockerClient.swarm.init and APIClient.init_swarm now support the data_path_addr parameter APIClient.update_swarm and DockerClient.swarm.update now support the rotate_manager_unlock_key parameter APIClient.update_service returns the API's response body as a dict APIClient.init_swarm, and DockerClient.swarm.init now return the API's response body as a dict Bugfixes Fixed PlacementPreference instances to produce a valid API type Fixed a bug where not setting a value for buildargs in build could cause the library to attempt accessing attributes of a None value Fixed a bug where setting the volume_driver parameter in DockerClient.containers.create would result in an error APIClient.inspect_distribution now correctly sets the authentication headers on the request, allowing it to be used with private repositories This change also applies to DockerClient.get_registry_data v3.7.3 Compare Source v3.7.2 Compare Source List of PRs / issues for this release Bugfixes Fix base_url to keep TCP protocol on utils.py by letting the responsability of changing the protocol to parse_host afterwards, letting base_url with the original value. XFAIL test_attach_stream_and_cancel on TLS v3.7.1 Compare Source List of PRs / issues for this release Bugfixes Set a different default number (which is now 9) for SSH pools Adds a BaseHTTPAdapter with a close method to ensure that the pools is clean on close() Makes SSHHTTPAdapter reopen a closed connection when needed like the others Configuration 📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied. ♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 Ignore: Close this PR and you won't be reminded about this update again. If you want to rebase/retry this PR, check this box

Open Graph Description: This PR contains the following updates: Package Change Age Adoption Passing Confidence docker (changelog) >=3.7,<3.8 -> >=7.1.0,<7.2 Release Notes docker/docker-py (d...

X Description: This PR contains the following updates: Package Change Age Adoption Passing Confidence docker (changelog) &gt;=3.7,&lt;3.8 -&gt; &gt;=7.1.0,&lt;7.2 Release Notes ...

Opengraph URL: https://github.com/cvent/cloudformation-cli-python-plugin/pull/5

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/checks(.:format)
route-controllerpull_requests
route-actionchecks
fetch-noncev2:82119b8e-a213-a5d4-c7f0-c7a9bcab38e1
current-catalog-service-hash87dc3bc62d9b466312751bfd5f889726f4f1337bdff4e8be7da7c93d6c00a25a
request-idAF80:8A978:EB8876:146D173:698F4AAF
html-safe-nonce6afd83f3d9b255a243baae38d83e96975c50cce95dac3caa246defaa16cb173c
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBRjgwOjhBOTc4OkVCODg3NjoxNDZEMTczOjY5OEY0QUFGIiwidmlzaXRvcl9pZCI6IjgyNTgzNTc1MzA3NjczNDYzNTEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacc31c9523de438536e816d5b8dd77c8f7631f2b88c7407066b9108469dec351bb
hovercard-subject-tagpull_request:2128742641
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,checks,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/checks
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/cvent/cloudformation-cli-python-plugin/pull/5/checks
twitter:imagehttps://avatars.githubusercontent.com/u/5034428?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/5034428?s=400&v=4
og:image:altThis PR contains the following updates: Package Change Age Adoption Passing Confidence docker (changelog) >=3.7,<3.8 -> >=7.1.0,<7.2 Release Notes docker/docker-py (d...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None6102991c714c1a6a27d05fb4f96ea6ca87a6750b4f093b95cc57ed1b84b145a1
turbo-cache-controlno-preview
go-importgithub.com/cvent/cloudformation-cli-python-plugin git https://github.com/cvent/cloudformation-cli-python-plugin.git
octolytics-dimension-user_id5034428
octolytics-dimension-user_logincvent
octolytics-dimension-repository_id290791013
octolytics-dimension-repository_nwocvent/cloudformation-cli-python-plugin
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forktrue
octolytics-dimension-repository_parent_id162644504
octolytics-dimension-repository_parent_nwoaws-cloudformation/cloudformation-cli-python-plugin
octolytics-dimension-repository_network_root_id162644504
octolytics-dimension-repository_network_root_nwoaws-cloudformation/cloudformation-cli-python-plugin
turbo-body-classeslogged-out env-production page-responsive full-width full-width-p-0
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release6a0e76b4dbdd86599b4b518abe0e57175194496e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/checks#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fcvent%2Fcloudformation-cli-python-plugin%2Fpull%2F5%2Fchecks
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fcvent%2Fcloudformation-cli-python-plugin%2Fpull%2F5%2Fchecks
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fchecks&source=header-repo&source_repo=cvent%2Fcloudformation-cli-python-plugin
Reloadhttps://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/checks
Reloadhttps://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/checks
Reloadhttps://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/checks
cvent https://patch-diff.githubusercontent.com/cvent
cloudformation-cli-python-pluginhttps://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin
aws-cloudformation/cloudformation-cli-python-pluginhttps://patch-diff.githubusercontent.com/aws-cloudformation/cloudformation-cli-python-plugin
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fcvent%2Fcloudformation-cli-python-plugin
Fork 1 https://patch-diff.githubusercontent.com/login?return_to=%2Fcvent%2Fcloudformation-cli-python-plugin
Star 0 https://patch-diff.githubusercontent.com/login?return_to=%2Fcvent%2Fcloudformation-cli-python-plugin
Code https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin
Pull requests 4 https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pulls
Actions https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/actions
Projects 0 https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/projects
Security 0 https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/security
Insights https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pulse
Code https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin
Pull requests https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pulls
Actions https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/actions
Projects https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/projects
Security https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/security
Insights https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2Fcvent%2Fcloudformation-cli-python-plugin%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2Fcvent%2Fcloudformation-cli-python-plugin%2Fissues%2Fnew%2Fchoose
mend-5034428https://patch-diff.githubusercontent.com/apps/mend-5034428
masterhttps://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/tree/master
whitesource-remediate/docker-7.xhttps://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/tree/whitesource-remediate/docker-7.x
Conversation 0 https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5
Commits 1 https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/commits
Checks 0 https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/checks
Files changed https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/files
Please reload this pagehttps://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/checks
Please reload this pagehttps://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/checks
Update dependency docker to v7 https://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/checks#top
Please reload this pagehttps://patch-diff.githubusercontent.com/cvent/cloudformation-cli-python-plugin/pull/5/checks
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.