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

Update all minor versions (prod-2-9-advance) (minor) #1289

Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
PyJWT 2.8.0 -> 2.9.0 age adoption passing confidence dependencies minor
azure-identity (source) 1.16.1 -> 1.17.1 age adoption passing confidence dependencies minor
azure-storage-blob (source) 12.20.0 -> 12.22.0 age adoption passing confidence dependencies minor
certifi 2024.7.4 -> 2024.8.30 age adoption passing confidence dependencies minor
ghcr.io/osgeo/gdal ubuntu-small-3.6.4 -> ubuntu-small-3.9.2 age adoption passing confidence final minor
lit (source) 3.1.4 -> 3.2.0 age adoption passing confidence devDependencies minor
python 3.10.14 -> 3.13.0rc1-windowsservercore-ltsc2022 age adoption passing confidence minor
sentry-sdk (changelog) 2.8.0 -> 2.13.0 age adoption passing confidence dependencies minor
typescript (source) 5.4.5 -> 5.5.4 age adoption passing confidence devDependencies minor
vite (source) 5.2.13 -> 5.4.2 age adoption passing confidence devDependencies minor

Release Notes

jpadilla/pyjwt (PyJWT)

v2.9.0

Compare Source

Changed


Fixed
~~~~~

Added
~~~~~
Azure/azure-sdk-for-python (azure-identity)

v1.17.1

Compare Source

1.17.1 (2024-06-21)
Bugs Fixed
  • Continue to attempt requesting token if the probing request receives non-json response. (#​36184)

v1.17.0

Compare Source

1.17.0 (2021-08-05)

Features Added
  • Cut hard dependency on requests library
  • Added a from_json method which now accepts storage QueueMessage, eventhub's EventData or ServiceBusMessage or simply json bytes to return a CloudEvent
Fixed
  • Not override "x-ms-client-request-id" if it already exists in the header. #​17757
Breaking Changes in the Provisional azure.core.rest package
  • azure.core.rest will not try to guess the charset anymore if it was impossible to extract it from HttpResponse analysis. This removes our dependency on charset.
certifi/python-certifi (certifi)

v2024.8.30

Compare Source

lit/lit (lit)

v3.2.0

Compare Source

Minor Changes
Patch Changes
getsentry/sentry-python (sentry-sdk)

v2.13.0

Compare Source

Various fixes & improvements
  • New integration: Ray (#​2400) (#​2444) by @​glowskir

    Usage: (add the RayIntegration to your sentry_sdk.init() call and make sure it is called in the worker processes)

    import ray
    
    import sentry_sdk
    from sentry_sdk.integrations.ray import RayIntegration
    
    def init_sentry():
        sentry_sdk.init(
            dsn="...",
            traces_sample_rate=1.0,
            integrations=[RayIntegration()],
        )
    
    init_sentry()
    
    ray.init(
        runtime_env=dict(worker_process_setup_hook=init_sentry), 
    )

    For more information, see the documentation for the Ray integration.

  • New integration: Litestar (#​2413) (#​3358) by @​KellyWalker

    Usage: (add the LitestarIntegration to your sentry_sdk.init())

    from litestar import Litestar, get
    
    import sentry_sdk
    from sentry_sdk.integrations.litestar import LitestarIntegration
    
    sentry_sdk.init(
        dsn="...",
        traces_sample_rate=1.0,
        integrations=[LitestarIntegration()],
    )
    
    @​get("/")
    async def index() -> str:
        return "Hello, world!"
    
    app = Litestar(...)

    For more information, see the documentation for the Litestar integration.

  • New integration: Dramatiq from @​jacobsvante (#​3397) by @​antonpirker
    Usage: (add the DramatiqIntegration to your sentry_sdk.init())

    import dramatiq
    
    import sentry_sdk
    from sentry_sdk.integrations.dramatiq import DramatiqIntegration
    
    sentry_sdk.init(
        dsn="...",
        traces_sample_rate=1.0,
        integrations=[DramatiqIntegration()],
    )
    
    @​dramatiq.actor(max_retries=0)
    def dummy_actor(x, y):
        return x / y
    
    dummy_actor.send(12, 0)

    For more information, see the documentation for the Dramatiq integration.

  • New config option: Expose custom_repr function that precedes safe_repr invocation in serializer (#​3438) by @​sl0thentr0py

    See: https://docs.sentry.io/platforms/python/configuration/options/#custom-repr

  • Profiling: Add client SDK info to profile chunk (#​3386) by @​Zylphrex

  • Serialize vars early to avoid living references (#​3409) by @​sl0thentr0py

  • Deprecate hub-based sessions.py logic (#​3419) by @​szokeasaurusrex

  • Deprecate is_auto_session_tracking_enabled (#​3428) by @​szokeasaurusrex

  • Add note to generated yaml files (#​3423) by @​sentrivana

  • Slim down PR template (#​3382) by @​sentrivana

  • Use new banner in readme (#​3390) by @​sentrivana

v2.12.0

Compare Source

Various fixes & improvements

v2.11.0

Compare Source

Various fixes & improvements
  • Add disabled_integrations (#​3328) by @​sentrivana

    Disabling individual integrations is now much easier.
    Instead of disabling all automatically enabled integrations and specifying the ones
    you want to keep, you can now use the new
    disabled_integrations
    config option to provide a list of integrations to disable:

    import sentry_sdk
    from sentry_sdk.integrations.flask import FlaskIntegration
    
    sentry_sdk.init(

Do not use the Flask integration even if Flask is installed.

  disabled_integrations=[
      FlaskIntegration(),
  ],

)


- Use operation name as transaction name in Strawberry (#​3294) by @​sentrivana
- WSGI integrations respect `SCRIPT_NAME` env variable (#​2622) by @​sarvaSanjay
- Make Django DB spans have origin `auto.db.django` (#​3319) by @​antonpirker
- Sort breadcrumbs by time before sending (#​3307) by @​antonpirker
- Fix `KeyError('sentry-monitor-start-timestamp-s')` (#​3278) by @​Mohsen-Khodabakhshi
- Set MongoDB tags directly on span data (#​3290) by @​0Calories
- Lower logger level for some messages (#​3305) by @​sentrivana and @​antonpirker
- Emit deprecation warnings from `Hub` API (#​3280) by @​szokeasaurusrex
- Clarify that `instrumenter` is internal-only (#​3299) by @​szokeasaurusrex
- Support Django 5.1 (#​3207) by @​sentrivana
- Remove apparently unnecessary `if` (#​3298) by @​szokeasaurusrex
- Preliminary support for Python 3.13 (#​3200) by @​sentrivana
- Move `sentry_sdk.init` out of `hub.py` (#​3276) by @​szokeasaurusrex
- Unhardcode integration list (#​3240) by @​rominf
- Allow passing of PostgreSQL port in tests (#​3281) by @​rominf
- Add tests for `@ai_track` decorator (#​3325) by @​colin-sentry
- Do not include type checking code in coverage report (#​3327) by @​antonpirker
- Fix test_installed_modules (#​3309) by @​szokeasaurusrex
- Fix typos and grammar in a comment (#​3293) by @​szokeasaurusrex
- Fixed failed tests setup (#​3303) by @​antonpirker
- Only assert warnings we are interested in (#​3314) by @​szokeasaurusrex

v2.10.0

Compare Source

Various fixes & improvements

v2.9.0

Compare Source

Various fixes & improvements
Microsoft/TypeScript (typescript)

v5.5.4

Compare Source

v5.5.3

Compare Source

v5.5.2

Compare Source

vitejs/vite (vite)

v5.4.2

Compare Source

v5.4.1

Compare Source

v5.4.0

Compare Source

v5.3.5

Compare Source

v5.3.4

Compare Source

v5.3.3

Compare Source

v5.3.2

Compare Source

v5.3.1

Compare Source

v5.3.0

Compare Source


Configuration

📅 Schedule: Branch creation - "after 5pm on the first day of the month" in timezone Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 renovate bot added the dependencies Update the dependencies label Jul 1, 2024
@renovate renovate bot enabled auto-merge (rebase) July 1, 2024 15:14
@renovate renovate bot force-pushed the renovate/prod-2-9-advance-all-minor-versions branch 5 times, most recently from c6d8fc0 to a8a50f5 Compare July 8, 2024 16:09
@renovate renovate bot force-pushed the renovate/prod-2-9-advance-all-minor-versions branch 10 times, most recently from c709b89 to a0defa7 Compare July 16, 2024 15:37
@renovate renovate bot force-pushed the renovate/prod-2-9-advance-all-minor-versions branch 4 times, most recently from ab9cd5e to 6d18db7 Compare July 25, 2024 09:37
@renovate renovate bot force-pushed the renovate/prod-2-9-advance-all-minor-versions branch 8 times, most recently from 05f6733 to c5fce31 Compare August 7, 2024 10:11
@renovate renovate bot force-pushed the renovate/prod-2-9-advance-all-minor-versions branch 8 times, most recently from 3fa38b4 to eed2651 Compare August 13, 2024 15:26
@renovate renovate bot force-pushed the renovate/prod-2-9-advance-all-minor-versions branch 4 times, most recently from 65f908c to b79c703 Compare August 20, 2024 17:34
@renovate renovate bot force-pushed the renovate/prod-2-9-advance-all-minor-versions branch 3 times, most recently from f47250b to 59215a4 Compare August 29, 2024 11:34
@renovate renovate bot force-pushed the renovate/prod-2-9-advance-all-minor-versions branch 6 times, most recently from 1343d0a to dc3333c Compare September 1, 2024 22:48
@renovate renovate bot force-pushed the renovate/prod-2-9-advance-all-minor-versions branch from dc3333c to 7e62e27 Compare September 2, 2024 08:15
Copy link
Contributor Author

renovate bot commented Sep 2, 2024

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.

From the artifact of the previous workflow run
@renovate renovate bot merged commit 487482c into prod-2-9-advance Sep 2, 2024
8 checks passed
@renovate renovate bot deleted the renovate/prod-2-9-advance-all-minor-versions branch September 2, 2024 11:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update the dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant