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

fix(deps): update all non-major dependencies #11015

Merged
merged 2 commits into from
May 13, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 13, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/check (source) ^0.5.5 -> ^0.6.0 age adoption passing confidence
@astrojs/react (source) ^3.0.10 -> ^3.3.4 age adoption passing confidence
@fontsource/monofett (source) 5.0.17 -> 5.0.20 age adoption passing confidence
@fontsource/montserrat (source) 5.0.15 -> 5.0.18 age adoption passing confidence
@nanostores/preact ^0.5.0 -> ^0.5.1 age adoption passing confidence
@preact/signals (source) 1.2.1 -> 1.2.3 age adoption passing confidence
@solidjs/router ^0.9.1 -> ^0.13.3 age adoption passing confidence
@types/alpinejs (source) ^3.13.5 -> ^3.13.10 age adoption passing confidence
@types/canvas-confetti (source) ^1.6.3 -> ^1.6.4 age adoption passing confidence
@types/react (source) ^18.3.1 -> ^18.3.2 age adoption passing confidence
@types/react (source) ^18.2.57 -> ^18.3.2 age adoption passing confidence
@types/react (source) ^18.2.37 -> ^18.3.2 age adoption passing confidence
@types/react-dom (source) ^18.2.19 -> ^18.3.0 age adoption passing confidence
@types/react-dom (source) ^18.2.15 -> ^18.3.0 age adoption passing confidence
@vercel/nft ^0.26.5 -> ^0.27.0 age adoption passing confidence
alpinejs (source) ^3.13.3 -> ^3.13.10 age adoption passing confidence
astro-embed (source) ^0.6.0 -> ^0.7.2 age adoption passing confidence
astro-remote 0.2.4 -> 0.3.3 age adoption passing confidence
autoprefixer ^10.4.15 -> ^10.4.19 age adoption passing confidence
canvas-confetti ^1.9.1 -> ^1.9.3 age adoption passing confidence
chai (source) ^5.1.0 -> ^5.1.1 age adoption passing confidence
esbuild ^0.21.1 -> ^0.21.2 age adoption passing confidence
linkedom ^0.16.11 -> ^0.18.0 age adoption passing confidence
lit (source) ^3.1.0 -> ^3.1.3 age adoption passing confidence
lit (source) ^3.1.2 -> ^3.1.3 age adoption passing confidence
nanostores ^0.9.5 -> ^0.10.3 age adoption passing confidence
open-props ^1.6.17 -> ^1.7.4 age adoption passing confidence
postcss (source) ^8.4.28 -> ^8.4.38 age adoption passing confidence
postcss-preset-env (source) ^9.3.0 -> ^9.5.12 age adoption passing confidence
sass ^1.77.0 -> ^1.77.1 age adoption passing confidence
semver ^7.6.1 -> ^7.6.2 age adoption passing confidence
shiki (source) ^1.5.0 -> ^1.5.1 age adoption passing confidence
simple-stack-form (source) ^0.1.10 -> ^0.1.12 age adoption passing confidence
tailwindcss (source) ^3.3.5 -> ^3.4.3 age adoption passing confidence
typescript (source) ^5.3.2 -> ^5.4.5 age adoption passing confidence
vite-svg-loader 5.0.1 -> 5.1.0 age adoption passing confidence
zod (source) ^3.22.4 -> ^3.23.8 age adoption passing confidence

Release Notes

withastro/language-tools (@​astrojs/check)

v0.6.0

Compare Source

Minor Changes
  • 65d3425: Upgrades the language server to use Volar 2.2. This changes should have no negative impacts on the experience.
Patch Changes

v0.5.10

Compare Source

Patch Changes

v0.5.9

Compare Source

Patch Changes

v0.5.8

Compare Source

Patch Changes
  • 85b42dc: Update to the latest version of Volar. This release fixes a few issues such as missing Prettier crashing the language server in some cases, resolutions not working correctly inside TSX files, and more.
  • Updated dependencies [85b42dc]

v0.5.7

Compare Source

Patch Changes

v0.5.6

Compare Source

Patch Changes

v0.5.5

Compare Source

Patch Changes

v0.5.4

Compare Source

Patch Changes

v0.5.3

Compare Source

Patch Changes

v0.5.2

Compare Source

Patch Changes

v0.5.1

Compare Source

Patch Changes

v0.5.0

Compare Source

Minor Changes
  • 15a5532: Upgrade to Volar 2.0. No regressions are currently expected, however as this is a fairly consequential backend change, please report any issues you encounter.

    For reference, Volar is the underlying framework that powers the Astro language server, you can think of it as Vite for editor tooling.

Patch Changes

v0.4.1

Compare Source

Patch Changes

v0.4.0

Compare Source

Minor Changes
  • a314bcc: Remove temporary workaround astro check that disabled checking JSX and TSX files
Patch Changes

v0.3.4

Compare Source

Patch Changes

v0.3.3

Compare Source

Patch Changes

v0.3.2

Compare Source

Patch Changes
  • 621320a: Fix language server crashing when encountering malformed files in certain cases
  • dc98b0b: Fixes an issue where type checking errors were shown on define:vars scripts when "type=module" attribute was also present.
  • Updated dependencies [621320a]
  • Updated dependencies [dc98b0b]
  • Updated dependencies [015a667]
  • Updated dependencies [598689a]
withastro/astro (@​astrojs/react)

v3.3.4

Compare Source

Patch Changes

v3.3.3

Compare Source

Patch Changes

v3.3.2

Compare Source

Patch Changes

v3.3.1

Compare Source

Patch Changes

v3.3.0

Compare Source

Minor Changes

v3.2.0

Compare Source

Minor Changes

v3.1.1

Compare Source

Patch Changes

v3.1.0

Compare Source

Minor Changes
  • #​10136 9cd84bd19b92fb43ae48809f575ee12ebd43ea8f Thanks @​matthewp! - Changes the default behavior of transition:persist to update the props of persisted islands upon navigation. Also adds a new view transitions option transition:persist-props (default: false) to prevent props from updating as needed.

    Islands which have the transition:persist property to keep their state when using the <ViewTransitions /> router will now have their props updated upon navigation. This is useful in cases where the component relies on page-specific props, such as the current page title, which should update upon navigation.

    For example, the component below is set to persist across navigation. This component receives a products props and might have some internal state, such as which filters are applied:

    <ProductListing transition:persist products={products} />

    Upon navigation, this component persists, but the desired products might change, for example if you are visiting a category of products, or you are performing a search.

    Previously the props would not change on navigation, and your island would have to handle updating them externally, such as with API calls.

    With this change the props are now updated, while still preserving state.

    You can override this new default behavior on a per-component basis using transition:persist-props=true to persist both props and state during navigation:

    <ProductListing transition:persist-props="true" products={products} />
fontsource/font-files (@​fontsource/monofett)

v5.0.20

Compare Source

v5.0.19

Compare Source

v5.0.18

Compare Source

fontsource/font-files (@​fontsource/montserrat)

v5.0.18

Compare Source

v5.0.17

Compare Source

v5.0.16

Compare Source

preactjs/signals (@​preact/signals)

v1.2.3

Compare Source

Patch Changes

v1.2.2

Compare Source

Patch Changes
solidjs/solid-router (@​solidjs/router)

v0.13.3

Patch Changes

v0.13.2

Patch Changes
  • 0a34883: preserve original path on optional segments
  • 94797e1: Fix types for cache functions with all optional arguments
  • 8a547a8: don't submit form when submit event is defaultPrevented

v0.13.1

Patch Changes
  • 8b766a9: restore params into root

v0.13.0

Minor Changes
Patch Changes
  • 83e827d: minimum types for submission flash
  • 6df4a7a: push root/rootLoad outside of route matching

v0.12.5

Patch Changes

v0.12.4

Patch Changes
  • 533b7a0: fix unintended early return in cache during server render

v0.12.3

Patch Changes
  • 02c6e7a: action to return fully processed response

v0.12.2

Patch Changes
  • 5e8cbdb: apply the right owner (who's aware of the router)

v0.12.1

Patch Changes
  • 6d0be9e: fix cache serialization to match returned value
  • 052d385: Run load functions with owner & context of Router component.

v0.12.0

Minor Changes
  • 17ea145: add createAsyncStorage, prev argument, remove store from cache

v0.11.5

Patch Changes
  • 0413594: fix memory router no native events
  • 97d387b: add rootLoad
  • 5a94e7d: fix Router types, make singleFlight optional

v0.11.4

Patch Changes
  • d67ccbb: single flight mutations
  • 76724af: pass revalidate through json helper

v0.11.3

Patch Changes
  • 9cc1a85: update response types to be always present

v0.11.2

Patch Changes
  • fab3cc0: fix renderToString for cache fns

v0.11.1

Patch Changes

v0.11.0

Minor Changes
vercel/nft (@​vercel/nft)

v0.27.0

Compare Source

Features
  • support import assertions ([#​417](http

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label May 13, 2024
Copy link

changeset-bot bot commented May 13, 2024

⚠️ No Changeset found

Latest commit: ac43176

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.

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

@github-actions github-actions bot added feat: markdown Related to Markdown (scope) pkg: vue Related to Vue (scope) pkg: example Related to an example package (scope) pkg: react Related to React (scope) pkg: lit Related to Lit (scope) pkg: integration Related to any renderer integration (scope) pkg: astro Related to the core `astro` package (scope) labels May 13, 2024
@bluwy bluwy merged commit cb2586f into main May 13, 2024
14 checks passed
@bluwy bluwy deleted the renovate/all-minor-patch branch May 13, 2024 08:19
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 feat: markdown Related to Markdown (scope) pkg: astro Related to the core `astro` package (scope) pkg: example Related to an example package (scope) pkg: integration Related to any renderer integration (scope) pkg: lit Related to Lit (scope) pkg: react Related to React (scope) pkg: vue Related to Vue (scope)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant