Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 9, 2024

This PR contains the following updates:

Package Change Age Confidence
@iconify/json (source) 2.2.379 -> 2.2.381 age confidence
@mantine/core (source) 8.2.7 -> 8.2.8 age confidence
@mantine/dates (source) 8.2.7 -> 8.2.8 age confidence
@mantine/form (source) 8.2.7 -> 8.2.8 age confidence
@mantine/hooks (source) 8.2.7 -> 8.2.8 age confidence
@mantine/modals (source) 8.2.7 -> 8.2.8 age confidence
@mantine/notifications (source) 8.2.7 -> 8.2.8 age confidence
@mikro-orm/cli (source) 6.5.1 -> 6.5.2 age confidence
@mikro-orm/core (source) 6.5.1 -> 6.5.2 age confidence
@mikro-orm/migrations (source) 6.5.1 -> 6.5.2 age confidence
@mikro-orm/postgresql (source) 6.5.1 -> 6.5.2 age confidence
@mikro-orm/reflection (source) 6.5.1 -> 6.5.2 age confidence
@mikro-orm/seeder (source) 6.5.1 -> 6.5.2 age confidence
@tanstack/react-router (source) 1.131.28 -> 1.131.35 age confidence
@tanstack/router-devtools (source) 1.131.28 -> 1.131.35 age confidence
@tanstack/router-plugin (source) 1.131.28 -> 1.131.35 age confidence
@types/node (source) 24.3.0 -> 24.3.1 age confidence
astro (source) 5.13.4 -> 5.13.5 age confidence
dayjs (source) 1.11.15 -> 1.11.18 age confidence
jest (source) 30.1.1 -> 30.1.3 age confidence
pnpm (source) 10.15.0 -> 10.15.1 age confidence
serve 14.2.4 -> 14.2.5 age confidence
vite (source) 7.1.3 -> 7.1.4 age confidence

Release Notes

iconify/icon-sets (@​iconify/json)

v2.2.381

Compare Source

v2.2.380

Compare Source

mantinedev/mantine (@​mantine/core)

v8.2.8

Compare Source

What's Changed
  • [@mantine/charts] LineChart: Fix gridColor prop being passed down to the root DOM node
  • [@mantine/carousel] Add data-type="next" and data-type="previous" to controls
  • [@mantine/hooks] use-scroll-spy: Add offset prop support (#​8209)
  • [@mantine/core] ScrollArea: Fix incorrect horizontal size calculations in ScrollArea.Autosize (#​8199)
  • [@mantine/core] JsonInput: Fix font-size not scaling with size prop (#​8206)
  • [@mantine/hooks] Fix incorrect ESM exports for nodenext module resolution (#​8211)
  • [@mantine/hooks] use-document-visibility: Fix initial document visibility state not being set (#​8215)
  • [@mantine/dates] DateTimePicker: Fix onDropdownClose not working (#​8212)
New Contributors

Full Changelog: mantinedev/mantine@8.2.7...8.2.8

mikro-orm/mikro-orm (@​mikro-orm/cli)

v6.5.2

Compare Source

Bug Fixes
  • core: process owning sides of M:N relations in em.assign with onlyOwnProperties (#​6822) (099869f), closes #​6813
  • migrations: improve extraction of Migration class (2dacc4b), closes #​6817
  • query-builder: fix aliasing of conditions targeting a nested composite FK (b159342), closes #​6819
  • query-builder: fix join conditions targeting a composite FK (3f88e9b), closes #​6819
  • query-builder: fix processing deeply nested joins (d033729), closes #​6818
  • query-builder: hydrate lazy properties regardless of populate hint (8b45281)
TanStack/router (@​tanstack/react-router)

v1.131.35

Compare Source

Version 1.131.35 - 9/4/25, 8:48 AM

Changes
Fix
  • router-core: reduce maskedLocation builds (#​5081) (cb0b692) by Nico Lynzaad
Ci
  • apply automated fixes (f158256) by autofix-ci[bot]
Docs
  • Adding note regarding yarn workspace usage (#​5073) (540a2bd) by HaydenB
Packages

v1.131.34

Compare Source

Version 1.131.34 - 9/3/25, 7:55 PM

Changes
Refactor
Packages

v1.131.33

Compare Source

Version 1.131.33 - 9/3/25, 4:50 PM

Changes

Fix
Docs

Packages

v1.131.32

Compare Source

Version 1.131.32 - 9/2/25, 12:31 PM

Changes

Refactor
Ci
  • apply automated fixes (5b5f792) by autofix-ci[bot]
Docs
  • Use named component in react quick-start (#​5061) (0ee993b) by Noah Silas

Packages

v1.131.31

Compare Source

Version 1.131.31 - 8/31/25, 11:50 AM

Changes
Fix
  • react-router, solid-router: reduce useNavigate reactivity on path changes (#​5037) (fb04daf) by Nico Lynzaad
Packages

v1.131.30

Compare Source

Version 1.131.30 - 8/30/25, 1:22 PM

Changes

Refactor

Packages

withastro/astro (astro)

v5.13.5

Compare Source

Patch Changes
  • #​14286 09c5db3 Thanks @​ematipico! - BREAKING CHANGES only to the experimental CSP feature

    The following runtime APIs of the Astro global have been renamed:

    • Astro.insertDirective to Astro.csp.insertDirective
    • Astro.insertStyleResource to Astro.csp.insertStyleResource
    • Astro.insertStyleHash to Astro.csp.insertStyleHash
    • Astro.insertScriptResource to Astro.csp.insertScriptResource
    • Astro.insertScriptHash to Astro.csp.insertScriptHash

    The following runtime APIs of the APIContext have been renamed:

    • ctx.insertDirective to ctx.csp.insertDirective
    • ctx.insertStyleResource to ctx.csp.insertStyleResource
    • ctx.insertStyleHash to ctx.csp.insertStyleHash
    • ctx.insertScriptResource to ctx.csp.insertScriptResource
    • ctx.insertScriptHash to ctx.csp.insertScriptHash
  • #​14283 3224637 Thanks @​ematipico! - Fixes an issue where CSP headers were incorrectly injected in the development server.

  • #​14275 3e2f20d Thanks @​florian-lefebvre! - Adds support for experimental CSP when using experimental fonts

    Experimental fonts now integrate well with experimental CSP by injecting hashes for the styles it generates, as well as font-src directives.

    No action is required to benefit from it.

  • #​14280 4b9fb73 Thanks @​ascorbic! - Fixes a bug that caused cookies to not be correctly set when using middleware sequences

  • #​14276 77281c4 Thanks @​ArmandPhilippot! - Adds a missing export for resolveSrc, a documented image services utility.

iamkun/dayjs (dayjs)

v1.11.18

Compare Source

v1.11.17

Compare Source

Bug Fixes

v1.11.16

Compare Source

jestjs/jest (jest)

v30.1.3

Compare Source

Fixes
  • Fix unstable_mockModule with node: prefixed core modules.

v30.1.2

Compare Source

pnpm/pnpm (pnpm)

v10.15.1

Compare Source

Patch Changes
  • Fix .pnp.cjs crash when importing subpath #​9904.
  • When resolving peer dependencies, pnpm looks whether the peer dependency is present in the root workspace project's dependencies. This change makes it so that the peer dependency is correctly resolved even from aliased npm-hosted dependencies or other types of dependencies #​9913.
vercel/serve (serve)

v14.2.5

Compare Source

Patch Changes
  • f4b6fbd: Update compression to v1.8.1
vitejs/vite (vite)

v7.1.4

Compare Source

Bug Fixes
Miscellaneous Chores
Code Refactoring

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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.

Copy link

changeset-bot bot commented Dec 9, 2024

⚠️ No Changeset found

Latest commit: 825b37b

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/likely-non-breaking-dependencies branch from 30fb608 to f26f3b5 Compare December 9, 2024 21:03
Copy link

codecov bot commented Dec 9, 2024

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 16.91%. Comparing base (497b0d6) to head (825b37b).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #188   +/-   ##
=======================================
  Coverage   16.91%   16.91%           
=======================================
  Files         132      132           
  Lines        3990     3990           
  Branches      128      134    +6     
=======================================
  Hits          675      675           
  Misses       3255     3255           
  Partials       60       60           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot changed the title chore(deps): update likely non breaking dependencies fix(deps): update likely non breaking dependencies Dec 10, 2024
@renovate renovate bot force-pushed the renovate/likely-non-breaking-dependencies branch 11 times, most recently from b3ef166 to 164df74 Compare December 17, 2024 10:35
@renovate renovate bot force-pushed the renovate/likely-non-breaking-dependencies branch 9 times, most recently from 40e1234 to e06a431 Compare December 24, 2024 03:14
@renovate renovate bot force-pushed the renovate/likely-non-breaking-dependencies branch 3 times, most recently from 46168e8 to db61faf Compare December 30, 2024 09:21
@renovate renovate bot force-pushed the renovate/likely-non-breaking-dependencies branch 3 times, most recently from 1f33b93 to 3bd50af Compare January 6, 2025 18:16
@renovate renovate bot changed the title fix(deps): update likely non breaking dependencies to v1.131.25 fix(deps): update likely non breaking dependencies to v1.131.26 Aug 18, 2025
@renovate renovate bot force-pushed the renovate/likely-non-breaking-dependencies branch from b00118d to 56f6ee2 Compare August 19, 2025 04:26
@renovate renovate bot changed the title fix(deps): update likely non breaking dependencies to v1.131.26 fix(deps): update likely non breaking dependencies Aug 19, 2025
@renovate renovate bot force-pushed the renovate/likely-non-breaking-dependencies branch 7 times, most recently from 6ca41b8 to 0301d18 Compare August 26, 2025 08:13
@renovate renovate bot force-pushed the renovate/likely-non-breaking-dependencies branch 3 times, most recently from 685f4f8 to 3742006 Compare August 28, 2025 06:33
@renovate renovate bot changed the title fix(deps): update likely non breaking dependencies fix(deps): update likely non breaking dependencies - autoclosed Aug 28, 2025
@renovate renovate bot closed this Aug 28, 2025
@renovate renovate bot changed the title fix(deps): update likely non breaking dependencies - autoclosed fix(deps): update likely non breaking dependencies Aug 31, 2025
@renovate renovate bot reopened this Aug 31, 2025
@renovate renovate bot force-pushed the renovate/likely-non-breaking-dependencies branch 11 times, most recently from 2b90736 to 9804d01 Compare September 4, 2025 10:12
@renovate renovate bot force-pushed the renovate/likely-non-breaking-dependencies branch from 9804d01 to 825b37b Compare September 4, 2025 14:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants