Skip to content

Bump the minor-patch-dependencies group with 3 updates#1552

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/pip/minor-patch-dependencies-2275b8870f
Mar 31, 2025
Merged

Bump the minor-patch-dependencies group with 3 updates#1552
github-actions[bot] merged 1 commit intomainfrom
dependabot/pip/minor-patch-dependencies-2275b8870f

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 31, 2025

Bumps the minor-patch-dependencies group with 3 updates: sentry-sdk, aiohttp-cors and google-cloud-bigquery.

Updates sentry-sdk from 2.24.1 to 2.25.0

Release notes

Sourced from sentry-sdk's releases.

2.25.0

Various fixes & improvements

  • New Beta Feature Enable Sentry logs in logging Integration (#4143) by @​colin-sentry

    You can now send existing log messages to the new Sentry Logs feature.

    For more information see: Logs in Sentry 🚀 - Generally Available getsentry/sentry#86804

    This is how you can use it (Sentry Logs is in beta right now so the API can still change):

    import logging
    import sentry_sdk
    from sentry_sdk.integrations.logging import LoggingIntegration
    Setup Sentry SDK to send log messages with a level of "error" or higher to Sentry.
    sentry_sdk.init(
    dsn="...",
    _experiments={
    "enable_sentry_logs": True
    }
    integrations=[
    LoggingIntegration(sentry_logs_level=logging.ERROR),
    ]
    )
    Your existing logging setup
    some_logger = logging.Logger("some-logger")
    some_logger.info('In this example info events will not be sent to Sentry logs. my_value=%s', my_value)
    some_logger.error('But error events will be sent to Sentry logs. my_value=%s', my_value)

  • Spotlight: Sample everything 100% w/ Spotlight & no DSN set (#4207) by @​BYK

  • Dramatiq: use set_transaction_name (#4175) by @​timdrijvers

  • toxgen: Make it clearer which suites can be migrated (#4196) by @​sentrivana

  • Move Litestar under toxgen (#4197) by @​sentrivana

  • Added flake8 plugings to pre-commit call of flake8 (#4190) by @​antonpirker

  • Deprecate Scope.user (#4194) by @​sentrivana

  • Fix hanging when capturing long stacktrace (#4191) by @​szokeasaurusrex

  • Fix GraphQL failures (#4208) by @​sentrivana

  • Fix flaky test (#4198) by @​sentrivana

  • Update Ubuntu in Github test runners (#4204) by @​antonpirker

Changelog

Sourced from sentry-sdk's changelog.

2.25.0

Various fixes & improvements

  • New Beta Feature Enable Sentry logs in logging Integration (#4143) by @​colin-sentry

    You can now send existing log messages to the new Sentry Logs feature.

    For more information see: Logs in Sentry 🚀 - Generally Available getsentry/sentry#86804

    This is how you can use it (Sentry Logs is in beta right now so the API can still change):

    import sentry_sdk
    from sentry_sdk.integrations.logging import LoggingIntegration
    Setup Sentry SDK to send log messages with a level of "error" or higher to Sentry.
    sentry_sdk.init(
    dsn="...",
    _experiments={
    "enable_sentry_logs": True
    }
    integrations=[
    LoggingIntegration(sentry_logs_level="error"),
    ]
    )
    Your existing logging setup
    import logging
    some_logger = logging.Logger("some-logger")
    some_logger.info('In this example info events will not be sent to Sentry logs. my_value=%s', my_value)
    some_logger.error('But error events will be sent to Sentry logs. my_value=%s', my_value)

  • Spotlight: Sample everything 100% w/ Spotlight & no DSN set (#4207) by @​BYK

  • Dramatiq: use set_transaction_name (#4175) by @​timdrijvers

  • toxgen: Make it clearer which suites can be migrated (#4196) by @​sentrivana

  • Move Litestar under toxgen (#4197) by @​sentrivana

  • Added flake8 plugings to pre-commit call of flake8 (#4190) by @​antonpirker

  • Deprecate Scope.user (#4194) by @​sentrivana

  • Fix hanging when capturing long stacktrace (#4191) by @​szokeasaurusrex

  • Fix GraphQL failures (#4208) by @​sentrivana

  • Fix flaky test (#4198) by @​sentrivana

  • Update Ubuntu in Github test runners (#4204) by @​antonpirker

Commits
  • 44cd9b7 Merge branch 'master' into release/2.25.0
  • fae17b3 Pin fakeredis until rq can work with the new version (#4216)
  • 711816b Updated changelog
  • 8841b1f release: 2.25.0
  • 3b28649 feat: Sample everything 100% w/ Spotlight & no DSN set (#4207)
  • 4aaadf4 Update Ubuntu in Github test runners (#4204)
  • 3d2f044 ci: Fix GraphQL failures (#4208)
  • e432fb4 fix: Don't hang when capturing long stacktrace (#4191)
  • 2f4b028 feat(logs): Make the logging integration send Sentry logs (#4143)
  • 6f49bfb toxgen: Make it clearer which suites can be migrated (#4196)
  • Additional commits viewable in compare view

Updates aiohttp-cors from 0.8.0 to 0.8.1

Changelog

Sourced from aiohttp-cors's changelog.

0.8.1 (2025-03-31)

  • Fix packaging to not install on Python 3.8.
Commits

Updates google-cloud-bigquery from 3.30.0 to 3.31.0

Release notes

Sourced from google-cloud-bigquery's releases.

v3.31.0

3.31.0 (2025-03-20)

Features

  • Add query text and total bytes processed to RowIterator (#2140) (2d5f932)
  • Add support for Python 3.13 (0842aa1)

Bug Fixes

  • Adding property setter for table constraints, #1990 (#2092) (f8572dd)
  • Allow protobuf 6.x (0842aa1)
  • Avoid "Unable to determine type" warning with JSON columns in to_dataframe (#1876) (968020d)
  • Remove setup.cfg configuration for creating universal wheels (#2146) (d7f7685)

Dependencies

  • Remove Python 3.7 and 3.8 as supported runtimes (#2133) (fb7de39)
Changelog

Sourced from google-cloud-bigquery's changelog.

3.31.0 (2025-03-20)

Features

  • Add query text and total bytes processed to RowIterator (#2140) (2d5f932)
  • Add support for Python 3.13 (0842aa1)

Bug Fixes

  • Adding property setter for table constraints, #1990 (#2092) (f8572dd)
  • Allow protobuf 6.x (0842aa1)
  • Avoid "Unable to determine type" warning with JSON columns in to_dataframe (#1876) (968020d)
  • Remove setup.cfg configuration for creating universal wheels (#2146) (d7f7685)

Dependencies

  • Remove Python 3.7 and 3.8 as supported runtimes (#2133) (fb7de39)
Commits
  • 85de1a3 chore(main): release 3.31.0 (#2139)
  • 968020d fix: avoid "Unable to determine type" warning with JSON columns in `to_datafr...
  • 9acd9c1 chore: refactor cell data parsing to use classes for easier overrides (#2144)
  • 0842aa1 fix: Allow protobuf 6.x (#2142)
  • d7f7685 fix: remove setup.cfg configuration for creating universal wheels (#2146)
  • faeb51d chore: remove unused files (#2141)
  • 2d5f932 feat: add query text and total bytes processed to RowIterator (#2140)
  • f8572dd fix: adding property setter for table constraints, #1990 (#2092)
  • fb7de39 deps: Remove Python 3.7 and 3.8 as supported runtimes (#2133)
  • See full diff 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 dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 31, 2025
@dependabot dependabot bot requested a review from a team as a code owner March 31, 2025 15:58
@github-actions
Copy link
Copy Markdown

The minor update of this production dependency was not automatically approved. For production dependencies, these semver updates can be automatically approved: patch

@github-actions github-actions bot enabled auto-merge (squash) March 31, 2025 15:58
@dependabot dependabot bot force-pushed the dependabot/pip/minor-patch-dependencies-2275b8870f branch from b24fc12 to 5ebb8aa Compare March 31, 2025 16:16
@github-actions
Copy link
Copy Markdown

The minor update of this production dependency was not automatically approved. For production dependencies, these semver updates can be automatically approved: patch

Bumps the minor-patch-dependencies group with 3 updates: [sentry-sdk](https://github.com/getsentry/sentry-python), [aiohttp-cors](https://github.com/aio-libs/aiohttp-cors) and [google-cloud-bigquery](https://github.com/googleapis/python-bigquery).


Updates `sentry-sdk` from 2.24.1 to 2.25.0
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@2.24.1...2.25.0)

Updates `aiohttp-cors` from 0.8.0 to 0.8.1
- [Release notes](https://github.com/aio-libs/aiohttp-cors/releases)
- [Changelog](https://github.com/aio-libs/aiohttp-cors/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiohttp-cors@v0.8.0...v0.8.1)

Updates `google-cloud-bigquery` from 3.30.0 to 3.31.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.30.0...v3.31.0)

---
updated-dependencies:
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: aiohttp-cors
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: google-cloud-bigquery
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/minor-patch-dependencies-2275b8870f branch from 5ebb8aa to a4110c8 Compare March 31, 2025 19:23
@github-actions
Copy link
Copy Markdown

The minor update of this production dependency was not automatically approved. For production dependencies, these semver updates can be automatically approved: patch

@github-actions github-actions bot merged commit 1e1dca7 into main Mar 31, 2025
4 checks passed
@github-actions github-actions bot deleted the dependabot/pip/minor-patch-dependencies-2275b8870f branch March 31, 2025 19:25
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 python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant