Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the production-dependencies group across 1 directory with 7 updates #64

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

Bumps the production-dependencies group with 7 updates in the / directory:

Package From To
pydantic-settings 2.2.1 2.3.4
openai 1.22.0 1.35.7
requests 2.31.0 2.32.3
python-docx 1.1.0 1.1.2
aiofiles 23.2.1 24.1.0
instructor 1.2.1 1.3.4
aiocsv 1.3.1 1.3.2

Updates pydantic-settings from 2.2.1 to 2.3.4

Release notes

Sourced from pydantic-settings's releases.

v2.3.4

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.3.3...v2.3.4

v2.3.3

What's Changed

Full Changelog: pydantic/pydantic-settings@v2.3.2...v2.3.3

v2.3.2

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.3.1...v2.3.2

v2.3.1

What's Changed

Full Changelog: pydantic/pydantic-settings@v2.3.0...v2.3.1

v2.3.0

What's Changed

... (truncated)

Commits
  • fe1f950 Prepare release 2.3.4 (#322)
  • 674ebd9 Remove leftover docstring causing warning on pydantic docs build (#321)
  • 7ede0ec Nested pydantic dataclasses and doc fixes. (#317)
  • c2d44a7 add in-place reloading in docs (#316)
  • f1b82d8 Prepare release 2.3.3 (#314)
  • bd294a4 Add CliSettingsSource alias handling for AliasChoices and AliasPath. (#313)
  • abe7cc5 Fix an intriduced bug in parsing json field with discriminated union (#312)
  • b5d4534 Prepare release 2.3.2 (#310)
  • b2e84c2 Fix issue with nested model uppercase field name in case insensitive mode (#309)
  • 0a9faca Fix command line help from argparse formatting problem (#307)
  • Additional commits viewable in compare view

Updates openai from 1.22.0 to 1.35.7

Release notes

Sourced from openai's releases.

v1.35.7

1.35.7 (2024-06-27)

Full Changelog: v1.35.6...v1.35.7

Bug Fixes

  • build: include more files in sdist builds (#1504) (730c1b5)

v1.35.6

1.35.6 (2024-06-27)

Full Changelog: v1.35.5...v1.35.6

Documentation

v1.35.5

1.35.5 (2024-06-26)

Full Changelog: v1.35.4...v1.35.5

Bug Fixes

  • cli/migrate: avoid reliance on Python 3.12 argument (be7a06b)

v1.35.4

1.35.4 (2024-06-26)

Full Changelog: v1.35.3...v1.35.4

Bug Fixes

  • docs: fix link to advanced python httpx docs (#1499) (cf45cd5)
  • temporarily patch upstream version to fix broken release flow (#1500) (4f10470)

Chores

v1.35.3

1.35.3 (2024-06-20)

Full Changelog: v1.35.2...v1.35.3

Bug Fixes

  • tests: add explicit type annotation (9345f10)

... (truncated)

Changelog

Sourced from openai's changelog.

1.35.7 (2024-06-27)

Full Changelog: v1.35.6...v1.35.7

Bug Fixes

  • build: include more files in sdist builds (#1504) (730c1b5)

1.35.6 (2024-06-27)

Full Changelog: v1.35.5...v1.35.6

Documentation

1.35.5 (2024-06-26)

Full Changelog: v1.35.4...v1.35.5

Bug Fixes

  • cli/migrate: avoid reliance on Python 3.12 argument (be7a06b)

1.35.4 (2024-06-26)

Full Changelog: v1.35.3...v1.35.4

Bug Fixes

  • docs: fix link to advanced python httpx docs (#1499) (cf45cd5)
  • temporarily patch upstream version to fix broken release flow (#1500) (4f10470)

Chores

1.35.3 (2024-06-20)

Full Changelog: v1.35.2...v1.35.3

Bug Fixes

  • tests: add explicit type annotation (9345f10)

1.35.2 (2024-06-20)

Full Changelog: v1.35.1...v1.35.2

... (truncated)

Commits

Updates requests from 2.31.0 to 2.32.3

Release notes

Sourced from requests's releases.

v2.32.3

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

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.

... (truncated)

Changelog

Sourced from requests's changelog.

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

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)

... (truncated)

Commits
  • 0e322af v2.32.3
  • e188799 Don't create default SSLContext if ssl module isn't present (#6724)
  • 145b539 Merge pull request #6716 from sigmavirus24/bug/6715
  • b1d73dd Don't use default SSLContext with custom poolmanager kwargs
  • 6badbac Update HISTORY.md
  • a62a2d3 Allow for overriding of specific pool key params
  • 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
  • Additional commits viewable in compare view

Updates python-docx from 1.1.0 to 1.1.2

Changelog

Sourced from python-docx's changelog.

1.1.2 (2024-05-01) ++++++++++++++++++

  • Fix #1383 Revert lxml<=4.9.2 pin that breaks Python 3.12 install
  • Fix #1385 Support use of Part._rels by python-docx-template
  • Add support and testing for Python 3.12

1.1.1 (2024-04-29) ++++++++++++++++++

  • Fix #531, #1146 Index error on table with misaligned borders
  • Fix #1335 Tolerate invalid float value in bottom-margin
  • Fix #1337 Do not require typing-extensions at runtime
Commits
  • 0cf6d71 release: prepare v1.1.2 release
  • 0a8e9c4 fix: Python 3.12 fixes
  • 4cbbdab fix: accommodate docxtpl use of Part._rels
  • 0ec5dcd fix(pkg): pull lxml pin
  • f246fde rfctr: improve typing
  • e493474 fix: XmlPart._rel_ref_count
  • 3f56b7d rfctr(dev): use more performant fd for clean
  • e531576 release: prepare v1.1.1 release
  • 0a09474 rfctr: resolve some import cycles
  • 5a80006 fix(packaging): small packaging and doc tweaks
  • Additional commits viewable in compare view

Updates aiofiles from 23.2.1 to 24.1.0

Release notes

Sourced from aiofiles's releases.

24.1.0

  • Import os.link conditionally to fix importing on android. #175
  • Remove spurious items from aiofiles.os.__all__ when running on Windows.
  • Switch to more modern async idioms: Remove types.coroutine and make AiofilesContextManager an awaitable instead a coroutine.
  • Add aiofiles.os.path.abspath and aiofiles.os.getcwd. #174
  • aiofiles is now tested on Python 3.13 too. #184
  • Dropped Python 3.7 support. If you require it, use version 23.2.1.
Commits

Updates instructor from 1.2.1 to 1.3.4

Release notes

Sourced from instructor's releases.

1.3.4

What's Changed

New Contributors

Full Changelog: instructor-ai/instructor@1.3.3...1.3.4

What's Changed

New Contributors

Full Changelog: instructor-ai/instructor@1.3.3...1.3.4

1.3.3

What's Changed

... (truncated)

Commits
  • 02cca83 Updated Pyproject.toml to publish a new version of Instructor (#785)
  • f6e0a84 zero-shot prompting docs (#780)
  • 79f6904 feat: new cli for batch jobs (#754)
  • 9366d5c bump
  • 3eb26bb feat: prompt engineering cookbooks (#764)
  • 06a49e7 feat: add support for typeddicts (#758)
  • e36e732 fix: disabling pydantic Error (#757)
  • 84499a4 fix: rename batch to bulk/async, to avoid confusion with OpenAI's batch APIs ...
  • 6157660 feat: Add Gemini via OpenAI Client Support Documentation (#736)
  • 2a04f1b fix: Anthropic client. Prevent empty generator when streaming (#728)
  • Additional commits viewable in compare view

Updates aiocsv from 1.3.1 to 1.3.2

Commits
  • 0d8499a 1.3.2 release
  • b91c56a Tests: silence issues with parser instantiation
  • 23968d5 Tests: fix type issues with dialect kwargs
  • 0f937c5 Documentation update
  • 1473f10 Detailed type hints for reader/writer init methods
  • 1e4c41c black & isort tests
  • a51fe12 black & isort all files
  • 1e872e7 Add black, isort and pyright to CI
  • 1e62fe6 Remove unnecessary type: ignore
  • a2ca38c Don't leak records after raising StopIteration
  • See full diff 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

Bumps the production-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.2.1` | `2.3.4` |
| [openai](https://github.com/openai/openai-python) | `1.22.0` | `1.35.7` |
| [requests](https://github.com/psf/requests) | `2.31.0` | `2.32.3` |
| [python-docx](https://github.com/python-openxml/python-docx) | `1.1.0` | `1.1.2` |
| [aiofiles](https://github.com/Tinche/aiofiles) | `23.2.1` | `24.1.0` |
| [instructor](https://github.com/jxnl/instructor) | `1.2.1` | `1.3.4` |
| [aiocsv](https://github.com/MKuranowski/aiocsv) | `1.3.1` | `1.3.2` |



Updates `pydantic-settings` from 2.2.1 to 2.3.4
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.2.1...v2.3.4)

Updates `openai` from 1.22.0 to 1.35.7
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v1.22.0...v1.35.7)

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.31.0...v2.32.3)

Updates `python-docx` from 1.1.0 to 1.1.2
- [Changelog](https://github.com/python-openxml/python-docx/blob/master/HISTORY.rst)
- [Commits](python-openxml/python-docx@v1.1.0...v1.1.2)

Updates `aiofiles` from 23.2.1 to 24.1.0
- [Release notes](https://github.com/Tinche/aiofiles/releases)
- [Commits](Tinche/aiofiles@v23.2.1...v24.1.0)

Updates `instructor` from 1.2.1 to 1.3.4
- [Release notes](https://github.com/jxnl/instructor/releases)
- [Commits](instructor-ai/instructor@1.2.1...1.3.4)

Updates `aiocsv` from 1.3.1 to 1.3.2
- [Commits](MKuranowski/aiocsv@v1.3.1...v1.3.2)

---
updated-dependencies:
- dependency-name: pydantic-settings
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: python-docx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: aiofiles
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: instructor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: aiocsv
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jul 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 29, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jul 29, 2024
@dependabot dependabot bot deleted the dependabot/pip/production-dependencies-62e59a3ade branch July 29, 2024 15:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants