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

chore(deps): update python dependencies (major) #27

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 13, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
black (changelog) ==23.11.0 -> ==24.10.0 age adoption passing confidence
flake8 (changelog) ==6.1.0 -> ==7.1.1 age adoption passing confidence
openai ==0.28.1 -> ==1.52.2 age adoption passing confidence
pre-commit ==3.5.0 -> ==4.0.1 age adoption passing confidence
pytest (changelog) ==7.4.4 -> ==8.3.3 age adoption passing confidence
pytest-cov (changelog) ==4.1.0 -> ==5.0.0 age adoption passing confidence

Release Notes

psf/black (black)

v24.10.0

Compare Source

Highlights
  • Black is now officially tested with Python 3.13 and provides Python 3.13
    mypyc-compiled wheels. (#​4436) (#​4449)
  • Black will issue an error when used with Python 3.12.5, due to an upstream memory
    safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please
    use Python 3.12.6 or Python 3.12.4 instead. (#​4447)
  • Black no longer supports running with Python 3.8 (#​4452)
Stable style
  • Fix crashes involving comments in parenthesised return types or X | Y style unions.
    (#​4453)
  • Fix skipping Jupyter cells with unknown %% magic (#​4462)
Preview style
  • Fix type annotation spacing between * and more complex type variable tuple (i.e. def fn(*args: *tuple[*Ts, T]) -> None: pass) (#​4440)
Caching
  • Fix bug where the cache was shared between runs with and without --unstable (#​4466)
Packaging
  • Upgrade version of mypyc used to 1.12 beta (#​4450) (#​4449)
  • blackd now requires a newer version of aiohttp. (#​4451)
Output
  • Added Python target version information on parse error (#​4378)
  • Add information about Black version to internal error messages (#​4457)

v24.8.0

Compare Source

Stable style
  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#​4363)
Packaging
  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also
    linked. This improves the PyPI listing for Black. (#​4345)
Parser
  • Fix regression where Black failed to parse a multiline f-string containing another
    multiline string (#​4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string
    (#​4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#​4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#​4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings
    (#​4423)
Performance
  • Improve performance when a large directory is listed in .gitignore (#​4415)
Blackd
  • Fix blackd (and all extras installs) for docker container (#​4357)

v24.4.2

Compare Source

This is a bugfix release to fix two regressions in the new f-string parser introduced in
24.4.1.

Parser
  • Fix regression where certain complex f-strings failed to parse (#​4332)
Performance
  • Fix bad performance on certain complex string literals (#​4331)

v24.4.1

Compare Source

Highlights
  • Add support for the new Python 3.12 f-string syntax introduced by PEP 701 (#​3822)
Stable style
  • Fix crash involving indented dummy functions containing newlines (#​4318)
Parser
  • Add support for type parameter defaults, a new syntactic feature added to Python 3.13
    by PEP 696 (#​4327)
Integrations
  • Github Action now works even when git archive is skipped (#​4313)

v24.4.0

Compare Source

Stable style
  • Fix unwanted crashes caused by AST equivalency check (#​4290)
Preview style
  • if guards in case blocks are now wrapped in parentheses when the line is too long.
    (#​4269)
  • Stop moving multiline strings to a new line unless inside brackets (#​4289)
Integrations
  • Add a new option use_pyproject to the GitHub Action psf/black. This will read the
    Black version from pyproject.toml. (#​4294)

v24.3.0

Compare Source

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)

v24.2.0

Compare Source

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
  • Fix issue where Black would ignore input files in the presence of symlinks (#​4222)
  • Black now ignores pyproject.toml that is missing a tool.black section when
    discovering project root and configuration. Since Black continues to use version
    control as an indicator of project root, this is expected to primarily change behavior
    for users in a monorepo setup (desirably). If you wish to preserve previous behavior,
    simply add an empty [tool.black] to the previously discovered pyproject.toml
    (#​4204)
Output
  • Black will swallow any SyntaxWarnings or DeprecationWarnings produced by the ast
    module when performing equivalence checks (#​4189)
Integrations
  • Add a JSONSchema and provide a validate-pyproject entry-point (#​4181)

v24.1.1

Compare Source

Bugfix release to fix a bug that made Black unusable on certain file systems with strict
limits on path length.

Preview style
  • Consistently add trailing comma on typed parameters (#​4164)
Configuration
  • Shorten the length of the name of the cache file to fix crashes on file systems that
    do not support long paths (#​4176)

v24.1.0

Compare Source

Highlights

This release introduces the new 2024 stable style (#​4106), stabilizing the following
changes:

  • Add parentheses around if-else expressions (#​2278)
  • Dummy class and function implementations consisting only of ... are formatted more
    compactly (#​3796)
  • If an assignment statement is too long, we now prefer splitting on the right-hand side
    (#​3368)
  • Hex codes in Unicode escape sequences are now standardized to lowercase (#​2916)
  • Allow empty first lines at the beginning of most blocks (#​3967, #​4061)
  • Add parentheses around long type annotations (#​3899)
  • Enforce newline after module docstrings (#​3932, #​4028)
  • Fix incorrect magic trailing comma handling in return types (#​3916)
  • Remove blank lines before class docstrings (#​3692)
  • Wrap multiple context managers in parentheses if combined in a single with statement
    (#​3489)
  • Fix bug in line length calculations for power operations (#​3942)
  • Add trailing commas to collection literals even if there's a comment after the last
    entry (#​3393)
  • When using --skip-magic-trailing-comma or -C, trailing commas are stripped from
    subscript expressions with more than 1 element (#​3209)
  • Add extra blank lines in stubs in a few cases (#​3564, #​3862)
  • Accept raw strings as docstrings (#​3947)
  • Split long lines in case blocks (#​4024)
  • Stop removing spaces from walrus operators within subscripts (#​3823)
  • Fix incorrect formatting of certain async statements (#​3609)
  • Allow combining # fmt: skip with other comments (#​3959)

There are already a few improvements in the --preview style, which are slated for the
2025 stable style. Try them out and
share your feedback. In the past, the preview
style has included some features that we were not able to stabilize. This year, we're
adding a separate --unstable style for features with known problems. Now, the
--preview style only includes features that we actually expect to make it into next
year's stable style.

Stable style

Several bug fixes were made in features that are moved to the stable style in this
release:

  • Fix comment handling when parenthesising conditional expressions (#​4134)
  • Fix bug where spaces were not added around parenthesized walruses in subscripts,
    unlike other binary operators (#​4109)
  • Remove empty lines before docstrings in async functions (#​4132)
  • Address a missing case in the change to allow empty lines at the beginning of all
    blocks, except immediately before a docstring (#​4130)
  • For stubs, fix logic to enforce empty line after nested classes with bodies (#​4141)
Preview style
  • Add --unstable style, covering preview features that have known problems that would
    block them from going into the stable style. Also add the --enable-unstable-feature
    flag; for example, use
    --enable-unstable-feature hug_parens_with_braces_and_square_brackets to apply this
    preview feature throughout 2024, even if a later Black release downgrades the feature
    to unstable (#​4096)
  • Format module docstrings the same as class and function docstrings (#​4095)
  • Fix crash when using a walrus in a dictionary (#​4155)
  • Fix unnecessary parentheses when wrapping long dicts (#​4135)
  • Stop normalizing spaces before # fmt: skip comments (#​4146)
Configuration
  • Print warning when configuration in pyproject.toml contains an invalid key (#​4165)
  • Fix symlink handling, properly ignoring symlinks that point outside of root (#​4161)
  • Fix cache mtime logic that resulted in false positive cache hits (#​4128)
  • Remove the long-deprecated --experimental-string-processing flag. This feature can
    currently be enabled with --preview --enable-unstable-feature string_processing.
    (#​4096)
Integrations
  • Revert the change to run Black's pre-commit integration only on specific git hooks
    (#​3940) for better compatibility with older versions of pre-commit (#​4137)

v23.12.1

Compare Source

Packaging
  • Fixed a bug that included dependencies from the d extra by default (#​4108)

v23.12.0

Compare Source

Highlights

It's almost 2024, which means it's time for a new edition of Black's stable style!
Together with this release, we'll put out an alpha release 24.1a1 showcasing the draft
2024 stable style, which we'll finalize in the January release. Please try it out and
share your feedback.

This release (23.12.0) will still produce the 2023 style. Most but not all of the
changes in --preview mode will be in the 2024 stable style.

Stable style
  • Fix bug where # fmt: off automatically dedents when used with the --line-ranges
    option, even when it is not within the specified line range. (#​4084)
  • Fix feature detection for parenthesized context managers (#​4104)
Preview style
  • Prefer more equal signs before a break when splitting chained assignments (#​4010)
  • Standalone form feed characters at the module level are no longer removed (#​4021)
  • Additional cases of immediately nested tuples, lists, and dictionaries are now
    indented less (#​4012)
  • Allow empty lines at the beginning of all blocks, except immediately before a
    docstring (#​4060)
  • Fix crash in preview mode when using a short --line-length (#​4086)
  • Keep suites consisting of only an ellipsis on their own lines if they are not
    functions or class definitions (#​4066) (#​4103)
Configuration
  • --line-ranges now skips Black's internal stability check in --safe mode. This
    avoids a crash on rare inputs that have many unformatted same-content lines. (#​4034)
Packaging
Integrations
pycqa/flake8 (flake8)

v7.1.1

Compare Source

v7.1.0

Compare Source

v7.0.0

Compare Source

openai/openai-python (openai)

v1.52.2

Compare Source

Full Changelog: v1.52.1...v1.52.2

Chores

v1.52.1

Compare Source

Full Changelog: v1.52.0...v1.52.1

Bug Fixes
Chores

v1.52.0

Compare Source

Full Changelog: v1.51.2...v1.52.0

Features
  • api: add gpt-4o-audio-preview model for chat completions (#​1796) (fbf1e0c)

v1.51.2

Compare Source

Full Changelog: v1.51.1...v1.51.2

Chores

v1.51.1

Compare Source

Full Changelog: v1.51.0...v1.51.1

Bug Fixes
  • client: avoid OverflowError with very large retry counts (#​1779) (fb1dacf)
Chores
  • internal: add support for parsing bool response content (#​1774) (aa2e25f)
Documentation

v1.51.0

Compare Source

Full Changelog: v1.50.2...v1.51.0

Features
  • api: support storing chat completions, enabling evals and model distillation in the dashboard (2840c6d)
Chores
Documentation

v1.50.2

Compare Source

Full Changelog: v1.50.1...v1.50.2

Bug Fixes
  • audio: correct types for transcriptions / translations (#​1755) (76c1f3f)

v1.50.1

Compare Source

Full Changelog: v1.50.0...v1.50.1

Documentation

v1.50.0

Compare Source

Full Changelog: v1.49.0...v1.50.0

Features
  • structured outputs: add support for accessing raw responses (#​1748) (0189e28)
Chores
  • pydantic v1: exclude specific properties when rich printing (#​1751) (af535ce)

v1.49.0

Compare Source

Full Changelog: v1.48.0...v1.49.0

Features
Chores

v1.48.0

Compare Source

Full Changelog: v1.47.1...v1.48.0

Features
Bug Fixes
Chores
  • internal: use typing_extensions.overload instead of typing (#​1740) (2522bd5)

v1.47.1

Compare Source

Full Changelog: v1.47.0...v1.47.1

Bug Fixes
  • pydantic v1: avoid warnings error (1e8e7d1)

v1.47.0

Compare Source

Full Changelog: v1.46.1...v1.47.0

Features
  • client: send retry count header (21b0c00)
Chores

v1.46.1

Compare Source

Full Changelog: v1.46.0...v1.46.1

Bug Fixes
Chores

v1.46.0

Compare Source

Full Changelog: v1.45.1...v1.46.0

Features
  • client: add ._request_id property to object responses (#​1707) (8b3da05)
Documentation

v1.45.1

Compare Source

Full Changelog: v1.45.0...v1.45.1

Chores
Documentation

v1.45.0

Compare Source

Full Changelog: v1.44.1...v1.45.0

Features
Bug Fixes
  • types: correctly mark stream discriminator as optional (#​1706) (80f02f9)

v1.44.1

Compare Source

Full Changelog: v1.44.0...v1.44.1

Chores
Documentation

v1.44.0

Compare Source

Full Changelog: v1.43.1...v1.44.0

Features

v1.43.1

Compare Source

Full Changelog: v1.43.0...v1.43.1

Chores

v1.43.0

Compare Source

Full Changelog: v1.42.0...v1.43.0

Features

v1.42.0

Compare Source

Full Changelog: v1.41.1...v1.42.0

Features
Chores

v1.41.1

Compare Source

Full Changelog: v1.41.0...v1.41.1

Bug Fixes
Chores
  • client: fix parsing union responses when non-json is returned (#​1665) (822c37d)

v1.41.0

Compare Source

Full Changelog: v1.40.8...v1.41.0

Features
  • client: add uploads.upload_file helper (aae079d)

v1.40.8

Compare Source

Full Changelog: v1.40.7...v1.40.8

Chores

v1.40.7

Compare Source

Full Changelog: v1.40.6...v1.40.7

Bug Fixes
Chores
  • docs: fix typo in example snippet (4e83b57)
  • internal: use different 32bit detection method (#​1652) (5831af6)

v1.40.6

Compare Source

Full Changelog: v1.40.5...v1.40.6

Chores

v1.40.5

Compare Source

Full Changelog: v1.40.4...v1.40.5

Documentation

v1.40.4

Compare Source

Full Changelog: v1.40.3...v1.40.4

Bug Fixes
  • json schema: unravel $refs alongside additional keys (c7a3d29)
  • json schema: unwrap allOfs with one entry (53d964d)

v1.40.3

Compare Source

Full Changelog: v1.40.2...v1.40.3

Chores

v1.40.2

Compare Source

Full Changelog: v1.40.1...v1.40.2

Bug Fixes
  • client: raise helpful error message for response_format misuse (18191da)
  • json schema: support recursive BaseModels in Pydantic v1 (#​1623) (43e10c0)
Chores

v1.40.1

Compare Source

Full Changelog: v1.40.0...v1.40.1

Chores

v1.40.0

Compare Source

Full Changelog: v1.39.0...v1.40.0

Features
  • api: add structured outputs support (e8dba7d)
Chores

v1.39.0

Compare Source

Full Changelog: v1.38.0...v1.39.0

Features
Bug Fixes
  • assistants: add parallel_tool_calls param to runs.stream (113e82a)
Chores

v1.38.0

Compare Source

Full Changelog: v1.37.2...v1.38.0

Features

v1.37.2

Compare Source

Full Changelog: v1.37.1...v1.37.2

Chores
  • internal: add type construction helper (#​1584) (cbb186a)
  • runs/create_and_poll: add parallel_tool_calls request param (04b3e6c)

v1.37.1

Compare Source

Full Changelog: v1.37.0...v1.37.1

Chores

v1.37.0

Compare Source

Full Changelog: v1.36.1...v1.37.0

Features
Bug Fixes
Documentation

v1.36.1

Compare Source

Full Changelog: v1.36.0...v1.36.1

Bug Fixes
  • types: add gpt-4o-mini to more assistants methods (39a8a37)

v1.36.0

Compare Source

Full Changelog: v1.35.15...v1.36.0

Features

[v1.35.15](https://redirect.github.com/open


Configuration

📅 Schedule: Branch creation - "before 5am on monday" in timezone Europe/London, 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 5 times, most recently from 5d95dc9 to 5fd2cc0 Compare November 18, 2023 02:30
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 2 times, most recently from 04e7e68 to 0d05ae7 Compare November 22, 2023 19:28
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 2 times, most recently from 06cf31b to 7a073e3 Compare December 1, 2023 19:05
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 6 times, most recently from 48b3b88 to cb9b9b8 Compare December 13, 2023 01:59
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 3 times, most recently from 461a447 to 6e16892 Compare December 20, 2023 01:14
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch from 6e16892 to 01d25f7 Compare December 22, 2023 14:02
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch from 01d25f7 to 065124a Compare January 5, 2024 01:24
@renovate renovate bot changed the title chore(deps): update dependency openai to v1 chore(deps): update python dependencies (major) Jan 5, 2024
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 5 times, most recently from 8a64f15 to 7bc3fac Compare January 12, 2024 18:17
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 2 times, most recently from ce0f6c1 to ff5fd8d Compare January 21, 2024 11:02
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 2 times, most recently from 873218f to b6f89d1 Compare January 24, 2024 13:13
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 5 times, most recently from 3296ad6 to 766693a Compare August 20, 2024 23:27
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch from 766693a to 76d1fb0 Compare August 29, 2024 19:54
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 5 times, most recently from 79c2172 to db5aa22 Compare September 12, 2024 20:33
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 5 times, most recently from 06e93d6 to e791c98 Compare September 20, 2024 15:47
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 6 times, most recently from d6c4d11 to 05441a9 Compare September 28, 2024 01:13
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 4 times, most recently from 8917872 to 45f05aa Compare October 8, 2024 17:12
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch 2 times, most recently from 174be65 to 1508a6b Compare October 22, 2024 22:36
@renovate renovate bot force-pushed the renovate/major-python-dependencies branch from 1508a6b to 050caf9 Compare October 24, 2024 00:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants