Skip to content

Commit 8447667

Browse files
chore(deps): update all non-major dependencies, except python (#337)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [pre-commit](https://redirect.github.com/pre-commit/pre-commit) | `4.5.0` -> `4.5.1` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/pre-commit/4.5.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pre-commit/4.5.0/4.5.1?slim=true) | | [pystrich](https://redirect.github.com/mmulqueen/pyStrich) | `0.9` -> `0.10` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/pystrich/0.10?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pystrich/0.9/0.10?slim=true) | | [sass](https://redirect.github.com/sass/dart-sass) | [`1.96.0` -> `1.97.0`](https://renovatebot.com/diffs/npm/sass/1.96.0/1.97.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.97.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.96.0/1.97.0?slim=true) | | [sentry-sdk](https://redirect.github.com/getsentry/sentry-python) ([changelog](https://redirect.github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)) | `2.47.0` -> `2.48.0` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/sentry-sdk/2.48.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/sentry-sdk/2.47.0/2.48.0?slim=true) | | [webpack](https://redirect.github.com/webpack/webpack) | [`5.103.0` -> `5.104.0`](https://renovatebot.com/diffs/npm/webpack/5.103.0/5.104.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/webpack/5.104.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/webpack/5.103.0/5.104.0?slim=true) | --- ### Release Notes <details> <summary>pre-commit/pre-commit (pre-commit)</summary> ### [`v4.5.1`](https://redirect.github.com/pre-commit/pre-commit/blob/HEAD/CHANGELOG.md#451---2025-12-16) [Compare Source](https://redirect.github.com/pre-commit/pre-commit/compare/v4.5.0...v4.5.1) \================== ##### Fixes - Fix `language: python` with `repo: local` without `additional_dependencies`. - [#&#8203;3597](https://redirect.github.com/pre-commit/pre-commit/issues/3597) PR by [@&#8203;asottile](https://redirect.github.com/asottile). </details> <details> <summary>mmulqueen/pyStrich (pystrich)</summary> ### [`v0.10`](https://redirect.github.com/mmulqueen/pyStrich/releases/tag/v0.10) [Compare Source](https://redirect.github.com/mmulqueen/pyStrich/compare/v0.9...v0.10) Make quiet zone configurable fof DataMatrix ([#&#8203;17](https://redirect.github.com/mmulqueen/pyStrich/issues/17)). Confirm Python 3.13 compatibility. </details> <details> <summary>sass/dart-sass (sass)</summary> ### [`v1.97.0`](https://redirect.github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1970) [Compare Source](https://redirect.github.com/sass/dart-sass/compare/1.96.0...1.97.0) - Add support for the `display-p3-linear` color space. </details> <details> <summary>getsentry/sentry-python (sentry-sdk)</summary> ### [`v2.48.0`](https://redirect.github.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#2480) [Compare Source](https://redirect.github.com/getsentry/sentry-python/compare/2.47.0...2.48.0) Middleware spans are now disabled by default in Django, Starlette and FastAPI integrations. Set the `middleware_spans` integration-level option to capture individual spans per middleware layer. To record Django middleware spans, for example, configure as follows ```python import sentry_sdk from sentry_sdk.integrations.django import DjangoIntegration sentry_sdk.init( dsn="<your-dsn>", integrations=[ DjangoIntegration(middleware_spans=True), ], ) ``` ##### New Features ✨ - feat(ai): add single message truncation by [@&#8203;shellmayr](https://redirect.github.com/shellmayr) in [#&#8203;5079](https://redirect.github.com/getsentry/sentry-python/pull/5079) - feat(django): Add span around `Task.enqueue` by [@&#8203;sentrivana](https://redirect.github.com/sentrivana) in [#&#8203;5209](https://redirect.github.com/getsentry/sentry-python/pull/5209) - feat(starlette): Set transaction name when middleware spans are disabled by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5223](https://redirect.github.com/getsentry/sentry-python/pull/5223) - feat: Add "K\_REVISION" to environment variable release check (exposed by cloud run) by [@&#8203;rpradal](https://redirect.github.com/rpradal) in [#&#8203;5222](https://redirect.github.com/getsentry/sentry-python/pull/5222) ##### Langgraph - feat(langgraph): Response model attribute on invocation spans by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5212](https://redirect.github.com/getsentry/sentry-python/pull/5212) - feat(langgraph): Usage attributes on invocation spans by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5211](https://redirect.github.com/getsentry/sentry-python/pull/5211) ##### OTLP - feat(otlp): Optionally capture exceptions from otel's Span.record\_exception api by [@&#8203;sl0thentr0py](https://redirect.github.com/sl0thentr0py) in [#&#8203;5235](https://redirect.github.com/getsentry/sentry-python/pull/5235) - feat(otlp): Implement new Propagator.inject for OTLPIntegration by [@&#8203;sl0thentr0py](https://redirect.github.com/sl0thentr0py) in [#&#8203;5221](https://redirect.github.com/getsentry/sentry-python/pull/5221) ##### Bug Fixes 🐛 ##### Integrations - fix(django): Set active thread ID when middleware spans are disabled by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5220](https://redirect.github.com/getsentry/sentry-python/pull/5220) - fix(integrations): openai-agents fixing the input messages structure which was wrapped too much in some cases by [@&#8203;constantinius](https://redirect.github.com/constantinius) in [#&#8203;5203](https://redirect.github.com/getsentry/sentry-python/pull/5203) - fix(integrations): openai-agents fix multi-patching of `get_model` function by [@&#8203;constantinius](https://redirect.github.com/constantinius) in [#&#8203;5195](https://redirect.github.com/getsentry/sentry-python/pull/5195) - fix(integrations): add values for pydantic-ai and openai-agents to `_INTEGRATION_DEACTIVATES` to prohibit double span creation by [@&#8203;constantinius](https://redirect.github.com/constantinius) in [#&#8203;5196](https://redirect.github.com/getsentry/sentry-python/pull/5196) - fix(logs): Set `span_id` instead of `sentry.trace.parent_span_id` attribute by [@&#8203;sentrivana](https://redirect.github.com/sentrivana) in [#&#8203;5241](https://redirect.github.com/getsentry/sentry-python/pull/5241) - fix(logs, metrics): Gate metrics, logs user attributes behind `send_default_pii` by [@&#8203;sentrivana](https://redirect.github.com/sentrivana) in [#&#8203;5240](https://redirect.github.com/getsentry/sentry-python/pull/5240) - fix(pydantic-ai): Stop capturing internal exceptions by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5237](https://redirect.github.com/getsentry/sentry-python/pull/5237) - fix(ray): Actor class decorator with arguments by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5230](https://redirect.github.com/getsentry/sentry-python/pull/5230) - fix: Don't log internal exception for tornado user auth by [@&#8203;sl0thentr0py](https://redirect.github.com/sl0thentr0py) in [#&#8203;5208](https://redirect.github.com/getsentry/sentry-python/pull/5208) - fix: Fix changelog config by [@&#8203;sentrivana](https://redirect.github.com/sentrivana) in [#&#8203;5192](https://redirect.github.com/getsentry/sentry-python/pull/5192) ##### Internal Changes 🔧 - chore(django): Disable middleware spans by default by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5219](https://redirect.github.com/getsentry/sentry-python/pull/5219) - chore(starlette): Disable middleware spans by default by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5224](https://redirect.github.com/getsentry/sentry-python/pull/5224) - ci: Unpin Python version for LiteLLM tests by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5238](https://redirect.github.com/getsentry/sentry-python/pull/5238) - ci: 🤖 Update test matrix with new releases (12/15) by [@&#8203;github-actions](https://redirect.github.com/github-actions) in [#&#8203;5229](https://redirect.github.com/getsentry/sentry-python/pull/5229) - chore: Ignore type annotation migration in blame by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5234](https://redirect.github.com/getsentry/sentry-python/pull/5234) - ref: Clean up get\_active\_propagation\_context by [@&#8203;sl0thentr0py](https://redirect.github.com/sl0thentr0py) in [#&#8203;5217](https://redirect.github.com/getsentry/sentry-python/pull/5217) - ref: Cleanup outgoing propagation\_context logic by [@&#8203;sl0thentr0py](https://redirect.github.com/sl0thentr0py) in [#&#8203;5215](https://redirect.github.com/getsentry/sentry-python/pull/5215) - ci: Pin Python version to at least 3.10 for LiteLLM by [@&#8203;alexander-alderman-webb](https://redirect.github.com/alexander-alderman-webb) in [#&#8203;5202](https://redirect.github.com/getsentry/sentry-python/pull/5202) - test: Remove skipped test by [@&#8203;sentrivana](https://redirect.github.com/sentrivana) in [#&#8203;5197](https://redirect.github.com/getsentry/sentry-python/pull/5197) - Convert all remaining type annotations into the modern format by [@&#8203;zsol](https://redirect.github.com/zsol) in [#&#8203;5239](https://redirect.github.com/getsentry/sentry-python/pull/5239) - Convert sentry\_sdk type annotations into the modern format by [@&#8203;zsol](https://redirect.github.com/zsol) in [#&#8203;5206](https://redirect.github.com/getsentry/sentry-python/pull/5206) </details> <details> <summary>webpack/webpack (webpack)</summary> ### [`v5.104.0`](https://redirect.github.com/webpack/webpack/blob/HEAD/CHANGELOG.md#51040) [Compare Source](https://redirect.github.com/webpack/webpack/compare/v5.103.0...v5.104.0) ##### Minor Changes - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Use method shorthand to render module content in `__webpack_modules__` object. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Enhance `import.meta.env` to support object access. - [`4baab4e`](https://redirect.github.com/webpack/webpack/commit/4baab4e): Optimize dependency sorting in updateParent: sort each module only once by deferring to finishUpdateParent(), and reduce traversal count in sortWithSourceOrder by caching WeakMap values upfront. - [`04cd530`](https://redirect.github.com/webpack/webpack/commit/04cd530): Handle more at-rules for CSS modules. - [`cafae23`](https://redirect.github.com/webpack/webpack/commit/cafae23): Added options to control the renaming of at-rules and various identifiers in CSS modules. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Added `base64url`, `base62`, `base58`, `base52`, `base49`, `base36`, `base32` and `base25` digests. - [`5983843`](https://redirect.github.com/webpack/webpack/commit/5983843): Provide a stable runtime function variable `__webpack_global__`. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Improved `localIdentName` hashing for CSS. ##### Patch Changes - [`22c48fb`](https://redirect.github.com/webpack/webpack/commit/22c48fb): Added module existence check for informative error message in development mode. - [`50689e1`](https://redirect.github.com/webpack/webpack/commit/50689e1): Use the fully qualified class name (or export name) for `[fullhash]` placeholder in CSS modules. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Support universal lazy compilation. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Fixed module library export definitions when multiple runtimes. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Fixed CSS nesting and CSS custom properties parsing. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Don't write fragment from URL to filename and apply fragment to module URL. - [`aab1da9`](https://redirect.github.com/webpack/webpack/commit/aab1da9): Fixed bugs for `css/global` type. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Compatibility `import.meta.filename` and `import.meta.dirname` with `eval` devtools. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Handle nested `__webpack_require__`. - [`728ddb7`](https://redirect.github.com/webpack/webpack/commit/728ddb7): The speed of identifier parsing has been improved. - [`0f8b31b`](https://redirect.github.com/webpack/webpack/commit/0f8b31b): Improve types. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Don't corrupt `debugId` injection when `hidden-source-map` is used. - [`2179fdb`](https://redirect.github.com/webpack/webpack/commit/2179fdb): Re-validate HttpUriPlugin redirects against allowedUris, restrict to http(s) and add a conservative redirect limit to prevent SSRF and untrusted content inclusion. Redirects failing policy are rejected before caching/lockfile writes. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Serialize `HookWebpackError`. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Added ability to use built-in properties in dotenv and define plugin. - [`3c4319f`](https://redirect.github.com/webpack/webpack/commit/3c4319f): Optimizing the regular expression character class by specifying ranges for runtime code. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Reduce collision for local indent name in CSS. - [`d3dd841`](https://redirect.github.com/webpack/webpack/commit/d3dd841): Remove CSS link tags when CSS imports are removed. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/flipdot/drinks-touch). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41NC4yIiwidXBkYXRlZEluVmVyIjoiNDIuNTQuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 3ee4d7e commit 8447667

File tree

4 files changed

+87
-87
lines changed

4 files changed

+87
-87
lines changed

drinks_touch/webserver/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
"postcss": "8.5.6",
3434
"postcss-loader": "8.2.0",
3535
"resolve-url-loader": "5.0.0",
36-
"sass": "1.96.0",
36+
"sass": "1.97.0",
3737
"sass-loader": "16.0.6",
3838
"style-loader": "4.0.0",
3939
"terser-webpack-plugin": "5.3.16",
4040
"typescript": "5.9.3",
4141
"url-loader": "4.1.1",
42-
"webpack": "5.103.0",
42+
"webpack": "5.104.0",
4343
"webpack-cli": "6.0.1"
4444
}
4545
}

0 commit comments

Comments
 (0)