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

Merged
merged 1 commit into from Apr 15, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 15, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/vue (source) ^4.0.11 -> ^4.1.0 age adoption passing confidence
@rspack/core (source) ^0.6.0 -> ^0.6.1 age adoption passing confidence
@sxzz/eslint-config ^3.9.0 -> ^3.9.1 age adoption passing confidence
@types/node (source) ^20.12.6 -> ^20.12.7 age adoption passing confidence
@unocss/nuxt (source) ^0.59.0 -> ^0.59.2 age adoption passing confidence
@unocss/reset ^0.59.0 -> ^0.59.2 age adoption passing confidence
@vitest/coverage-v8 (source) ^1.4.0 -> ^1.5.0 age adoption passing confidence
@vitest/ui (source) ^1.4.0 -> ^1.5.0 age adoption passing confidence
astro (source) ^4.5.17 -> ^4.6.1 age adoption passing confidence
pnpm (source) 8.15.6 -> 8.15.7 age adoption passing confidence
rollup (source) ^4.14.1 -> ^4.14.2 age adoption passing confidence
shiki (source) ^1.2.4 -> ^1.3.0 age adoption passing confidence
typescript (source) ~5.4.4 -> ~5.4.5 age adoption passing confidence
unocss ^0.59.0 -> ^0.59.2 age adoption passing confidence
vite-plugin-vue-devtools (source) ^7.0.25 -> ^7.0.27 age adoption passing confidence
vitest (source) ^1.4.0 -> ^1.5.0 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/vue)

v4.1.0

Compare Source

Minor Changes
web-infra-dev/rspack (@​rspack/core)

v0.6.1

Compare Source

sxzz/eslint-config (@​sxzz/eslint-config)

v3.9.1

Compare Source

   🚀 Features
    View changes on GitHub
unocss/unocss (@​unocss/nuxt)

v0.59.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.59.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vitest-dev/vitest (@​vitest/coverage-v8)

v1.5.0

Compare Source

vitest-dev/vitest (@​vitest/ui)

v1.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
withastro/astro (astro)

v4.6.1

Compare Source

Patch Changes

v4.6.0

Compare Source

Minor Changes
  • #​10591 39988ef8e2c4c4888543c973e06d9b9939e4ac95 Thanks @​mingjunlu! - Adds a new dev toolbar settings option to change the horizontal placement of the dev toolbar on your screen: bottom left, bottom center, or bottom right.

  • #​10689 683d51a5eecafbbfbfed3910a3f1fbf0b3531b99 Thanks @​ematipico! - Deprecate support for versions of Node.js older than v18.17.1 for Node.js 18, older than v20.0.3 for Node.js 20, and the complete Node.js v19 release line.

    This change is in line with Astro's Node.js support policy.

  • #​10678 2e53b5fff6d292b7acdf8c30a6ecf5e5696846a1 Thanks @​ematipico! - Adds a new experimental security option to prevent Cross-Site Request Forgery (CSRF) attacks. This feature is available only for pages rendered on demand:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
      experimental: {
        security: {
          csrfProtection: {
            origin: true,
          },
        },
      },
    });

    Enabling this setting performs a check that the "origin" header, automatically passed by all modern browsers, matches the URL sent by each Request.

    This experimental "origin" check is executed only for pages rendered on demand, and only for the requests POST, PATCH, DELETEandPUTwith one of the followingcontent-type` headers: 'application/x-www-form-urlencoded', 'multipart/form-data', 'text/plain'.

    It the "origin" header doesn't match the pathname of the request, Astro will return a 403 status code and won't render the page.

  • #​10193 440681e7b74511a17b152af0fd6e0e4dc4014025 Thanks @​ematipico! - Adds a new i18n routing option manual to allow you to write your own i18n middleware:

    import { defineConfig } from 'astro/config';
    // astro.config.mjs
    export default defineConfig({
      i18n: {
        locales: ['en', 'fr'],
        defaultLocale: 'fr',
        routing: 'manual',
      },
    });

    Adding routing: "manual" to your i18n config disables Astro's own i18n middleware and provides you with helper functions to write your own: redirectToDefaultLocale, notFound, and redirectToFallback:

    // middleware.js
    import { redirectToDefaultLocale } from 'astro:i18n';
    export const onRequest = defineMiddleware(async (context, next) => {
      if (context.url.startsWith('/about')) {
        return next();
      } else {
        return redirectToDefaultLocale(context, 302);
      }
    });

    Also adds a middleware function that manually creates Astro's i18n middleware. This allows you to extend Astro's i18n routing instead of completely replacing it. Run middleware in combination with your own middleware, using the sequence utility to determine the order:

    import { defineMiddleware, sequence } from 'astro:middleware';
    import { middleware } from 'astro:i18n'; // Astro's own i18n routing config
    
    export const userMiddleware = defineMiddleware();
    
    export const onRequest = sequence(
      userMiddleware,
      middleware({
        redirectToDefaultLocale: false,
        prefixDefaultLocale: true,
      })
    );
  • #​10671 9e14a78cb05667af9821948c630786f74680090d Thanks @​fshafiee! - Adds the httpOnly, sameSite, and secure options when deleting a cookie

Patch Changes

v4.5.18

Compare Source

Patch Changes
pnpm/pnpm (pnpm)

v8.15.7

Compare Source

rollup/rollup (rollup)

v4.14.2

Compare Source

2024-04-12

Bug Fixes
  • Do not create invalid code when reexporting both a namespace and the default export from that namespace (#​5466)
  • Ensure ppc64 platform is properly detected (#​5460)
Pull Requests
shikijs/shiki (shiki)

v1.3.0

Compare Source

   🚀 Features
    View changes on GitHub
Microsoft/TypeScript (typescript)

v5.4.5: TypeScript 5.4.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vuejs/devtools-next (vite-plugin-vue-devtools)

v7.0.27

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.0.26

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vitest-dev/vitest (vitest)

v1.5.0

Compare Source


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.

Copy link

stackblitz bot commented Apr 15, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

Copy link

changeset-bot bot commented Apr 15, 2024

⚠️ No Changeset found

Latest commit: 1da77d0

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

@dosubot dosubot bot added the size:M This PR changes 30-99 lines, ignoring generated files. label Apr 15, 2024
Copy link

vercel bot commented Apr 15, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
vue-macros ✅ Ready (Inspect) Visit Preview Apr 15, 2024 6:04am

@dosubot dosubot bot added the lgtm This PR has been approved by a maintainer label Apr 15, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 278e5c4 to b6b28a4 Compare April 15, 2024 06:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b6b28a4 to 1da77d0 Compare April 15, 2024 06:03
@sxzz sxzz merged commit 8b8ef7b into main Apr 15, 2024
8 checks passed
@sxzz sxzz deleted the renovate/all-minor-patch branch April 15, 2024 06:08
@github-actions github-actions bot mentioned this pull request May 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies enhancement New feature or request lgtm This PR has been approved by a maintainer size:M This PR changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant