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 #509

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 20, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/internal-helpers (source) ^0.4.2 -> ^0.5.0 age adoption passing confidence
@astrojs/internal-helpers (source) 0.4.2 -> 0.5.0 age adoption passing confidence
@astrojs/solid-js (source) ^5.0.2 -> ^5.0.4 age adoption passing confidence
@astrojs/svelte (source) ^7.0.3 -> ^7.0.4 age adoption passing confidence
@astrojs/vue (source) ^5.0.4 -> ^5.0.6 age adoption passing confidence
@changesets/cli (source) ^2.27.11 -> ^2.27.12 age adoption passing confidence
@cloudflare/workers-types ^4.20250109.0 -> ^4.20250129.0 age adoption passing confidence
@types/node (source) ^22.10.6 -> ^22.13.0 age adoption passing confidence
@vercel/nft ^0.29.0 -> ^0.29.1 age adoption passing confidence
@vercel/routing-utils (source) ^5.0.0 -> ^5.0.2 age adoption passing confidence
astro (source) ^5.1.6 -> ^5.2.3 age adoption passing confidence
eslint (source) ^9.18.0 -> ^9.19.0 age adoption passing confidence
eslint-plugin-prettier ^5.2.1 -> ^5.2.3 age adoption passing confidence
miniflare (source) ^3.20241230.1 -> ^3.20250129.0 age adoption passing confidence
rollup (source) ^4.30.1 -> ^4.34.0 age adoption passing confidence
svelte (source) ^5.17.4 -> ^5.19.6 age adoption passing confidence
turbo (source) ^2.3.3 -> ^2.4.0 age adoption passing confidence
typescript-eslint (source) ^8.20.0 -> ^8.22.0 age adoption passing confidence
vite (source) ^6.0.7 -> ^6.0.11 age adoption passing confidence
wrangler (source) ^3.101.0 -> ^3.107.2 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/internal-helpers)

v0.5.0

Compare Source

Minor Changes
withastro/astro (@​astrojs/solid-js)

v5.0.4

Compare Source

Patch Changes

v5.0.3

Compare Source

Patch Changes
  • #​12887 ea603ae Thanks @​louisescher! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the include or exclude property being set on the integration.
withastro/astro (@​astrojs/svelte)

v7.0.4

Compare Source

Patch Changes
withastro/astro (@​astrojs/vue)

v5.0.6

Compare Source

Patch Changes

v5.0.5

Compare Source

Patch Changes
  • #​12887 ea603ae Thanks @​louisescher! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the include or exclude property being set on the integration.
changesets/changesets (@​changesets/cli)

v2.27.12

Compare Source

Patch Changes
cloudflare/workerd (@​cloudflare/workers-types)

v4.20250129.0

Compare Source

v4.20250124.3

Compare Source

v4.20250121.0

Compare Source

vercel/nft (@​vercel/nft)

v0.29.1

Compare Source

Bug Fixes
vercel/vercel (@​vercel/routing-utils)

v5.0.2

Compare Source

Patch Changes
  • Update routes schema for new limit of 2048 (#​12968)

v5.0.1

Compare Source

Patch Changes
  • log diff between current and updated versions of path-to-regexp (#​12926)
withastro/astro (astro)

v5.2.3

Compare Source

Patch Changes
  • #​13113 3a26e45 Thanks @​unprintable123! - Fixes the bug that rewrite will pass encoded url to the dynamic routing and cause params mismatch.

  • #​13111 23978dd Thanks @​ascorbic! - Fixes a bug that caused injected endpoint routes to return not found when trailingSlash was set to always

  • #​13112 0fa5c82 Thanks @​ematipico! - Fixes a bug where the i18n middleware was blocking a server island request when the prefixDefaultLocale option is set to true

v5.2.2

Compare Source

Patch Changes

v5.2.1

Compare Source

Patch Changes
  • #​13095 740eb60 Thanks @​ascorbic! - Fixes a bug that caused some dev server asset requests to return 404 when trailingSlash was set to "always"

v5.2.0

Compare Source

Minor Changes
  • #​12994 5361755 Thanks @​ascorbic! - Redirects trailing slashes for on-demand pages

    When the trailingSlash option is set to always or never, on-demand rendered pages will now redirect to the correct URL when the trailing slash doesn't match the configuration option. This was previously the case for static pages, but now works for on-demand pages as well.

    Now, it doesn't matter whether your visitor navigates to /about/, /about, or even /about///. In production, they'll always end up on the correct page. For GET requests, the redirect will be a 301 (permanent) redirect, and for all other request methods, it will be a 308 (permanent, and preserve the request method) redirect.

    In development, you'll see a helpful 404 page to alert you of a trailing slash mismatch so you can troubleshoot routes.

  • #​12979 e621712 Thanks @​ematipico! - Adds support for redirecting to external sites with the redirects configuration option.

    Now, you can redirect routes either internally to another path or externally by providing a URL beginning with http or https:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    
    export default defineConfig({
      redirects: {
        '/blog': 'https://example.com/blog',
        '/news': {
          status: 302,
          destination: 'https://example.com/news',
        },
      },
    });
  • #​13084 0f3be31 Thanks @​ematipico! - Adds a new experimental virtual module astro:config that exposes a type-safe subset of your astro.config.mjs configuration

    The virtual module exposes two sub-paths for controlled access to your configuration:

    • astro:config/client: exposes config information that is safe to expose to the client.
    • astro:config/server: exposes additional information that is safe to expose to the server, such as file/dir paths.

    To enable this new virtual module, add the experimental.serializeManifest feature flag to your Astro config:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
      experimental: {
        serializeManifest: true,
      },
    });

    Then, you can access the module in any file inside your project to import and use values from your Astro config:

    // src/utils.js
    import { trailingSlash } from 'astro:config/client';
    
    function addForwardSlash(path) {
      if (trailingSlash === 'always') {
        return path.endsWith('/') ? path : path + '/';
      } else {
        return path;
      }
    }

    For a complete overview, and to give feedback on this experimental API, see the Serialized Manifest RFC.

Patch Changes

v5.1.10

Compare Source

Patch Changes

v5.1.9

Compare Source

Patch Changes

v5.1.8

Compare Source

Patch Changes

v5.1.7

Compare Source

Patch Changes
eslint/eslint (eslint)

v9.19.0

Compare Source

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.3

Compare Source

Patch Changes

v5.2.2

Compare Source

Patch Changes
cloudflare/workers-sdk (miniflare)

v3.20250129.0

Compare Source

Patch Changes

v3.20250124.1

Compare Source

Patch Changes

v3.20250124.0

Compare Source

Patch Changes

v3.20241230.2

Compare Source

Patch Changes
  • #​7738 8e9aa40 Thanks @​penalosa! - Use TEXT bindings for plain text values in Miniflare. This is an internal detail that should have no user facing impact.
rollup/rollup (rollup)

v4.34.0

Compare Source

2025-02-01

Features
  • Tree-shake unused properties in object literals (re-implements #​5420) (#​5737)
Pull Requests

v4.33.0

Compare Source

2025-02-01

Features
  • Correctly detect literal value of more negated expressions (#​5812)
Bug Fixes
  • Use the correct with/assert attribute key in dynamic imports (#​5818)
  • Fix an issue where logical expressions were considered to have the wrong value (#​5819)
Pull Requests

v4.32.1

Compare Source

2025-01-28

Bug Fixes
  • Fix possible crash when optimizing logical expressions (#​5804)
Pull Requests

v4.32.0

Compare Source

2025-01-24

Features
  • Add watch.onInvalidate option to trigger actions immediately when a file is changed (#​5799)
Bug Fixes
  • Fix incorrect urls in CLI warnings (#​5809)
Pull Requests

v4.31.0

Compare Source

2025-01-19

Features
  • Do not immediately quit when trying to use watch mode from within non-TTY environments (#​5803)
Bug Fixes
  • Handle files with more than one UTF-8 BOM header (#​5806)
Pull Requests
sveltejs/svelte (svelte)

v5.19.6

Compare Source

Patch Changes
  • fix: do not prune selectors like :global(.foo):has(.scoped) (#​15140)

  • fix: don't error on slot prop inside block inside other component (#​15148)

  • fix: ensure reactions are correctly attached for unowned deriveds (#​15158)

  • fix: silence a11y attribute warnings when spread attributes present (#​15150)

  • fix: prevent false-positive ownership validations due to hot reload (#​15154)

  • fix: widen ownership when calling setContext (#​15153)

v5.19.5

Compare Source

Patch Changes
  • fix: improve derived connection to ownership graph (#​15137)

  • fix: correctly look for sibling elements inside blocks and components when pruning CSS (#​15106)

v5.19.4

Compare Source

Patch Changes
  • fix: Add bind:focused property to HTMLAttributes type (#​15122)

  • fix: lazily connect derievds (in deriveds) to their parent (#​15129)

  • fix: disallow $state/$derived in const tags (#​15115)

v5.19.3

Compare Source

Patch Changes
  • fix: don't throw for undefined non delegated event handlers (#​15087)

  • fix: consistently set value to blank string when value attribute is undefined (#​15057)

  • fix: optimise || expressions in template (#​15092)

  • fix: correctly handle novalidate attribute casing (#​15083)

  • fix: expand boolean attribute support (#​15095)

  • fix: avoid double deriveds in component props (#​15089)

  • fix: add check for is attribute to correctly detect custom elements (#​15086)

v5.19.2

Compare Source

Patch Changes
  • fix: address regression with untrack (#​15079)

v5.19.1

Compare Source

Patch Changes
  • fix: omit unnecessary nullish coallescing in template expressions (#​15056)

  • fix: more efficient template effect grouping (#​15050)

  • fix: ensure untrack correctly retains the active reaction (#​15065)

  • fix: initialize files bind on hydration (#​15059)

v5.19.0

Compare Source

Minor Changes
  • feat: Expose ClassValue from svelte/elements (#​15035)
Patch Changes
  • fix: create fewer deriveds for concatenated strings (#​15041)

  • fix: correctly parse leading comments in function binding (#​15020)

v5.18.0

Compare Source

Minor Changes
  • feat: allow <template> elements to contain any child (#​15007)
Patch Changes
  • fix: ensure resume effects are scheduled in topological order (#​15012)

  • fix: bump esrap (#​15015)

  • fix: remove listener on bind_current_time teardown (#​15013)

v5.17.5

Compare Source

Patch Changes
  • feat: allow const tag inside svelte:boundary (#​14993)

  • fix: ensure signal write invalidation within effects is consistent (#​14989)

vercel/turborepo (turbo)

v2.4.0: Turborepo v2.4.0

Compare Source

What's Changed

Docs

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (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 was generated by Mend Renovate. View the repository job log.

Copy link

changeset-bot bot commented Jan 20, 2025

⚠️ No Changeset found

Latest commit: 2565a71

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

@github-actions github-actions bot added pkg: cloudflare pkg: netlify pkg: node Related to Node adapter (scope) pkg: vercel Related to Vercel adapter (scope) labels Jan 20, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 16 times, most recently from d651f72 to dd7209b Compare January 25, 2025 00:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 6e13737 to 259a38b Compare January 30, 2025 11:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 6725b57 to 91a4d28 Compare January 31, 2025 20:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 91a4d28 to 2565a71 Compare February 1, 2025 21:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies pkg: cloudflare pkg: netlify pkg: node Related to Node adapter (scope) pkg: vercel Related to Vercel adapter (scope)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants