Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 17, 2025

Bumps the simple group with 10 updates in the /misc/dbt-materialize directory:

Package From To
certifi 2025.10.5 2025.11.12
click 8.3.0 8.3.1
dbt-adapters 1.17.3 1.19.0
dbt-common 1.33.0 1.36.0
dbt-core 1.10.13 1.10.15
mashumaro 3.14 3.17
protobuf 6.33.0 6.33.1
pydantic 2.12.3 2.12.4
pydantic-core 2.41.4 2.41.5
rpds-py 0.28.0 0.29.0

Updates certifi from 2025.10.5 to 2025.11.12

Commits

Updates click from 8.3.0 to 8.3.1

Release notes

Sourced from click's releases.

8.3.1

This is the Click 8.3.1 fix release, which fixes 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/click/8.3.1/ Changes: https://click.palletsprojects.com/page/changes/#version-8-3-1 Milestone: https://github.com/pallets/click/milestone/28

  • Don't discard pager arguments by correctly using subprocess.Popen. #3039 #3055
  • Replace Sentinel.UNSET default values by None as they're passed through the Context.invoke() method. #3066 #3065 #3068
  • Fix conversion of Sentinel.UNSET happening too early, which caused incorrect behavior for multiple parameters using the same name. #3071 #3079
  • Fix rendering when prompt and confirm parameter prompt_suffix is empty. #3019 #3021
  • When Sentinel.UNSET is found during parsing, it will skip calls to type_cast_value. #3069 #3090
  • Hide Sentinel.UNSET values as None when looking up for other parameters through the context inside parameter callbacks. #3136 #3137
Changelog

Sourced from click's changelog.

Version 8.3.1

Released 2025-11-15

  • Don't discard pager arguments by correctly using subprocess.Popen. :issue:3039 :pr:3055
  • Replace Sentinel.UNSET default values by None as they're passed through the Context.invoke() method. :issue:3066 :issue:3065 :pr:3068
  • Fix conversion of Sentinel.UNSET happening too early, which caused incorrect behavior for multiple parameters using the same name. :issue:3071 :pr:3079
  • Hide Sentinel.UNSET values as None when looking up for other parameters through the context inside parameter callbacks. :issue:3136 :pr:3137
  • Fix rendering when prompt and confirm parameter prompt_suffix is empty. :issue:3019 :pr:3021
  • When Sentinel.UNSET is found during parsing, it will skip calls to type_cast_value. :issue:3069 :pr:3090
Commits
  • 1d038f2 release version 8.3.1
  • 03f3889 Fix Ruff UP038 warning (#3141)
  • 3867781 Fix Ruff UP038 warning
  • b91bb95 Provide altered context to callbacks to hide UNSET values as None (#3137)
  • 437e1e3 Temporarily provide a fake context to the callback to hide UNSET values as ...
  • ea70da4 Don't test using a file in docs/ (#3102)
  • e27b307 Make uv run --all-extras pyright --verifytypes click pass (#3072)
  • a92c573 Fix test_edit to work with BSD sed (#3129)
  • bd131e1 Fix test_edit to work with BSD sed
  • 0b5c6b7 Add Best practices section (#3127)
  • Additional commits viewable in compare view

Updates dbt-adapters from 1.17.3 to 1.19.0

Commits

Updates dbt-common from 1.33.0 to 1.36.0

Changelog

Sourced from dbt-common's changelog.

dbt-common 1.36.0 - November 06, 2025

Under the Hood

  • Add record_row_limit to Recorder, and support DBT_ENGINE prefix for record/replay environment variables (#323)

dbt-common 1.35.0 - October 28, 2025

Fixes

Dependencies

  • Drop support for python 3.9 (#319)

Contributors

dbt-common 1.34.0 - October 28, 2025

Features

  • Begin distributing the EventCatcher testing utility (#N/A)
Commits

Updates dbt-core from 1.10.13 to 1.10.15

Release notes

Sourced from dbt-core's releases.

dbt-core v1.10.15

dbt-core 1.10.15 - November 12, 2025

Under the Hood

  • add dbt/jsonschemas to manifest.in (#12126)

dbt-core v1.10.14

dbt-core 1.10.14 - November 10, 2025

Fixes

  • Fix errors in partial parsing when working with versioned models (#11869)

Under the Hood

  • Reorganize jsonschemas directory structure (#12121)
Changelog

Sourced from dbt-core's changelog.

dbt-core 1.10.15 - November 12, 2025

Under the Hood

  • add dbt/jsonschemas to manifest.in (#12126)

dbt-core 1.10.14 - November 10, 2025

Fixes

  • Fix errors in partial parsing when working with versioned models (#11869)

Under the Hood

  • Reorganize jsonschemas directory structure (#12121)
Commits
  • 022accc Bumping version to 1.10.15 and generate changelog
  • 459f61c add dbt/jsonschemas to recursive-include (#12126) (#12163)
  • 30da285 [Automated] Merged prep-release/1.10.14_19243408641 into target 1.10.latest d...
  • 75efbb7 Bumping version to 1.10.14 and generate changelog
  • d5a22b4 pin adapters to last 3.9 python support in dev-requirements (#12138)
  • 95dfbc2 Manual backport of deb2f3e (#12125)
  • bbe3a74 Fix schema file patch collection (#12055) (#12060)
  • 12cd79d [Automated] Merged prep-release/1.10.13_18019090648 into target 1.10.latest d...
  • See full diff in compare view

Updates mashumaro from 3.14 to 3.17

Release notes

Sourced from mashumaro's releases.

v3.17

Changes

  • Added support for Python 3.14 (#285)
  • Improved generating JSON Schema references and titles for generic dataclasses (#291)
  • Fixed JSON Schema for a generic dataclass with a field type T (#290)
  • Fixed ignoring NotRequired when using from __future__ import annotations (#292)
  • Added support for user extra args in field_options function (#286)
  • Improved packaging by switching from setup.py to pyproject.toml (#284)

v3.16

Changes

  • Added support for custom JSON Schema instance formats defined by users (#267)
  • Added support for typing.ReadOnly and typing_extensions.ReadOnly from PEP 705 (#272)
  • Fixed AttributeError when using generic SerializableType subclass (#275)

v3.15

Changes

  • Improved Union and basic types deserialization (#256), highlighted changes:
    • Expected int | float or float | int value can now be passed through without coercion and losing precision
    • Expected str value will be guaranteed to be a string version of the input value (#42)
    • Expected bool value will be guaranteed to be a boolean using standard truth testing procedure for the input value
    • Expected NoneType will be guaranteed to be None regardless of the input value
  • Introduced JSON Schema plugin system (#265), see updated documentation
    • Added built-in DocstringDescriptionPlugin to use a docstring as a description (#222)
  • Added support for recursive Union types (#206)
  • Configured MANIFEST.in to include tests folder in the sdist (#262)
  • Dropped support for Python 3.8 (#258)
Commits
  • 6ea604b Bump version
  • ef0f59f Merge pull request #296 from Fatal1ty/notrequired-workaround
  • 3cc3379 Add tests for NotRequired with future annotations
  • c5c5244 Add workaround for NotRequired with future annotations in JSON Schema
  • 8edf0d8 Add workaround for NotRequired used with future annotations
  • b82b15a Merge pull request #294 from Fatal1ty/enable-some-tests
  • 051d420 Remove tests/test_serialization_strategy_563.py
  • 70d428c Enable previously disabled tests and do some refactoring
  • 5833f95 Merge pull request #285 from cdce8p-forks/python-3.14
  • cf99107 Revert "Fix ByteString checks"
  • Additional commits viewable in compare view

Updates protobuf from 6.33.0 to 6.33.1

Commits

Updates pydantic from 2.12.3 to 2.12.4

Release notes

Sourced from pydantic's releases.

v2.12.4 2025-11-05

v2.12.4 (2025-11-05)

This is the fourth 2.12 patch release, fixing more regressions, and reverting a change in the build() method of the AnyUrl and Dsn types.

This patch release also fixes an issue with the serialization of IP address types, when serialize_as_any is used. The next patch release will try to address the remaining issues with serialize as any behavior by introducing a new polymorphic serialization feature, that should be used in most cases in place of serialize as any.

Full Changelog: pydantic/pydantic@v2.12.3...v2.12.4

Changelog

Sourced from pydantic's changelog.

v2.12.4 (2025-11-05)

GitHub release

This is the fourth 2.12 patch release, fixing more regressions, and reverting a change in the build() method of the AnyUrl and Dsn types.

This patch release also fixes an issue with the serialization of IP address types, when serialize_as_any is used. The next patch release will try to address the remaining issues with serialize as any behavior by introducing a new polymorphic serialization feature, that should be used in most cases in place of serialize as any.

Commits
  • 5c842df Prepare release v2.12.4
  • c678a71 Bump pydantic-core to v2.41.5
  • a7cd292 Bump cloudpickle to v3.1.2
  • 21f6278 Bump actions/setup-node from 5 to 6
  • 8d6be8f Bump astral-sh/setup-uv from 6 to 7
  • 17865ea Bump actions/upload-artifact from 4 to 5
  • 90ad0af Bump actions/download-artifact from 5 to 6
  • 18e6672 Drop testing under PyPy 3.9
  • 650215b Document workaround for MongoDsn default port
  • e326790 Fix example of for bytes_invalid_encoding validation error
  • Additional commits viewable in compare view

Updates pydantic-core from 2.41.4 to 2.41.5

Release notes

Sourced from pydantic-core's releases.

v2.41.5

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-core@v2.41.4...v2.41.5

Commits

Updates rpds-py from 0.28.0 to 0.29.0

Release notes

Sourced from rpds-py's releases.

v0.29.0

What's Changed

Full Changelog: crate-py/rpds@v0.28.0...v0.29.0

Commits
  • 5fb6f35 Prepare for 0.29.0
  • d17dbd1 Add rpds's Stack.
  • 74707af Follow the rpds API more closely for Queue.
  • 41455f3 -> native uv for dpeendency groups.
  • e93532d Use 3.14 by default in nox.
  • 020c41f Remove dead hooks.
  • 6e08b75 Accept zizmor's cooldown suggestions for dependabot.
  • a5d40a9 Merge pull request #197 from crate-py/dependabot/cargo/rpds-1.2.0
  • b830be1 Merge pull request #198 from crate-py/dependabot/github_actions/softprops/act...
  • e7ac330 Merge pull request #199 from crate-py/pre-commit-ci-update-config
  • Additional commits viewable 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

@dependabot dependabot bot added the A-dependencies Area: dependency upgrades label Nov 17, 2025
@dependabot dependabot bot requested a review from a team as a code owner November 17, 2025 02:07
@dependabot dependabot bot added the A-dependencies Area: dependency upgrades label Nov 17, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/misc/dbt-materialize/simple-9bc5e8c19d branch from c13556b to 2b80baa Compare November 18, 2025 02:06
Bumps the simple group with 10 updates in the /misc/dbt-materialize directory:

| Package | From | To |
| --- | --- | --- |
| [certifi](https://github.com/certifi/python-certifi) | `2025.10.5` | `2025.11.12` |
| [click](https://github.com/pallets/click) | `8.3.0` | `8.3.1` |
| [dbt-adapters](https://github.com/dbt-labs/dbt-adapters) | `1.17.3` | `1.19.0` |
| [dbt-common](https://github.com/dbt-labs/dbt-common) | `1.33.0` | `1.36.0` |
| [dbt-core](https://github.com/dbt-labs/dbt-core) | `1.10.13` | `1.10.15` |
| [mashumaro](https://github.com/Fatal1ty/mashumaro) | `3.14` | `3.17` |
| [protobuf](https://github.com/protocolbuffers/protobuf) | `6.33.0` | `6.33.1` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.12.3` | `2.12.4` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.41.4` | `2.41.5` |
| [rpds-py](https://github.com/crate-py/rpds) | `0.28.0` | `0.29.0` |



Updates `certifi` from 2025.10.5 to 2025.11.12
- [Commits](certifi/python-certifi@2025.10.05...2025.11.12)

Updates `click` from 8.3.0 to 8.3.1
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/8.3.1/CHANGES.rst)
- [Commits](pallets/click@8.3.0...8.3.1)

Updates `dbt-adapters` from 1.17.3 to 1.19.0
- [Release notes](https://github.com/dbt-labs/dbt-adapters/releases)
- [Changelog](https://github.com/dbt-labs/dbt-adapters/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dbt-labs/dbt-adapters/commits)

Updates `dbt-common` from 1.33.0 to 1.36.0
- [Changelog](https://github.com/dbt-labs/dbt-common/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dbt-labs/dbt-common/commits)

Updates `dbt-core` from 1.10.13 to 1.10.15
- [Release notes](https://github.com/dbt-labs/dbt-core/releases)
- [Changelog](https://github.com/dbt-labs/dbt-core/blob/v1.10.15/CHANGELOG.md)
- [Commits](dbt-labs/dbt-core@v1.10.13...v1.10.15)

Updates `mashumaro` from 3.14 to 3.17
- [Release notes](https://github.com/Fatal1ty/mashumaro/releases)
- [Commits](Fatal1ty/mashumaro@v3.14...v3.17)

Updates `protobuf` from 6.33.0 to 6.33.1
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `pydantic` from 2.12.3 to 2.12.4
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/v2.12.4/HISTORY.md)
- [Commits](pydantic/pydantic@v2.12.3...v2.12.4)

Updates `pydantic-core` from 2.41.4 to 2.41.5
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.41.4...v2.41.5)

Updates `rpds-py` from 0.28.0 to 0.29.0
- [Release notes](https://github.com/crate-py/rpds/releases)
- [Commits](crate-py/rpds@v0.28.0...v0.29.0)

---
updated-dependencies:
- dependency-name: certifi
  dependency-version: 2025.11.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: simple
- dependency-name: click
  dependency-version: 8.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple
- dependency-name: dbt-adapters
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: simple
- dependency-name: dbt-common
  dependency-version: 1.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: simple
- dependency-name: dbt-core
  dependency-version: 1.10.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple
- dependency-name: mashumaro
  dependency-version: '3.17'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: simple
- dependency-name: protobuf
  dependency-version: 6.33.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple
- dependency-name: pydantic
  dependency-version: 2.12.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple
- dependency-name: pydantic-core
  dependency-version: 2.41.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple
- dependency-name: rpds-py
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: simple
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/misc/dbt-materialize/simple-9bc5e8c19d branch from 2b80baa to 69db4ef Compare November 19, 2025 02:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-dependencies Area: dependency upgrades

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant