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-nonmajor #128

Merged
merged 2 commits into from
Jan 28, 2025

Conversation

renovate-bot
Copy link
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
black (changelog) ==24.8.0 -> ==24.10.0 age adoption passing confidence
deprecated ==1.2.14 -> ==1.2.18 age adoption passing confidence
google-cloud-bigtable ==2.26.0 -> ==2.28.1 age adoption passing confidence
langchain-core (changelog) ==0.3.0 -> ==0.3.31 age adoption passing confidence
mypy (changelog) ==1.11.2 -> ==1.14.1 age adoption passing confidence
pytest (changelog) ==8.3.3 -> ==8.3.4 age adoption passing confidence
pytest-asyncio (changelog) ==0.24.0 -> ==0.25.2 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)
laurent-laporte-pro/deprecated (deprecated)

v1.2.18

Compare Source

====================

This version does not bring any change in the source code, but fixes the build anomaly on Fedora (Packit).

The package must be published on PyPi using twine <https://pypi.org/project/twine/>_ to correctly deal with the license file.

v1.2.17

Compare Source

====================

Bug fix release

v1.2.16

Compare Source

====================

Bug fix release

Fix

  • Fix #​78: Fix configuration for Packit 1.0.0

  • Fix #​79: Fix the configuration for the intersphinx mapping in the Sphinx documentation.
    See How to link to other documentation projects with Intersphinx <https://docs.readthedocs.io/en/stable/guides/intersphinx.html>_.

Other

  • Drop support for Python older than 3.7 in GitHub Actions.

v1.2.15

Compare Source

====================

Bug fix release

Fix

  • Resolve Python 2.7 support issue introduced in v1.2.14 in sphinx.py.

  • Fix #​69: Add extra_stacklevel argument for interoperating with other wrapper functions (refer to #​68 for a concrete use case).

  • Fix #​73: Update class method deprecation warnings for Python 3.13.

  • Fix #​75: Update GitHub workflows and fix development dependencies for Python 3.12.

Other

  • Fix #​66: discontinue TravisCI and AppVeyor due to end of free support.
googleapis/python-bigtable (google-cloud-bigtable)

v2.28.1

Compare Source

Bug Fixes

v2.28.0

Compare Source

Features

v2.27.0

Compare Source

Features
  • Add support for Cloud Bigtable Node Scaling Factor for CBT Clusters (#​1023) (0809c6a)
  • Surface retry param to Table.read_row api (#​982) (a8286d2)
Bug Fixes
python/mypy (mypy)

v1.14.1

Compare Source

v1.14.0

Compare Source

v1.13.0

Compare Source

v1.12.1

Compare Source

  • Fix crash when showing partially analyzed type in error message (Ivan Levkivskyi, PR 17961)
  • Fix iteration over union (when self type is involved) (Shantanu, PR 17976)
  • Fix type object with type var default in union context (Jukka Lehtosalo, PR 17991)
  • Revert change to os.path stubs affecting use of os.PathLike[Any] (Shantanu, PR 17995)

v1.12.0

Compare Source

pytest-dev/pytest (pytest)

v8.3.4

Compare Source

pytest 8.3.4 (2024-12-01)

Bug fixes

  • #​12592: Fixed KeyError{.interpreted-text role="class"} crash when using --import-mode=importlib in a directory layout where a directory contains a child directory with the same name.

  • #​12818: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the AST, like executing.

  • #​12849: ANSI escape codes for colored output now handled correctly in pytest.fail{.interpreted-text role="func"} with [pytrace=False]{.title-ref}.

  • #​9353: pytest.approx{.interpreted-text role="func"} now uses strict equality when given booleans.

Improved documentation

  • #​10558: Fix ambiguous docstring of pytest.Config.getoption{.interpreted-text role="func"}.

  • #​10829: Improve documentation on the current handling of the --basetemp option and its lack of retention functionality (temporary directory location and retention{.interpreted-text role="ref"}).

  • #​12866: Improved cross-references concerning the recwarn{.interpreted-text role="fixture"} fixture.

  • #​12966: Clarify filterwarnings{.interpreted-text role="ref"} docs on filter precedence/order when using multiple @pytest.mark.filterwarnings <pytest.mark.filterwarnings ref>{.interpreted-text role="ref"} marks.

Contributor-facing changes

  • #​12497: Fixed two failing pdb-related tests on Python 3.13.
pytest-dev/pytest-asyncio (pytest-asyncio)

v0.25.2: pytest-asyncio 0.25.2

Compare Source

  • Call loop.shutdown_asyncgens() before closing the event loop to ensure async generators are closed in the same manner as asyncio.run does #​1034

v0.25.1: pytest-asyncio 0.25.1

Compare Source

  • Fixes an issue that caused a broken event loop when a function-scoped test was executed in between two tests with wider loop scope #​950
  • Improves test collection speed in auto mode #​1020
  • Corrects the warning that is emitted upon redefining the event_loop fixture

v0.25.0: pytest-asyncio 0.25.0

Compare Source

0.25.0 (2024-12-13)
  • Deprecated: Added warning when asyncio test requests async @pytest.fixture in strict mode. This will become an error in a future version of flake8-asyncio. #​979
  • Updates the error message about pytest.mark.asyncio's scope keyword argument to say loop_scope instead. #​1004
  • Verbose log displays correct parameter name: asyncio_default_fixture_loop_scope #​990
  • Propagates contextvars set in async fixtures to other fixtures and tests on Python 3.11 and above. #​1008

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: Never, 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-bot renovate-bot requested review from a team as code owners January 28, 2025 05:38
@dpebot
Copy link
Collaborator

dpebot commented Jan 28, 2025

/gcbrun

@product-auto-label product-auto-label bot added the api: bigtable Issues related to the googleapis/langchain-google-bigtable-python API. label Jan 28, 2025
@dpebot
Copy link
Collaborator

dpebot commented Jan 28, 2025

/gcbrun

Copy link

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@ron-gal ron-gal changed the title fix(deps): update python-nonmajor chore(deps): update python-nonmajor Jan 28, 2025
@ron-gal ron-gal merged commit c837813 into googleapis:main Jan 28, 2025
9 of 10 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: bigtable Issues related to the googleapis/langchain-google-bigtable-python API.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants