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 python-packages group across 1 directory with 10 updates #69

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 24, 2024

Bumps the python-packages group with 10 updates in the / directory:

Package From To
jinja2 3.1.4 3.1.5
duckdb 1.1.2 1.1.3
rich 13.9.2 13.9.4
sqlglot 25.26.0 26.0.1
typer 0.12.5 0.15.1
db-dtypes 1.3.0 1.3.1
google-cloud-bigquery 3.26.0 3.27.0
pandas-gbq 0.24.0 0.26.0
pytest 8.3.3 8.3.4
ruff 0.7.0 0.8.4

Updates jinja2 from 3.1.4 to 3.1.5

Release notes

Sourced from jinja2's releases.

3.1.5

This is the Jinja 3.1.5 security fix release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/Jinja2/3.1.5/ Changes: https://jinja.palletsprojects.com/changes/#version-3-1-5 Milestone: https://github.com/pallets/jinja/milestone/16?closed=1

  • The sandboxed environment handles indirect calls to str.format, such as by passing a stored reference to a filter that calls its argument. GHSA-q2x7-8rv6-6q7h
  • Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. #1792, GHSA-gmj6-6f8f-6699
  • Sandbox does not allow clear and pop on known mutable sequence types. #2032
  • Calling sync render for an async template uses asyncio.run. #1952
  • Avoid unclosed auto_aiter warnings. #1960
  • Return an aclose-able AsyncGenerator from Template.generate_async. #1960
  • Avoid leaving root_render_func() unclosed in Template.generate_async. #1960
  • Avoid leaving async generators unclosed in blocks, includes and extends. #1960
  • The runtime uses the correct concat function for the current environment when calling block references. #1701
  • Make |unique async-aware, allowing it to be used after another async-aware filter. #1781
  • |int filter handles OverflowError from scientific notation. #1921
  • Make compiling deterministic for tuple unpacking in a {% set ... %} call. #2021
  • Fix dunder protocol (copy/pickle/etc) interaction with Undefined objects. #2025
  • Fix copy/pickle support for the internal missing object. #2027
  • Environment.overlay(enable_async) is applied correctly. #2061
  • The error message from FileSystemLoader includes the paths that were searched. #1661
  • PackageLoader shows a clearer error message when the package does not contain the templates directory. #1705
  • Improve annotations for methods returning copies. #1880
  • urlize does not add mailto: to values like @a@b. #1870
  • Tests decorated with @pass_context can be used with the |select filter. #1624
  • Using set for multiple assignment (a, b = 1, 2) does not fail when the target is a namespace attribute. #1413
  • Using set in all branches of {% if %}{% elif %}{% else %} blocks does not cause the variable to be considered initially undefined. #1253
Changelog

Sourced from jinja2's changelog.

Version 3.1.5

Released 2024-12-21

  • The sandboxed environment handles indirect calls to str.format, such as by passing a stored reference to a filter that calls its argument. :ghsa:q2x7-8rv6-6q7h
  • Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. :issue:1792, :ghsa:gmj6-6f8f-6699
  • Sandbox does not allow clear and pop on known mutable sequence types. :issue:2032
  • Calling sync render for an async template uses asyncio.run. :pr:1952
  • Avoid unclosed auto_aiter warnings. :pr:1960
  • Return an aclose-able AsyncGenerator from Template.generate_async. :pr:1960
  • Avoid leaving root_render_func() unclosed in Template.generate_async. :pr:1960
  • Avoid leaving async generators unclosed in blocks, includes and extends. :pr:1960
  • The runtime uses the correct concat function for the current environment when calling block references. :issue:1701
  • Make |unique async-aware, allowing it to be used after another async-aware filter. :issue:1781
  • |int filter handles OverflowError from scientific notation. :issue:1921
  • Make compiling deterministic for tuple unpacking in a {% set ... %} call. :issue:2021
  • Fix dunder protocol (copy/pickle/etc) interaction with Undefined objects. :issue:2025
  • Fix copy/pickle support for the internal missing object. :issue:2027
  • Environment.overlay(enable_async) is applied correctly. :pr:2061
  • The error message from FileSystemLoader includes the paths that were searched. :issue:1661
  • PackageLoader shows a clearer error message when the package does not contain the templates directory. :issue:1705
  • Improve annotations for methods returning copies. :pr:1880
  • urlize does not add mailto: to values like @a@b. :pr:1870
  • Tests decorated with @pass_context`` can be used with the ``|select`` filter. :issue:1624`
  • Using set for multiple assignment (a, b = 1, 2) does not fail when the target is a namespace attribute. :issue:1413
  • Using set in all branches of {% if %}{% elif %}{% else %} blocks does not cause the variable to be considered initially undefined. :issue:1253
Commits
  • 877f6e5 release version 3.1.5
  • 8d58859 remove test pypi
  • eda8fe8 update dev dependencies
  • c8fdce1 Fix bug involving calling set on a template parameter within all branches of ...
  • 66587ce Fix bug where set would sometimes fail within if
  • fbc3a69 Add support for namespaces in tuple parsing (#1664)
  • b8f4831 more comments about nsref assignment
  • ee83219 Add support for namespaces in tuple assignment
  • 1d55cdd Triple quotes in docs (#2064)
  • 8a8eafc edit block assignment section
  • Additional commits viewable in compare view

Updates duckdb from 1.1.2 to 1.1.3

Release notes

Sourced from duckdb's releases.

v1.1.3 Bugfix Release

This is a bug fix release for various issues discovered after we released 1.1.2. There are no new major features, just bug fixes. Database files created by DuckDB versions all the way back to v0.9.* can be read by this version.

What's Changed

... (truncated)

Commits

Updates rich from 13.9.2 to 13.9.4

Release notes

Sourced from rich's releases.

The Faster is Faster release

[13.9.4] - 2024-11-01

Changed

The irregular expression release

Fix a broken regex that resulted in the slow path being chosen for some operations. This fix should result in notable speedups for some operations, such as wrapping text.

[13.9.3] - 2024-10-22

Fixed

Changelog

Sourced from rich's changelog.

[13.9.4] - 2024-11-01

Changed

[13.9.3] - 2024-10-22

Fixed

Commits

Updates sqlglot from 25.26.0 to 26.0.1

Changelog

Sourced from sqlglot's changelog.

[v26.0.1] - 2024-12-18

✨ New Features

🐛 Bug Fixes

♻️ Refactors

[v26.0.0] - 2024-12-10

💥 BREAKING CHANGES

  • due to 1d3c9aa - Transpile support for bitor/bit_or snowflake function (PR #4486 by @​ankur334):

    Transpile support for bitor/bit_or snowflake function (#4486)

  • due to ab10851 - Preserve roundtrips of DATETIME/DATETIME2 (PR #4491 by @​VaggelisD):

    Preserve roundtrips of DATETIME/DATETIME2 (#4491)

✨ New Features

... (truncated)

Commits
  • 52c8374 Feat: include comments in gen (#4535)
  • cd6e00f Refactor: clean up pivot lineage (#4534)
  • 84ec478 feat(lineage): Extend lineage function to work with pivot operation (#4471)
  • 392f99b Clean up starrocks properties
  • ee7dc96 feat(starrocks): add partition by range and unique key (#4509)
  • cc44ed7 feat(mysql): Support SERIAL data type (#4533)
  • e495777 Feat(clickhouse): add support for bracket map syntax (#4528)
  • bc68289 Fix(planner): ensure aggregate variable is bound (#4526)
  • 946cd42 Fix(optimizer): qualify snowflake queries with level pseudocolumn (#4524)
  • 992f6e9 fix(tsql): Convert exp.Neg literal to number through to_py() (#4523)
  • Additional commits viewable in compare view

Updates typer from 0.12.5 to 0.15.1

Release notes

Sourced from typer's releases.

0.15.1

Features

  • 🗑️ Deprecate shell_complete and continue to use autocompletion for CLI parameters. PR #974 by @​svlandeg.

Docs

Internal

0.15.0

Features

Internal

0.14.0

Breaking Changes

  • 🔥 Remove auto naming of groups added via add_typer based on the group's callback function name. PR #1052 by @​patrick91.

Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:

import typer
app = typer.Typer()
users_app = typer.Typer()
app.add_typer(users_app)
@​users_app.callback()
def users():  # <-- This was the inferred command group name
"""
Manage users in the app.
</tr></table>

... (truncated)

Changelog

Sourced from typer's changelog.

0.15.1

Features

  • 🗑️ Deprecate shell_complete and continue to use autocompletion for CLI parameters. PR #974 by @​svlandeg.

Docs

Internal

0.15.0

Features

Internal

0.14.0

Breaking Changes

  • 🔥 Remove auto naming of groups added via add_typer based on the group's callback function name. PR #1052 by @​patrick91.

Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:

import typer
app = typer.Typer()
users_app = typer.Typer()
app.add_typer(users_app)
@​users_app.callback()
</tr></table>

... (truncated)

Commits
  • 0b89650 🔖 Release version 0.15.1
  • bd89bf6 📝 Update release notes
  • 3b9ce47 ✏️ Fix a few typos in the source and documentation (#1028)
  • 95ba85f 📝 Update release notes
  • dbc335b 📝 Fix minor inconsistencies and typos in tutorial (#1067)
  • b88c327 📝 Update release notes
  • d8e56e2 🗑️ Deprecate shell_complete and continue to use autocompletion for CLI pa...
  • 5f378ee 📝 Update release notes
  • b826dc4 ✏️ Fix a few small typos in the documentation (#1077)
  • 9be60da 📝 Update release notes
  • Additional commits viewable in compare view

Updates db-dtypes from 1.3.0 to 1.3.1

Release notes

Sourced from db-dtypes's releases.

v1.3.1

1.3.1 (2024-11-12)

Bug Fixes

  • Dbjson serialization with most compact JSON representation (#299) (c5e9a10)
  • Support correct numpy construction for dbjson dtype in pandas 1.5 (#297) (f413f35)
  • Support dbjson type on pandas version 1.5 (#295) (4b84e4a)
Changelog

Sourced from db-dtypes's changelog.

1.3.1 (2024-11-12)

Bug Fixes

  • Dbjson serialization with most compact JSON representation (#299) (c5e9a10)
  • Support correct numpy construction for dbjson dtype in pandas 1.5 (#297) (f413f35)
  • Support dbjson type on pandas version 1.5 (#295) (4b84e4a)
Commits
  • 55cbc66 chore(main): release 1.3.1 (#296)
  • f413f35 fix: support correct numpy construction for dbjson dtype in pandas 1.5 (#297)
  • 2bc6a1c chore(python): update dependencies in .kokoro/docker/docs (#301)
  • 83e9382 chore(python): remove obsolete release scripts and config files (#300)
  • 3b5d21e build: use multiScm for Kokoro release builds (#294)
  • c5e9a10 fix: dbjson serialization with most compact JSON representation (#299)
  • 4b84e4a fix: support dbjson type on pandas version 1.5 (#295)
  • 36109b1 chore: Adds python eol deprecation warning (#292)
  • fc54e70 chore(deps): update all dependencies (#290)
  • 81219d0 build(python): release script update (#289)
  • See full diff in compare view

Updates google-cloud-bigquery from 3.26.0 to 3.27.0

Release notes

Sourced from google-cloud-bigquery's releases.

v3.27.0

3.27.0 (2024-11-01)

Features

  • Updates to allow users to set max_stream_count (#2039) (7372ad6)
Changelog

Sourced from google-cloud-bigquery's changelog.

3.27.0 (2024-11-01)

Features

  • Updates to allow users to set max_stream_count (#2039) (7372ad6)
Commits

Updates pandas-gbq from 0.24.0 to 0.26.0

Release notes

Sourced from pandas-gbq's releases.

v0.26.0

0.26.0 (2024-12-19)

Features

  • to_gbq fails with TypeError if passing in a bigframes DataFrame object (#833) (5004d08)

Bug Fixes

  • to_gbq uses default_type for ambiguous array types and struct field types (#838) (cf1aadd)

v0.25.0

0.25.0 (2024-12-11)

⚠ BREAKING CHANGES

  • to_gbq uploads ArrowDtype(pa.timestamp(...) without timezone as DATETIME type (#832)

Bug Fixes

  • To_gbq uploads ArrowDtype(pa.timestamp(...) without timezone as DATETIME type (#832) (2104b71)
Changelog

Sourced from pandas-gbq's changelog.

0.26.0 (2024-12-19)

Features

  • to_gbq fails with TypeError if passing in a bigframes DataFrame object (#833) (5004d08)

Bug Fixes

  • to_gbq uses default_type for ambiguous array types and struct field types (#838) (cf1aadd)

0.25.0 (2024-12-11)

⚠ BREAKING CHANGES

  • to_gbq uploads ArrowDtype(pa.timestamp(...) without timezone as DATETIME type (#832)

Bug Fixes

  • To_gbq uploads ArrowDtype(pa.timestamp(...) without timezone as DATETIME type (#832) (2104b71)
Commits
  • b32a9c9 chore(main): release 0.26.0 (#837)
  • cf1aadd fix: to_gbq uses default_type for ambiguous array types and struct field ...
  • 5484a8c chore(python): update dependencies in .kokoro/docker/docs (#841)
  • 5004d08 feat: to_gbq fails with TypeError if passing in a bigframes DataFrame obj...
  • cc90edd chore(main): release 0.25.0 (#834)
  • 2104b71 fix!: to_gbq uploads ArrowDtype(pa.timestamp(...) without timezone as `DA...
  • 78aa01e chore(deps): update all dependencies (#830)
  • 08bc0b0 chore(deps): update all dependencies (#829)
  • 52590c4 chore(deps): update all dependencies (

Bumps the python-packages group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [jinja2](https://github.com/pallets/jinja) | `3.1.4` | `3.1.5` |
| [duckdb](https://github.com/duckdb/duckdb) | `1.1.2` | `1.1.3` |
| [rich](https://github.com/Textualize/rich) | `13.9.2` | `13.9.4` |
| [sqlglot](https://github.com/tobymao/sqlglot) | `25.26.0` | `26.0.1` |
| [typer](https://github.com/fastapi/typer) | `0.12.5` | `0.15.1` |
| [db-dtypes](https://github.com/googleapis/python-db-dtypes-pandas) | `1.3.0` | `1.3.1` |
| [google-cloud-bigquery](https://github.com/googleapis/python-bigquery) | `3.26.0` | `3.27.0` |
| [pandas-gbq](https://github.com/googleapis/python-bigquery-pandas) | `0.24.0` | `0.26.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.3` | `8.3.4` |
| [ruff](https://github.com/astral-sh/ruff) | `0.7.0` | `0.8.4` |



Updates `jinja2` from 3.1.4 to 3.1.5
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)
- [Commits](pallets/jinja@3.1.4...3.1.5)

Updates `duckdb` from 1.1.2 to 1.1.3
- [Release notes](https://github.com/duckdb/duckdb/releases)
- [Changelog](https://github.com/duckdb/duckdb/blob/main/tools/release-pip.py)
- [Commits](duckdb/duckdb@v1.1.2...v1.1.3)

Updates `rich` from 13.9.2 to 13.9.4
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.9.2...v13.9.4)

Updates `sqlglot` from 25.26.0 to 26.0.1
- [Changelog](https://github.com/tobymao/sqlglot/blob/main/CHANGELOG.md)
- [Commits](tobymao/sqlglot@v25.26.0...v26.0.1)

Updates `typer` from 0.12.5 to 0.15.1
- [Release notes](https://github.com/fastapi/typer/releases)
- [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md)
- [Commits](fastapi/typer@0.12.5...0.15.1)

Updates `db-dtypes` from 1.3.0 to 1.3.1
- [Release notes](https://github.com/googleapis/python-db-dtypes-pandas/releases)
- [Changelog](https://github.com/googleapis/python-db-dtypes-pandas/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-db-dtypes-pandas@v1.3.0...v1.3.1)

Updates `google-cloud-bigquery` from 3.26.0 to 3.27.0
- [Release notes](https://github.com/googleapis/python-bigquery/releases)
- [Changelog](https://github.com/googleapis/python-bigquery/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-bigquery@v3.26.0...v3.27.0)

Updates `pandas-gbq` from 0.24.0 to 0.26.0
- [Release notes](https://github.com/googleapis/python-bigquery-pandas/releases)
- [Changelog](https://github.com/googleapis/python-bigquery-pandas/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-bigquery-pandas@v0.24.0...v0.26.0)

Updates `pytest` from 8.3.3 to 8.3.4
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.3...8.3.4)

Updates `ruff` from 0.7.0 to 0.8.4
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.7.0...0.8.4)

---
updated-dependencies:
- dependency-name: jinja2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: duckdb
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: rich
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: sqlglot
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: typer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: db-dtypes
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: google-cloud-bigquery
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pandas-gbq
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 24, 2024
@dependabot dependabot bot requested a review from MaxHalford December 24, 2024 02:33
@MaxHalford MaxHalford closed this Dec 26, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 26, 2024

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/pip/python-packages-1a2f9591c3 branch December 26, 2024 18:28
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant