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

Merged
merged 1 commit into from
May 14, 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/vue (source) ^4.1.0 -> ^4.2.0 age adoption passing confidence
@nuxt/devtools (source) ^1.2.0 -> ^1.3.1 age adoption passing confidence
@rspack/core (source) ^0.6.3 -> ^0.6.5 age adoption passing confidence
@types/node (source) ^20.12.8 -> ^20.12.11 age adoption passing confidence
@unocss/nuxt (source) ^0.59.4 -> ^0.60.2 age adoption passing confidence
@unocss/reset ^0.59.4 -> ^0.60.2 age adoption passing confidence
@vue/compiler-core (source) ^3.4.26 -> ^3.4.27 age adoption passing confidence
@vue/compiler-dom (source) ^3.4.26 -> ^3.4.27 age adoption passing confidence
@vue/compiler-sfc (source) ^3.4.26 -> ^3.4.27 age adoption passing confidence
@vue/shared (source) ^3.4.26 -> ^3.4.27 age adoption passing confidence
astro (source) ^4.7.1 -> ^4.8.3 age adoption passing confidence
esbuild ^0.20.2 -> ^0.21.2 age adoption passing confidence
pnpm (source) 9.0.6 -> 9.1.1 age adoption passing confidence
quasar (source) ^2.15.4 -> ^2.16.3 age adoption passing confidence
rimraf ^5.0.5 -> ^5.0.7 age adoption passing confidence
shiki (source) ^1.4.0 -> ^1.5.1 age adoption passing confidence
tsx ^4.9.3 -> ^4.10.2 age adoption passing confidence
type-fest ^4.18.1 -> ^4.18.2 age adoption passing confidence
unocss ^0.59.4 -> ^0.60.2 age adoption passing confidence
vue (source) ^3.4.26 -> ^3.4.27 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/vue)

v4.2.0

Compare Source

Minor Changes
  • #​10929 082abb8 Thanks @​florian-lefebvre! - Adds a devtools option

    You can enable the official Vue DevTools while working in development mode by setting devtools:true in your vue() integration config:

    import { defineConfig } from 'astro/config';
    import vue from '@​astrojs/vue';
    
    export default defineConfig({
      integrations: [vue({ devtools: true })],
    });
nuxt/devtools (@​nuxt/devtools)

v1.3.1

Compare Source

Bug Fixes
  • module builder chunk path patch (87199a1)

v1.3.0

Compare Source

Bug Fixes
Features
web-infra-dev/rspack (@​rspack/core)

v0.6.5

Compare Source

Hotfixes

What's Changed

Performance Improvements ⚡
Bug Fixes 🐞
Document Updates 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v0.6.4...v0.6.5

v0.6.4

Compare Source

What's Changed

Performance Improvements ⚡
Exciting New Features 🎉
Bug Fixes 🐞
Document Updates 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v0.6.3...v0.6.4

unocss/unocss (@​unocss/nuxt)

v0.60.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.60.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.60.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
unocss/unocss (@​unocss/reset)

v0.60.2

Compare Source

v0.60.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.60.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/core (@​vue/compiler-core)

v3.4.27

Compare Source

Bug Fixes
withastro/astro (astro)

v4.8.3

Compare Source

Patch Changes

v4.8.2

Compare Source

Patch Changes

v4.8.1

Compare Source

Patch Changes
  • #​10987 05db5f7 Thanks @​ematipico! - Fix a regression where the flag experimental.rewriting was marked mandatory. Is is now optional.

  • #​10975 6b640b3 Thanks @​bluwy! - Passes the scoped style attribute or class to the <picture> element in the <Picture /> component so scoped styling can be applied to the <picture> element

v4.8.0

Compare Source

Minor Changes
  • #​10935 ddd8e49 Thanks @​bluwy! - Exports astro/jsx/rehype.js with utilities to generate an Astro metadata object

  • #​10625 698c2d9 Thanks @​goulvenclech! - Adds the ability for multiple pages to use the same component as an entrypoint when building an Astro integration. This change is purely internal, and aligns the build process with the behaviour in the development server.

  • #​10906 7bbd664 Thanks @​Princesseuh! - Adds a new radio checkbox component to the dev toolbar UI library (astro-dev-toolbar-radio-checkbox)

  • #​10963 61f47a6 Thanks @​delucis! - Adds support for passing an inline Astro configuration object to getViteConfig()

    If you are using getViteConfig() to configure the Vitest test runner, you can now pass a second argument to control how Astro is configured. This makes it possible to configure unit tests with different Astro options when using Vitest’s workspaces feature.

    // vitest.config.ts
    import { getViteConfig } from 'astro/config';
    
    export default getViteConfig(
      /* Vite configuration */
      { test: {} },
      /* Astro configuration */
      {
        site: 'https://example.com',
        trailingSlash: 'never',
      }
    );
  • #​10867 47877a7 Thanks @​ematipico! - Adds experimental rewriting in Astro with a new rewrite() function and the middleware next() function.

    The feature is available via an experimental flag in astro.config.mjs:

    export default defineConfig({
      experimental: {
        rewriting: true,
      },
    });

    When enabled, you can use rewrite() to render another page without changing the URL of the browser in Astro pages and endpoints.

evanw/esbuild (esbuild)

v0.21.2

Compare Source

  • Correct this in field and accessor decorators (#​3761)

    This release changes the value of this in initializers for class field and accessor decorators from the module-level this value to the appropriate this value for the decorated element (either the class or the instance). It was previously incorrect due to lack of test coverage. Here's an example of a decorator that doesn't work without this change:

    const dec = () => function() { this.bar = true }
    class Foo { @&#8203;dec static foo }
    console.log(Foo.bar) // Should be "true"
  • Allow es2023 as a target environment (#​3762)

    TypeScript recently added es2023 as a compilation target, so esbuild now supports this too. There is no difference between a target of es2022 and es2023 as far as esbuild is concerned since the 2023 edition of JavaScript doesn't introduce any new syntax features.

v0.21.1

Compare Source

  • Fix a regression with --keep-names (#​3756)

    The previous release introduced a regression with the --keep-names setting and object literals with get/set accessor methods, in which case the generated code contained syntax errors. This release fixes the regression:

    // Original code
    x = { get y() {} }
    
    // Output from version 0.21.0 (with --keep-names)
    x = { get y: /* @&#8203;__PURE__ */ __name(function() {
    }, "y") };
    
    // Output from this version (with --keep-names)
    x = { get y() {
    } };

v0.21.0

Compare Source

This release doesn't contain any deliberately-breaking changes. However, it contains a very complex new feature and while all of esbuild's tests pass, I would not be surprised if an important edge case turns out to be broken. So I'm releasing this as a breaking change release to avoid causing any trouble. As usual, make sure to test your code when you upgrade.

  • Implement the JavaScript decorators proposal (#​104)

    With this release, esbuild now contains an implementation of the upcoming JavaScript decorators proposal. This is the same feature that shipped in TypeScript 5.0 and has been highly-requested on esbuild's issue tracker. You can read more about them in that blog post and in this other (now slightl


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 May 13, 2024

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

Copy link

vercel bot commented May 13, 2024

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

Name Status Preview Updated (UTC)
vue-macros ✅ Ready (Inspect) Visit Preview May 13, 2024 1:32pm

@dosubot dosubot bot added the size:L This PR changes 100-499 lines, ignoring generated files. label May 13, 2024
Copy link

changeset-bot bot commented May 13, 2024

⚠️ No Changeset found

Latest commit: 5cfdff8

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

Copy link

socket-security bot commented May 13, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher

View full report↗︎

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b942c7b to 5cfdff8 Compare May 13, 2024 13:31
@sxzz sxzz merged commit c4468c5 into main May 14, 2024
8 checks passed
@sxzz sxzz deleted the renovate/all-minor-patch branch May 14, 2024 07:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies size:L This PR changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant