Bumps the pip group with 7 updates in the /examples/gemini/python/docs-agent directory:
Updates tqdm
from 4.66.2 to 4.66.3
Release notes
Sourced from tqdm's releases.
tqdm v4.66.3 stable
Commits
Updates black
from 23.12.1 to 24.3.0
Release notes
Sourced from black's releases.
24.3.0
Highlights
This release is a milestone: it fixes Black's first CVE security vulnerability. If you
run Black on untrusted input, or if you habitually put thousands of leading tab
characters in your docstrings, you are strongly encouraged to upgrade immediately to fix
CVE-2024-21503.
This release also fixes a bug in Black's AST safety check that allowed Black to make
incorrect changes to certain f-strings that are valid in Python 3.12 and higher.
Stable style
- Don't move comments along with delimiters, which could cause crashes (#4248)
- Strengthen AST safety check to catch more unsafe changes to strings. Previous versions
of Black would incorrectly format the contents of certain unusual f-strings containing
nested strings with the same quote type. Now, Black will crash on such strings until
support for the new f-string syntax is implemented. (#4270)
- Fix a bug where line-ranges exceeding the last code line would not work as expected
(#4273)
Performance
- Fix catastrophic performance on docstrings that contain large numbers of leading tab
characters. This fixes
CVE-2024-21503.
(#4278)
Documentation
- Note what happens when
--check
is used with --quiet
(#4236)
24.2.0
Stable style
- Fixed a bug where comments where mistakenly removed along with redundant parentheses
(#4218)
Preview style
- Move the
hug_parens_with_braces_and_square_brackets
feature to the unstable style
due to an outstanding crash and proposed formatting tweaks (#4198)
- Fixed a bug where base expressions caused inconsistent formatting of ** in tenary
expression (#4154)
- Checking for newline before adding one on docstring that is almost at the line limit
(#4185)
- Remove redundant parentheses in
case
statement if
guards (#4214).
Configuration
... (truncated)
Changelog
Sourced from black's changelog.
24.3.0
Highlights
This release is a milestone: it fixes Black's first CVE security vulnerability. If you
run Black on untrusted input, or if you habitually put thousands of leading tab
characters in your docstrings, you are strongly encouraged to upgrade immediately to fix
CVE-2024-21503.
This release also fixes a bug in Black's AST safety check that allowed Black to make
incorrect changes to certain f-strings that are valid in Python 3.12 and higher.
Stable style
- Don't move comments along with delimiters, which could cause crashes (#4248)
- Strengthen AST safety check to catch more unsafe changes to strings. Previous versions
of Black would incorrectly format the contents of certain unusual f-strings containing
nested strings with the same quote type. Now, Black will crash on such strings until
support for the new f-string syntax is implemented. (#4270)
- Fix a bug where line-ranges exceeding the last code line would not work as expected
(#4273)
Performance
- Fix catastrophic performance on docstrings that contain large numbers of leading tab
characters. This fixes
CVE-2024-21503.
(#4278)
Documentation
- Note what happens when
--check
is used with --quiet
(#4236)
24.2.0
Stable style
- Fixed a bug where comments where mistakenly removed along with redundant parentheses
(#4218)
Preview style
- Move the
hug_parens_with_braces_and_square_brackets
feature to the unstable style
due to an outstanding crash and proposed formatting tweaks (#4198)
- Fixed a bug where base expressions caused inconsistent formatting of ** in tenary
expression (#4154)
- Checking for newline before adding one on docstring that is almost at the line limit
(#4185)
- Remove redundant parentheses in
case
statement if
guards (#4214).
... (truncated)
Commits
Updates certifi
from 2024年2月2日 to 2024年7月4日
Commits
Updates requests
from 2.31.0 to 2.32.2
Release notes
Sourced from requests's releases.
v2.32.2
2.32.2 (2024年05月21日)
Deprecations
-
To provide a more stable migration for custom HTTPAdapters impacted
by the CVE changes in 2.32.0, we've renamed _get_connection
to
a new public API, get_connection_with_tls_context
. Existing custom
HTTPAdapters will need to migrate their code to use this new API.
get_connection
is considered deprecated in all versions of Requests>=2.32.0.
A minimal (2-line) example has been provided in the linked PR to ease
migration, but we strongly urge users to evaluate if their custom adapter
is subject to the same issue described in CVE-2024-35195. (#6710)
v2.32.1
2.32.1 (2024年05月20日)
Bugfixes
- Add missing test certs to the sdist distributed on PyPI.
v2.32.0
2.32.0 (2024年05月20日)
🐍 PYCON US 2024 EDITION 🐍
Security
- Fixed an issue where setting
verify=False
on the first request from a
Session will cause subsequent requests to the same origin to also ignore
cert verification, regardless of the value of verify
.
(GHSA-9wx4-h78v-vm56)
Improvements
verify=True
now reuses a global SSLContext which should improve
request time variance between first and subsequent requests. It should
also minimize certificate load time on Windows systems when using a Python
version built with OpenSSL 3.x. (#6667)
- Requests now supports optional use of character detection
(
chardet
or charset_normalizer
) when repackaged or vendored.
This enables pip
and other projects to minimize their vendoring
surface area. The Response.text()
and apparent_encoding
APIs
will default to utf-8
if neither library is present. (#6702)
Bugfixes
- Fixed bug in length detection where emoji length was incorrectly
calculated in the request content-length. (#6589)
- Fixed deserialization bug in JSONDecodeError. (#6629)
- Fixed bug where an extra leading
/
(path separator) could lead
urllib3 to unnecessarily reparse the request URI. (#6644)
... (truncated)
Changelog
Sourced from requests's changelog.
2.32.2 (2024年05月21日)
Deprecations
-
To provide a more stable migration for custom HTTPAdapters impacted
by the CVE changes in 2.32.0, we've renamed _get_connection
to
a new public API, get_connection_with_tls_context
. Existing custom
HTTPAdapters will need to migrate their code to use this new API.
get_connection
is considered deprecated in all versions of Requests>=2.32.0.
A minimal (2-line) example has been provided in the linked PR to ease
migration, but we strongly urge users to evaluate if their custom adapter
is subject to the same issue described in CVE-2024-35195. (#6710)
2.32.1 (2024年05月20日)
Bugfixes
- Add missing test certs to the sdist distributed on PyPI.
2.32.0 (2024年05月20日)
Security
- Fixed an issue where setting
verify=False
on the first request from a
Session will cause subsequent requests to the same origin to also ignore
cert verification, regardless of the value of verify
.
(GHSA-9wx4-h78v-vm56)
Improvements
verify=True
now reuses a global SSLContext which should improve
request time variance between first and subsequent requests. It should
also minimize certificate load time on Windows systems when using a Python
version built with OpenSSL 3.x. (#6667)
- Requests now supports optional use of character detection
(
chardet
or charset_normalizer
) when repackaged or vendored.
This enables pip
and other projects to minimize their vendoring
surface area. The Response.text()
and apparent_encoding
APIs
will default to utf-8
if neither library is present. (#6702)
Bugfixes
- Fixed bug in length detection where emoji length was incorrectly
calculated in the request content-length. (#6589)
- Fixed deserialization bug in JSONDecodeError. (#6629)
- Fixed bug where an extra leading
/
(path separator) could lead
urllib3 to unnecessarily reparse the request URI. (#6644)
Deprecations
... (truncated)
Commits
88dce9d
v2.32.2
c98e4d1
Merge pull request #6710 from nateprewitt/api_rename
92075b3
Add deprecation warning
aa1461b
Move _get_connection to get_connection_with_tls_context
970e8ce
v2.32.1
d6ebc4a
v2.32.0
9a40d12
Avoid reloading root certificates to improve concurrent performance (#6667)
0c030f7
Merge pull request #6702 from nateprewitt/no_char_detection
555b870
Allow character detection dependencies to be optional in post-packaging steps
d6dded3
Merge pull request #6700 from franekmagiera/update-redirect-to-invalid-uri-test
- Additional commits viewable in compare view
Updates setuptools
from 69.2.0 to 70.0.0
Changelog
Sourced from setuptools's changelog.
v70.0.0
Features
- Emit a warning when
[tools.setuptools]
is present in pyproject.toml
and will be ignored. -- by :user:SnoopJ
(#4150)
- Improved
AttributeError
error message if pkg_resources.EntryPoint.require
is called without extras or distribution
Gracefully "do nothing" when trying to activate a pkg_resources.Distribution
with a None
location, rather than raising a TypeError
-- by :user:Avasam
(#4262)
- Typed the dynamically defined variables from
pkg_resources
-- by :user:Avasam
(#4267)
- Modernized and refactored VCS handling in package_index. (#4332)
Bugfixes
- In install command, use super to call the superclass methods. Avoids race conditions when monkeypatching from _distutils_system_mod occurs late. (#4136)
- Fix finder template for lenient editable installs of implicit nested namespaces
constructed by using
package_dir
to reorganise directory structure. (#4278)
- Fix an error with
UnicodeDecodeError
handling in pkg_resources
when trying to read files in UTF-8 with a fallback -- by :user:Avasam
(#4348)
Improved Documentation
- Uses RST substitution to put badges in 1 line. (#4312)
Deprecations and Removals
-
Further adoption of UTF-8 in setuptools
.
This change regards mostly files produced and consumed during the build process
(e.g. metadata files, script wrappers, automatically updated config files, etc..)
Although precautions were taken to minimize disruptions, some edge cases might
be subject to backwards incompatibility.
Support for "locale"
encoding is now deprecated. (#4309)
-
Remove setuptools.convert_path
after long deprecation period.
This function was never defined by setuptools
itself, but rather a
side-effect of an import for internal usage. (#4322)
-
Remove fallback for customisations of distutils
' build.sub_command
after long
deprecated period.
Users are advised to import build
directly from setuptools.command.build
. (#4322)
-
Removed typing_extensions
from vendored dependencies -- by :user:Avasam
(#4324)
-
Remove deprecated setuptools.dep_util
.
The provided alternative is setuptools.modified
. (#4360)
... (truncated)
Commits
5cbf12a
Workaround for release error in v70
9c1bcc3
Bump version: 69.5.1 → 70.0.0
4dc0c31
Remove deprecated setuptools.dep_util
(#4360)
6c1ef57
Remove xfail now that test passes. Ref #4371.
d14fa01
Add all site-packages dirs when creating simulated environment for test_edita...
6b7f7a1
Prevent bin
folders to be taken as extern packages when vendoring (#4370)
69141f6
Add doctest for vendorised bin folder
2a53cc1
Prevent 'bin' folders to be taken as extern packages
7208628
Replace call to deprecated validate_pyproject
command (#4363)
96d681a
Remove call to deprecated validate_pyproject command
- Additional commits viewable in compare view
Updates urllib3
from 2.2.1 to 2.2.2
Release notes
Sourced from urllib3's releases.
2.2.2
🚀 urllib3 is fundraising for HTTP/2 support
urllib3 is raising ~40,000ドル USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support for 2023. If your company or organization uses Python and would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and thousands of other projects please consider contributing financially to ensure HTTP/2 support is developed sustainably and maintained for the long-haul.
Thank you for your support.
Changes
- Added the
Proxy-Authorization
header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect
.
- Allowed passing negative integers as
amt
to read methods of http.client.HTTPResponse
as an alternative to None
. (#3122)
- Fixed return types representing copying actions to use
typing.Self
. (#3363)
Full Changelog: urllib3/urllib3@2.2.1...2.2.2
Changelog
Sourced from urllib3's changelog.
2.2.2 (2024年06月17日)
- Added the
Proxy-Authorization
header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect
.
- Allowed passing negative integers as
amt
to read methods of http.client.HTTPResponse
as an alternative to None
. ([#3122](https://github.com/urllib3/urllib3/issues/3122) <https://github.com/urllib3/urllib3/issues/3122>
__)
- Fixed return types representing copying actions to use
typing.Self
. ([#3363](https://github.com/urllib3/urllib3/issues/3363) <https://github.com/urllib3/urllib3/issues/3363>
__)
Commits
Updates zipp
from 3.18.1 to 3.19.1
Changelog
Sourced from zipp's changelog.
v3.19.1
Bugfixes
- Improved handling of malformed zip files. (#119)
v3.19.0
Features
- Implement is_symlink. (#117)
v3.18.2
No significant changes.
Commits
You can trigger a rebase of this PR by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it
@dependabot merge
will merge this PR after your CI passes on it
@dependabot squash and merge
will squash and merge this PR after your CI passes on it
@dependabot cancel merge
will cancel a previously requested merge and block automerging
@dependabot reopen
will reopen this PR if it is closed
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency
@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency
@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions
You can disable automated security fix PRs for this repo from the Security Alerts page.
Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
Uh oh!
There was an error while loading. Please reload this page.
Bumps the pip group with 7 updates in the /examples/gemini/python/docs-agent directory:
4.66.2
4.66.3
23.12.1
24.3.0
2024年2月2日
2024年7月4日
2.31.0
2.32.2
69.2.0
70.0.0
2.2.1
2.2.2
3.18.1
3.19.1
Updates
tqdm
from 4.66.2 to 4.66.3Release notes
Sourced from tqdm's releases.
Commits
4e613f8
Merge pull request from GHSA-g7vv-2v7x-gj9pb53348c
cli: eval safetyUpdates
black
from 23.12.1 to 24.3.0Release notes
Sourced from black's releases.
... (truncated)
Changelog
Sourced from black's changelog.
... (truncated)
Commits
552baf8
Prepare release 24.3.0 (#4279)f000936
Fix catastrophic performance in lines_with_leading_tabs_expanded() (#4278)7b5a657
Fix --line-ranges behavior when ranges are at EOF (#4273)1abcffc
Use regex where we ignore case on windows (#4252)719e674
Fix 4227: Improve documentation for --quiet --check (#4236)e5510af
update plugin url for Thonny (#4259)6af7d11
Fix AST safety check false negative (#4270)f03ee11
Ensureblib2to3.pygram
is initialized before use (#4224)e4bfedb
fix: Don't move comments while splitting delimiters (#4248)d0287e1
Make trailing comma logic more concise (#4202)Updates
certifi
from 2024年2月2日 to 2024年7月4日Commits
bd81538
2024年07月04日 (#295)06a2cbf
Bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (#294)13bba02
Bump actions/checkout from 4.1.6 to 4.1.7 (#293)e8abcd0
Bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 (#292)124f4ad
2024年06月02日 (#291)c2196ce
--- (#290)fefdeec
Bump actions/checkout from 4.1.4 to 4.1.5 (#289)3c5fb15
Bump actions/download-artifact from 4.1.6 to 4.1.7 (#286)4a9569a
Bump actions/checkout from 4.1.2 to 4.1.4 (#287)1fc8086
Bump peter-evans/create-pull-request from 6.0.4 to 6.0.5 (#288)Updates
requests
from 2.31.0 to 2.32.2Release notes
Sourced from requests's releases.
... (truncated)
Changelog
Sourced from requests's changelog.
... (truncated)
Commits
88dce9d
v2.32.2c98e4d1
Merge pull request #6710 from nateprewitt/api_rename92075b3
Add deprecation warningaa1461b
Move _get_connection to get_connection_with_tls_context970e8ce
v2.32.1d6ebc4a
v2.32.09a40d12
Avoid reloading root certificates to improve concurrent performance (#6667)0c030f7
Merge pull request #6702 from nateprewitt/no_char_detection555b870
Allow character detection dependencies to be optional in post-packaging stepsd6dded3
Merge pull request #6700 from franekmagiera/update-redirect-to-invalid-uri-testUpdates
setuptools
from 69.2.0 to 70.0.0Changelog
Sourced from setuptools's changelog.
... (truncated)
Commits
5cbf12a
Workaround for release error in v709c1bcc3
Bump version: 69.5.1 → 70.0.04dc0c31
Remove deprecatedsetuptools.dep_util
(#4360)6c1ef57
Remove xfail now that test passes. Ref #4371.d14fa01
Add all site-packages dirs when creating simulated environment for test_edita...6b7f7a1
Preventbin
folders to be taken as extern packages when vendoring (#4370)69141f6
Add doctest for vendorised bin folder2a53cc1
Prevent 'bin' folders to be taken as extern packages7208628
Replace call to deprecatedvalidate_pyproject
command (#4363)96d681a
Remove call to deprecated validate_pyproject commandUpdates
urllib3
from 2.2.1 to 2.2.2Release notes
Sourced from urllib3's releases.
Changelog
Sourced from urllib3's changelog.
Commits
27e2a5c
Release 2.2.2 (#3406)accff72
Merge pull request from GHSA-34jh-p97f-mpxf34be4a5
Pin CFFI to a new release candidate instead of a Git commit (#3398)da41058
Bump browser-actions/setup-chrome from 1.6.0 to 1.7.1 (#3399)b07a669
Bump github/codeql-action from 2.13.4 to 3.25.6 (#3396)b8589ec
Measure coverage with v4 of artifact actions (#3394)f3bdc55
Allow triggering CI manually (#3391)5239265
Fix HTTP version in debug log (#3316)b34619f
Bump actions/checkout to 4.1.4 (#3387)9961d14
Bump browser-actions/setup-chrome from 1.5.0 to 1.6.0 (#3386)Updates
zipp
from 3.18.1 to 3.19.1Changelog
Sourced from zipp's changelog.
Commits
6d1cb72
Finalizefd604bd
Merge pull request #120 from jaraco/bugfix/119-malformed-pathsc18417e
Add news fragment.58115d2
Employ SanitizedNames in CompleteDirs. Fixes broken test.564fcc1
Add SanitizedNames mixin.79a309f
Add some assertions about malformed paths.2d015c2
Merge https://github.com/jaraco/skeletona595a0f
Rename extras to align with core metadata spec.608f90a
Finalize3a22d72
Merge pull request #118 from jaraco/feature/is-symlinkYou can trigger a rebase of this PR by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.