Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 18, 2025

Bumps the pip group with 10 updates in the / directory:

Package From To
jinja2 3.1.2 3.1.5
lightgbm 3.3.2 4.6.0
certifi 2022.6.15 2024.7.4
grpcio 1.47.0 1.53.2
idna 3.3 3.7
joblib 1.1.0 1.3.2
oauthlib 3.2.0 3.2.2
pydantic 1.9.1 1.10.13
tqdm 4.64.0 4.66.3
urllib3 1.26.10 1.26.19

Bumps the pip group with 2 updates in the /truss/templates/xgboost directory: scikit-learn and joblib.

Updates jinja2 from 3.1.2 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

3.1.4

This is the Jinja 3.1.4 security release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes.

PyPI: https://pypi.org/project/Jinja2/3.1.4/ Changes: https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-4

  • The xmlattr filter does not allow keys with / solidus, > greater-than sign, or = equals sign, in addition to disallowing spaces. Regardless of any validation done by Jinja, user input should never be used as keys to this filter, or must be separately validated first. GHSA-h75v-3vvj-5mfj

3.1.3

This is a fix release for the 3.1.x feature branch.

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

... (truncated)

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 lightgbm from 3.3.2 to 4.6.0

Release notes

Sourced from lightgbm's releases.

v4.6.0

Changes

💡 New Features

🔨 Breaking

  • [R-package] require lgb.Dataset, remove support for passing 'colnames' and 'categorical_feature' for lgb.train() and lgb.cv() @​jameslamb (#6714)
  • [python-package] support sub-classing scikit-learn estimators @​jameslamb (#6783)
  • [python-package] do not copy column-major numpy arrays when creating Dataset from list of arrays @​jmoralez (#6773)
  • [python-package] remove support for passing 'feature_name' and 'categorical_feature' through train() and cv() @​jameslamb (#6706)
  • [python-package] require scikit-learn>=0.24.2, make scikit-learn estimators compatible with scikit-learn>=1.6.0dev @​vnherdeiro (#6651)
  • [ci] Require CMake 3.28 and replace FetchContent_Populate with FetchContent_MakeAvailable @​StrikerRUS (#6550)

🚀 Efficiency Improvement

  • [python-package] do not copy column-major numpy arrays when predicting @​jmoralez (#6751)
  • [python-package] do not copy column-major numpy arrays when creating Dataset @​jmoralez (#6721)

🐛 Bug Fixes

  • [python-package] Separately check whether pyarrow and cffi are installed @​mlondschien (#6785)
  • [c++] Fixed Predictor lifecycle and trees initialization in Contrib mode @​AndreyOrb (#6778)
  • [python-package] Infer feature names from pyarrow.Table @​mlondschien (#6781)
  • [python-package] Fix inconsistency in predict() output shape for 1-tree models @​RektPunk (#6753)
  • [fix] resolve potential attack in linker connection building @​shiyu1994 (#6752)
  • [R-package] Avoid bashisms (non-POSIX code) in R-package/configure @​smoser (#6746)
  • [c++] fix parallel_tree_learner_split_info @​moming39 (#6738)
  • [c++] Fix dump_model() information for root node @​neNasko1 (#6569)
  • [cmake] [R-package] include R-for-macOS vendored libs dir in OpenMP search path (fixes #6628) @​jameslamb (#6629)
  • [R-package] only warn about early stopping and DART boosting being incompatible if early stopping was requested @​serkor1 (#6619)
  • [cmake] fixes static build for macos with OpenMP enabled (fixes #6601) @​Mottl (#6600)

📖 Documentation

... (truncated)

Commits
  • d02a01a release v4.6.0 (#6796)
  • d24260f [R-package] require lgb.Dataset, remove support for passing 'colnames' and 'c...
  • c6d90bc [python-package] support sub-classing scikit-learn estimators (#6783)
  • 768f642 [c++] update to fmt 11.1.2, fast_double_parser 0.8.0 (#6802)
  • 1531d87 [ci] fix valgrind workflow (#6816)
  • 188f1be [ci] validate pyproject file by json schema (#6813)
  • 81922a7 [ci] [python-package] update pre-commit hooks to latest versions (#6817)
  • 2db0b25 [python-package] Separately check whether pyarrow and cffi are installed ...
  • c9de57b [CUDA] fix setting of CUDA architectures and enable support for NVIDIA Blackw...
  • f2b959c [ci]: Bump release-drafter/release-drafter from 6.0.0 to 6.1.0 in the ci-depe...
  • Additional commits viewable in compare view

Updates certifi from 2022.6.15 to 2024.7.4

Commits

Updates grpcio from 1.47.0 to 1.53.2

Release notes

Sourced from grpcio's releases.

Release v1.53.2

This is release gRPC Core 1.53.2 (glockenspiel).

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes.

Core

Release v1.53.1

This is release gRPC Core 1.53.1 (glockenspiel).

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes.

Release v1.53.0

This is release 1.53.0 (glockenspiel) of gRPC Core.

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes, with highlights listed below.

Core

  • xDS: fix crash when removing the last endpoint from the last locality in weighted_target. (#32592)
  • filter stack: pass peer name up via recv_initial_metadata batch. (#31933)
  • [EventEngine] Add advice against blocking work in callbacks. (#32397)
  • [http2] Dont drop connections on metadata limit exceeded. (#32309)
  • xDS: reject aggregate cluster with empty cluster list. (#32238)
  • Fix Python epoll1 Fork Support. (#32196)
  • server: introduce ServerMetricRecorder API and move per-call reporting from a C++ interceptor to a C-core filter. (#32106)
  • [EventEngine] Add invalid handle types to the public API. (#32202)
  • [EventEngine] Refactoring the EventEngine Test Suite: Part 1. (#32127)
  • xDS: fix WeightedClusters total weight handling. (#32134)

C++

  • Update minimum MSVC version to 2019. (#32615)
  • Use CMake variables for paths in pkg-config files. (#31671)

... (truncated)

Commits
  • afb307f [v1.53.x][Interop] Backport Python image update (#33864)
  • 7a9373b [Backport] [dependency] Restrict cython to less than 3.X (#33770)
  • fdb64a6 [v1.53][Build] Update Phusion baseimage (#33767) (#33836)
  • cdf4186 [PSM Interop] Legacy tests: fix xDS test client build (v1.53.x backport) (#33...
  • ce5b93a [PSM Interop] Legacy test builds always pull the driver from master (v1.53.x ...
  • b24b6ea [release] Bump release version to 1.53.2 (#33709)
  • 1e86ca5 [backport][iomgr][EventEngine] Improve server handling of file descriptor exh...
  • aff3066 [PSM interop] Don't fail url_map target if sub-target already failed (v1.53.x...
  • 539d75c [PSM interop] Don't fail target if sub-target already failed (#33222) (v1.53....
  • 3e79c88 [Release] Bump version to 1.53.1 (on v1.53.x branch) (#33047)
  • Additional commits viewable in compare view

Updates idna from 3.3 to 3.7

Release notes

Sourced from idna's releases.

v3.7

What's Changed

  • Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time to process. [CVE-2024-3651]

Thanks to Guido Vranken for reporting the issue.

Full Changelog: kjd/idna@v3.6...v3.7

Changelog

Sourced from idna's changelog.

3.7 (2024-04-11) ++++++++++++++++

  • Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time to process. [CVE-2024-3651]

Thanks to Guido Vranken for reporting the issue.

3.6 (2023-11-25) ++++++++++++++++

  • Fix regression to include tests in source distribution.

3.5 (2023-11-24) ++++++++++++++++

  • Update to Unicode 15.1.0
  • String codec name is now "idna2008" as overriding the system codec "idna" was not working.
  • Fix typing error for codec encoding
  • "setup.cfg" has been added for this release due to some downstream lack of adherence to PEP 517. Should be removed in a future release so please prepare accordingly.
  • Removed reliance on a symlink for the "idna-data" tool to comport with PEP 517 and the Python Packaging User Guide for sdist archives.
  • Added security reporting protocol for project

Thanks Jon Ribbens, Diogo Teles Sant'Anna, Wu Tingfeng for contributions to this release.

3.4 (2022-09-14) ++++++++++++++++

  • Update to Unicode 15.0.0
  • Migrate to pyproject.toml for build information (PEP 621)
  • Correct another instance where generic exception was raised instead of IDNAError for malformed input
  • Source distribution uses zeroized file ownership for improved reproducibility

Thanks to Seth Michael Larson for contributions to this release.

Commits
  • 1d365e1 Release v3.7
  • c1b3154 Merge pull request #172 from kjd/optimize-contextj
  • 0394ec7 Merge branch 'master' into optimize-contextj
  • cd58a23 Merge pull request #152 from elliotwutingfeng/dev
  • 5beb28b More efficient resolution of joiner contexts
  • 1b12148 Update ossf/scorecard-action to v2.3.1
  • d516b87 Update Github actions/checkout to v4
  • c095c75 Merge branch 'master' into dev
  • 60a0a4c Fix typo in GitHub Actions workflow key
  • 5918a0e Merge branch 'master' into dev
  • Additional commits viewable in compare view

Updates joblib from 1.1.0 to 1.3.2

Release notes

Sourced from joblib's releases.

Joblib 1.3.2

Bug fix release

What's Changed

New Contributors

Full Changelog: joblib/joblib@1.3.1...1.3.2

Joblib 1.3.1

What's Changed

Full Changelog: joblib/joblib@1.3.0...1.3.1

1.3.0

What's Changed

... (truncated)

Changelog

Sourced from joblib's changelog.

Release 1.3.2 -- 2023/08/08

Release 1.3.1 -- 2023/06/29

  • Fix compatibility with python 3.7 by vendor loky 3.4.1 which is compatible with this version. joblib/joblib#1472

Release 1.3.0 -- 2023/06/28

  • Ensure native byte order for memmap arrays in joblib.load. joblib/joblib#1353

  • Add ability to change default Parallel backend in tests by setting the JOBLIB_TESTS_DEFAULT_PARALLEL_BACKEND environment variable. joblib/joblib#1356

  • Fix temporary folder creation in joblib.Parallel on Linux subsystems on Windows which do have /dev/shm but don't have the os.statvfs function joblib/joblib#1353

  • Drop runtime dependency on distutils. distutils is going away in Python 3.12 and is deprecated from Python 3.10 onwards. This import was kept around to avoid breaking scikit-learn, however it's now been long enough since scikit-learn deployed a fixed (version 1.1 was released in May 2022) that it should be safe to remove this. joblib/joblib#1361

  • A warning is raised when a pickling error occurs during caching operations. In version 1.5, this warning will be turned into an error. For all other

... (truncated)

Commits
  • 942a410 RELEASE 1.3.2 - bugfix release (#1493)
  • 85ab836 FIX init logger parent class in Parallel (#1494)
  • 3d56c25 MTN fix flake8 new error E721: type comparison (#1492)
  • 0c57c18 TST adjust test_regex for Python 3.12 abstract method error (#1476)
  • 4ccc02d FIX n_jobs=None behavior in Parallel and config contexts (#1475)
  • 8be8d32 DOC add public documentation for parallel_backend (#1481)
  • 3c314c1 MNT remove unnecessary file (#1480)
  • 476ff8e RELEASE joblib 1.3.1 - bugfix release - vendoring loky 3.4.1 for compatibilit...
  • b9be27d MTN back to dev mode
  • 22ff2de RELEASE 1.3.0 (#1466)
  • Additional commits viewable in compare view

Updates oauthlib from 3.2.0 to 3.2.2

Release notes

Sourced from oauthlib's releases.

3.2.2

OAuth2.0 Provider:

3.2.1

In short

OAuth2.0 Provider:

  • #803 : Metadata endpoint support of non-HTTPS

OAuth1.0:

  • #818 : Allow IPv6 being parsed by signature

General:

  • Improved and fixed documentation warnings.
  • Cosmetic changes based on isort

What's Changed

New Contributors

Full Changelog: oauthlib/oauthlib@v3.2.0...v3.2.1

Changelog

Sourced from oauthlib's changelog.

3.2.2 (2022-10-17)

OAuth2.0 Provider:

3.2.1 (2022-09-09)

OAuth2.0 Provider:

  • #803: Metadata endpoint support of non-HTTPS

OAuth1.0:

  • #818: Allow IPv6 being parsed by signature

General:

  • Improved and fixed documentation warnings.
  • Cosmetic changes based on isort
Commits

Updates pydantic from 1.9.1 to 1.10.13

Release notes

Sourced from pydantic's releases.

V1.10.13 2023-09-27

What's Changed

Full Changelog: pydantic/pydantic@v1.10.12...v1.10.13

V1.10.12

What's Changed

New Contributors

Full Changelog: pydantic/pydantic@v1.10.11...v1.10.12

V1.10.11

What's Changed

New Contributors

Full Changelog: pydantic/pydantic@v1.10.10...v1.10.11

V1.10.10

What's Changed

New Contributors

Full Changelog: pydantic/pydantic@v1.10.9...v1.10.10

V1.10.9

What's Changed

... (truncated)

Changelog

Sourced from pydantic's changelog.

v1.10.13 (2023-09-27)

v1.10.12 (2023-07-24)

  • Fixes the maxlen property being dropped on deque validation. Happened only if the deque item has been typed. Changes the _validate_sequence_like func, #6581 by @​maciekglowka

v1.10.11 (2023-07-04)

  • Importing create_model in tools.py through relative path instead of absolute path - so that it doesn't import V2 code when copied over to V2 branch, #6361 by @​SharathHuddar

v1.10.10 (2023-06-30)

v1.10.9 (2023-06-07)

v1.10.8 (2023-05-23)

  • Fix a bug in Literal usage with typing-extension==4.6.0, #5826 by @​hramezani
  • This solves the (closed) issue #3849 where aliased fields that use discriminated union fail to validate...

    Description has been truncated

Bumps the pip group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [jinja2](https://github.com/pallets/jinja) | `3.1.2` | `3.1.5` |
| [lightgbm](https://github.com/microsoft/LightGBM) | `3.3.2` | `4.6.0` |
| [certifi](https://github.com/certifi/python-certifi) | `2022.6.15` | `2024.7.4` |
| [grpcio](https://github.com/grpc/grpc) | `1.47.0` | `1.53.2` |
| [idna](https://github.com/kjd/idna) | `3.3` | `3.7` |
| [joblib](https://github.com/joblib/joblib) | `1.1.0` | `1.3.2` |
| [oauthlib](https://github.com/oauthlib/oauthlib) | `3.2.0` | `3.2.2` |
| [pydantic](https://github.com/pydantic/pydantic) | `1.9.1` | `1.10.13` |
| [tqdm](https://github.com/tqdm/tqdm) | `4.64.0` | `4.66.3` |
| [urllib3](https://github.com/urllib3/urllib3) | `1.26.10` | `1.26.19` |

Bumps the pip group with 2 updates in the /truss/templates/xgboost directory: [scikit-learn](https://github.com/scikit-learn/scikit-learn) and [joblib](https://github.com/joblib/joblib).


Updates `jinja2` from 3.1.2 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.2...3.1.5)

Updates `lightgbm` from 3.3.2 to 4.6.0
- [Release notes](https://github.com/microsoft/LightGBM/releases)
- [Commits](microsoft/LightGBM@v3.3.2...v4.6.0)

Updates `certifi` from 2022.6.15 to 2024.7.4
- [Commits](certifi/python-certifi@2022.06.15...2024.07.04)

Updates `grpcio` from 1.47.0 to 1.53.2
- [Release notes](https://github.com/grpc/grpc/releases)
- [Changelog](https://github.com/grpc/grpc/blob/master/doc/grpc_release_schedule.md)
- [Commits](grpc/grpc@v1.47.0...v1.53.2)

Updates `idna` from 3.3 to 3.7
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.3...v3.7)

Updates `joblib` from 1.1.0 to 1.3.2
- [Release notes](https://github.com/joblib/joblib/releases)
- [Changelog](https://github.com/joblib/joblib/blob/main/CHANGES.rst)
- [Commits](joblib/joblib@1.1.0...1.3.2)

Updates `oauthlib` from 3.2.0 to 3.2.2
- [Release notes](https://github.com/oauthlib/oauthlib/releases)
- [Changelog](https://github.com/oauthlib/oauthlib/blob/master/CHANGELOG.rst)
- [Commits](oauthlib/oauthlib@v3.2.0...v3.2.2)

Updates `pydantic` from 1.9.1 to 1.10.13
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v1.9.1...v1.10.13)

Updates `tqdm` from 4.64.0 to 4.66.3
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.64.0...v4.66.3)

Updates `urllib3` from 1.26.10 to 1.26.19
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@1.26.10...1.26.19)

Updates `scikit-learn` from 1.0.2 to 1.5.0
- [Release notes](https://github.com/scikit-learn/scikit-learn/releases)
- [Commits](scikit-learn/scikit-learn@1.0.2...1.5.0)

Updates `joblib` from 1.1.0 to 1.4.2
- [Release notes](https://github.com/joblib/joblib/releases)
- [Changelog](https://github.com/joblib/joblib/blob/main/CHANGES.rst)
- [Commits](joblib/joblib@1.1.0...1.3.2)

---
updated-dependencies:
- dependency-name: jinja2
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: lightgbm
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: certifi
  dependency-type: indirect
  dependency-group: pip
- dependency-name: grpcio
  dependency-type: indirect
  dependency-group: pip
- dependency-name: idna
  dependency-type: indirect
  dependency-group: pip
- dependency-name: joblib
  dependency-type: indirect
  dependency-group: pip
- dependency-name: oauthlib
  dependency-type: indirect
  dependency-group: pip
- dependency-name: pydantic
  dependency-type: indirect
  dependency-group: pip
- dependency-name: tqdm
  dependency-type: indirect
  dependency-group: pip
- dependency-name: urllib3
  dependency-type: indirect
  dependency-group: pip
- dependency-name: scikit-learn
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: joblib
  dependency-type: direct:production
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 18, 2025
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