gpt-computer-agent
gpt-computer-agent copied to clipboard
Bump the pip group across 1 directory with 4 updates
Bumps the pip group with 4 updates in the / directory: aiohttp, certifi, nltk and urllib3.
Updates aiohttp
from 3.9.5 to 3.10.2
Release notes
Sourced from aiohttp's releases.
3.10.2
Bug fixes
Fixed server checks for circular symbolic links to be compatible with Python 3.13 -- by :user:
steverep
.Related issues and pull requests on GitHub: #8565.
Fixed request body not being read when ignoring an Upgrade request -- by :user:
Dreamsorcerer
.Related issues and pull requests on GitHub: #8597.
Fixed an edge case where shutdown would wait for timeout when the handler was already completed -- by :user:
Dreamsorcerer
.Related issues and pull requests on GitHub: #8611.
Fixed connecting to
npipe://
,tcp://
, andunix://
urls -- by :user:bdraco
.Related issues and pull requests on GitHub: #8632.
Fixed WebSocket ping tasks being prematurely garbage collected -- by :user:
bdraco
.There was a small risk that WebSocket ping tasks would be prematurely garbage collected because the event loop only holds a weak reference to the task. The garbage collection risk has been fixed by holding a strong reference to the task. Additionally, the task is now scheduled eagerly with Python 3.12+ to increase the chance it can be completed immediately and avoid having to hold any references to the task.
Related issues and pull requests on GitHub: #8641.
Fixed incorrectly following symlinks for compressed file variants -- by :user:
steverep
.Related issues and pull requests on GitHub:
... (truncated)
Changelog
Sourced from aiohttp's changelog.
3.10.2 (2024-08-08)
Bug fixes
Fixed server checks for circular symbolic links to be compatible with Python 3.13 -- by :user:
steverep
.Related issues and pull requests on GitHub: :issue:
8565
.Fixed request body not being read when ignoring an Upgrade request -- by :user:
Dreamsorcerer
.Related issues and pull requests on GitHub: :issue:
8597
.Fixed an edge case where shutdown would wait for timeout when the handler was already completed -- by :user:
Dreamsorcerer
.Related issues and pull requests on GitHub: :issue:
8611
.Fixed connecting to
npipe://
,tcp://
, andunix://
urls -- by :user:bdraco
.Related issues and pull requests on GitHub: :issue:
8632
.Fixed WebSocket ping tasks being prematurely garbage collected -- by :user:
bdraco
.There was a small risk that WebSocket ping tasks would be prematurely garbage collected because the event loop only holds a weak reference to the task. The garbage collection risk has been fixed by holding a strong reference to the task. Additionally, the task is now scheduled eagerly with Python 3.12+ to increase the chance it can be completed immediately and avoid having to hold any references to the task.
Related issues and pull requests on GitHub: :issue:
8641
.Fixed incorrectly following symlinks for compressed file variants -- by :user:
steverep
.
... (truncated)
Commits
491106e
Release 3.10.2 (#8655)ce2e975
[PR #8652/b0536ae6 backport][3.10] Do not follow symlinks for compressed file...6a77806
[PR #8636/51d872e backport][3.10] Remove Request.wait_for_disconnection() met...1f92213
[PR #8642/e4942771 backport][3.10] Fix response to circular symlinks with Pyt...2ef14a6
[PR #8641/0a88bab backport][3.10] Fix WebSocket ping tasks being prematurely ...68e8496
[PR #8608/c4acabc backport][3.10] Fix timer handle churn in websocket heartbe...72f41aa
[PR #8632/b2691f2 backport][3.10] Fix connecting to npipe://, tcp://, and uni...bf83dbe
[PR #8634/c7293e19 backport][3.10] Backport #8620 as improvements to various ...4815765
[PR #8597/c99a1e27 backport][3.10] Fix reading of body when ignoring an upgra...266608d
[PR #8611/1fcef940 backport][3.10] Fix handler waiting on shutdown (#8627)- Additional commits viewable in compare view
Updates certifi
from 2024.6.2 to 2024.7.4
Commits
Updates nltk
from 3.8.1 to 3.9
Changelog
Sourced from nltk's changelog.
Version 3.9.1 2024-08-19
- Fixed bug that prevented wordnet from loading
Version 3.9 2024-08-18
- Avoid need for pickled models, resolves security vulnerability CVE-2024-39705
- No longer sort WordNet synsets and relations (sort in calling function when required)
- Add Python 3.12 support
- Many other minor fixes
Thanks to the following contributors to 3.8.2: Tom Aarsen, Cat Lee Ball, Veralara Bernhard, Carlos Brandt, Konstantin Chernyshev, Michael Higgins, Eric Kafe, Vivek Kalyan, David Lukes, Rob Malouf, purificant, Alex Rudnick, Liling Tan, Akihiro Yamazaki.
Version 3.8.1 2023-01-02
- Resolve RCE vulnerability in localhost WordNet Browser (#3100)
- Remove unused tool scripts (#3099)
- Resolve XSS vulnerability in localhost WordNet Browser (#3096)
- Add Python 3.11 support (#3090)
Thanks to the following contributors to 3.8.1: Francis Bond, John Vandenberg, Tom Aarsen
Version 3.8 2022-12-12
- Refactor dispersion plot (#3082)
- Provide type hints for LazyCorpusLoader variables (#3081)
- Throw warning when LanguageModel is initialized with incorrect vocabulary (#3080)
- Fix WordNet's all_synsets() function (#3078)
- Resolve TreebankWordDetokenizer inconsistency with end-of-string contractions (#3070)
- Support both iso639-3 codes and BCP-47 language tags (#3060)
- Avoid DeprecationWarning in Regexp tokenizer (#3055)
- Fix many doctests, add doctests to CI (#3054, #3050, #3048)
- Fix bool field not being read in VerbNet (#3044)
- Greatly improve time efficiency of SyllableTokenizer when tokenizing numbers (#3042)
- Fix encodings of Polish udhr corpus reader (#3038)
- Allow TweetTokenizer to tokenize emoji flag sequences (#3034)
- Prevent LazyModule from increasing the size of nltk.dict (#3033)
- Fix CoreNLPServer non-default port issue (#3031)
- Add "acion" suffix to the Spanish SnowballStemmer (#3030)
- Allow loading WordNet without OMW (#3026)
- Use input() in nltk.chat.chatbot() for Jupyter support (#3022)
- Fix edit_distance_align() in distance.py (#3017)
- Tackle performance and accuracy regression of sentence tokenizer since NLTK 3.6.6 (#3014)
- Add the Iota operator to semantic logic (#3010)
- Resolve critical errors in WordNet app (#3008)
- Resolve critical error in CHILDES Corpus (#2998)
- Make WordNet information_content() accept adjective satellites (#2995)
- Add "strict=True" parameter to CoreNLP (#2993, #3043)
- Resolve issue with WordNet's synset_from_sense_key (#2988)
... (truncated)
Commits
24936a2
Bump version to 3.9c222897
Merge branch 'develop' of https://github.com/nltk/nltk into develop34c3a4a
Merge branch 'develop' of https://github.com/nltk/nltk into develop253dd3a
add blackc43727f
Update version7137405
Merge pull request #3066 from asishm/bugfix-lambda-closure-leak369cb9f
Merge pull request #3245 from ekaf/hotfix-closuredup501c70e
Merge branch 'develop' into hotfix-closuredupbf05dc4
Merge pull request #3306 from ekaf/py3_compat66539c7
Sorted output in unit/test_wordnet.py- 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 viaRetry.remove_headers_on_redirect
.- Allowed passing negative integers as
amt
to read methods ofhttp.client.HTTPResponse
as an alternative toNone
. (#3122)- Fixed return types representing copying actions to use
typing.Self
. (#3363)Full Changelog: https://github.com/urllib3/urllib3/compare/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 viaRetry.remove_headers_on_redirect
.- Allowed passing negative integers as
amt
to read methods ofhttp.client.HTTPResponse
as an alternative toNone
. ([#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
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)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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.