camptocamp / c2cwsgiutils

BSD 2-Clause "Simplified" License
6 stars 3 forks source link

Update all minor versions (master) (minor) #2424

Closed renovate[bot] closed 2 weeks ago

renovate[bot] commented 2 weeks ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
lxml (source, changelog) 5.2.2 -> 5.3.0 age adoption passing confidence
sentry-sdk (changelog) 2.12.0 -> 2.13.0 age adoption passing confidence

Release Notes

lxml/lxml (lxml) ### [`v5.3.0`](https://togithub.com/lxml/lxml/blob/HEAD/CHANGES.txt#530-2024-08-10) [Compare Source](https://togithub.com/lxml/lxml/compare/lxml-5.2.2...lxml-5.3.0) \================== ## Features added - [GH#421](https://togithub.com/GH/lxml/issues/421): Nested `CDATA` sections are no longer rejected but split on output to represent `]]>` correctly. Patch by Gertjan Klein. ## Bugs fixed - [LP#2060160](https://togithub.com/LP/lxml/issues/2060160): Attribute values serialised differently in `xmlfile.element()` and `xmlfile.write()`. - [LP#2058177](https://togithub.com/LP/lxml/issues/2058177): The ISO-Schematron implementation could fail on unknown prefixes. Patch by David Lakin. ## Other changes - [LP#2067707](https://togithub.com/LP/lxml/issues/2067707): The `strip_cdata` option in `HTMLParser()` turned out to be useless and is now deprecated. - Binary wheels use the library versions libxml2 2.12.9 and libxslt 1.1.42. - Windows binary wheels use the library versions libxml2 2.11.8 and libxslt 1.1.39. - Built with Cython 3.0.11.
getsentry/sentry-python (sentry-sdk) ### [`v2.13.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#2130) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.12.0...2.13.0) ##### Various fixes & improvements - **New integration:** [Ray](https://docs.sentry.io/platforms/python/integrations/ray/) ([#​2400](https://togithub.com/getsentry/sentry-python/issues/2400)) ([#​2444](https://togithub.com/getsentry/sentry-python/issues/2444)) by [@​glowskir](https://togithub.com/glowskir) Usage: (add the RayIntegration to your `sentry_sdk.init()` call and make sure it is called in the worker processes) ```python 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](https://docs.sentry.io/platforms/python/integrations/ray/). - **New integration:** [Litestar](https://docs.sentry.io/platforms/python/integrations/litestar/) ([#​2413](https://togithub.com/getsentry/sentry-python/issues/2413)) ([#​3358](https://togithub.com/getsentry/sentry-python/issues/3358)) by [@​KellyWalker](https://togithub.com/KellyWalker) Usage: (add the LitestarIntegration to your `sentry_sdk.init()`) ```python 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](https://docs.sentry.io/platforms/python/integrations/litestar/). - **New integration:** [Dramatiq](https://docs.sentry.io/platforms/python/integrations/dramatiq/) from [@​jacobsvante](https://togithub.com/jacobsvante) ([#​3397](https://togithub.com/getsentry/sentry-python/issues/3397)) by [@​antonpirker](https://togithub.com/antonpirker) Usage: (add the DramatiqIntegration to your `sentry_sdk.init()`) ```python 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](https://docs.sentry.io/platforms/python/integrations/dramatiq/). - **New config option:** Expose `custom_repr` function that precedes `safe_repr` invocation in serializer ([#​3438](https://togithub.com/getsentry/sentry-python/issues/3438)) by [@​sl0thentr0py](https://togithub.com/sl0thentr0py) See: https://docs.sentry.io/platforms/python/configuration/options/#custom-repr - Profiling: Add client SDK info to profile chunk ([#​3386](https://togithub.com/getsentry/sentry-python/issues/3386)) by [@​Zylphrex](https://togithub.com/Zylphrex) - Serialize vars early to avoid living references ([#​3409](https://togithub.com/getsentry/sentry-python/issues/3409)) by [@​sl0thentr0py](https://togithub.com/sl0thentr0py) - Deprecate hub-based `sessions.py` logic ([#​3419](https://togithub.com/getsentry/sentry-python/issues/3419)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Deprecate `is_auto_session_tracking_enabled` ([#​3428](https://togithub.com/getsentry/sentry-python/issues/3428)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Add note to generated yaml files ([#​3423](https://togithub.com/getsentry/sentry-python/issues/3423)) by [@​sentrivana](https://togithub.com/sentrivana) - Slim down PR template ([#​3382](https://togithub.com/getsentry/sentry-python/issues/3382)) by [@​sentrivana](https://togithub.com/sentrivana) - Use new banner in readme ([#​3390](https://togithub.com/getsentry/sentry-python/issues/3390)) by [@​sentrivana](https://togithub.com/sentrivana)

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.



This PR was generated by Mend Renovate. View the repository job log.