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

Merged
merged 2 commits into from
Jun 24, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 24, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/compiler (source) ^2.8.0 -> ^2.8.1 age adoption passing confidence
@astrojs/react (source) ^3.5.0 -> ^3.6.0 age adoption passing confidence
@changesets/cli (source) ^2.27.5 -> ^2.27.6 age adoption passing confidence
@preact/preset-vite ^2.8.2 -> ^2.8.3 age adoption passing confidence
@solidjs/router ^0.13.5 -> ^0.13.6 age adoption passing confidence
@types/react (source) ^18.2.75 -> ^18.3.3 age adoption passing confidence
@types/react-dom (source) ^18.2.24 -> ^18.3.0 age adoption passing confidence
@vue/compiler-sfc (source) ^3.4.29 -> ^3.4.30 age adoption passing confidence
alpinejs (source) ^3.14.0 -> ^3.14.1 age adoption passing confidence
es-module-lexer ^1.5.3 -> ^1.5.4 age adoption passing confidence
node-mocks-http ^1.14.1 -> ^1.15.0 age adoption passing confidence
react (source) ^18.2.0 -> ^18.3.1 age adoption passing confidence
react-dom (source) ^18.2.0 -> ^18.3.1 age adoption passing confidence
sass ^1.77.5 -> ^1.77.6 age adoption passing confidence
shiki (source) ^1.6.5 -> ^1.9.0 age adoption passing confidence
svelte2tsx (source) ^0.7.9 -> ^0.7.10 age adoption passing confidence
tar ^7.2.0 -> ^7.4.0 age adoption passing confidence
typescript (source) ^5.4.5 -> ^5.5.2 age adoption passing confidence
typescript (source) ~5.4.5 -> ~5.5.2 age adoption passing confidence
typescript-eslint (source) ^7.13.0 -> ^7.13.1 age adoption passing confidence
unified (source) ^11.0.4 -> ^11.0.5 age adoption passing confidence
vite-plugin-vue-devtools (source) ^7.3.0 -> ^7.3.4 age adoption passing confidence
vue (source) ^3.4.29 -> ^3.4.30 age adoption passing confidence
web-vitals ^4.1.1 -> ^4.2.0 age adoption passing confidence
zod-to-json-schema ^3.23.0 -> ^3.23.1 age adoption passing confidence

Release Notes

withastro/compiler (@​astrojs/compiler)

v2.8.1

Compare Source

Patch Changes
  • 0bb2746: Allow data-astro-reload to take a value
withastro/astro (@​astrojs/react)

v3.6.0

Compare Source

Minor Changes
  • #​11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@​astrojs/react/server.js';
    import vueRenderer from '@​astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    
    export const GET: APIRoute = async (ctx) => {
      const container = await experimental_AstroContainer.create();
      container.addServerRenderer({ renderer: reactRenderer });
      container.addServerRenderer({ renderer: vueRenderer });
      container.addServerRenderer({ renderer: customRenderer });
      // You can pass a custom name too
      container.addServerRenderer({
        name: 'customRenderer',
        renderer: customRenderer,
      });
      const vueComponent = await container.renderToString(VueComponent);
      return await container.renderToResponse(Component);
    };
changesets/changesets (@​changesets/cli)

v2.27.6

Compare Source

Patch Changes
preactjs/preset-vite (@​preact/preset-vite)

v2.8.3

Compare Source

What's Changed

New Contributors

Full Changelog: preactjs/preset-vite@2.8.2...2.8.3

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

v0.13.6

Patch Changes
  • 7344f69: Handle absolute redirects within cache on server
  • 8263115: Forward absolute redirects inside cache from server to client
  • 8fbf74a: Treat window.location.hash as URI encoded
  • e9fd55d: fix #​449 No JS submissions not working
  • f311f4a: fix #​452 useSubmission types/references
  • 2f05f37: Make isRouting more reliable + other fixes
  • 618ef17: performance improvement leveraging redirects in loadfn
  • d81473a: usePreloadRoute method pre-release
vuejs/core (@​vue/compiler-sfc)

v3.4.30

Compare Source

Note: this release contains a fix (#​11150) that requires vue-tsc to also be updated in sync to ^2.0.22. See #​11196

Bug Fixes
Performance Improvements
alpinejs/alpine (alpinejs)

v3.14.1

Compare Source

Changed
  • Minor grammar correction in the for directive docs #​4266
  • 🐛 Fixes issue with setters accessing deeply nested data #​4265
  • [UI][Tabs] Prevent tab focus on mousedown #​4239
  • [CSP] Add support for nested properties to CSP build #​4238
guybedford/es-module-lexer (es-module-lexer)

v1.5.4

Compare Source

What's Changed

Full Changelog: guybedford/es-module-lexer@1.5.3...1.5.4

eugef/node-mocks-http (node-mocks-http)

v1.15.0

Compare Source

  • Add to write() and end() support of TypedArray Issue #​300.
  • Fix: return empty string when send() was called with undefined Issue #​298.
sass/dart-sass (sass)

v1.77.6

Compare Source

  • Fix a few cases where comments and occasionally even whitespace wasn't allowed
    between the end of Sass statements and the following semicolon.
shikijs/shiki (shiki)

v1.9.0

Compare Source

   🚨 Breaking Changes
    View changes on GitHub

v1.8.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
sveltejs/language-tools (svelte2tsx)

v0.7.10

Compare Source

  • chore: speed up regex
isaacs/node-tar (tar)

v7.4.0

Compare Source

v7.3.0

Compare Source

Microsoft/TypeScript (typescript)

v5.5.2

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v7.13.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

unifiedjs/unified (unified)

v11.0.5

Compare Source

Fix

Full Changelog: unifiedjs/unified@11.0.4...11.0.5

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

v7.3.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.3.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.3.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v7.3.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
GoogleChrome/web-vitals (web-vitals)

v4.2.0

Compare Source

  • Refactor INP attribution code to fix errors on Windows 10 (#​495)
StefanTerdell/zod-to-json-schema (zod-to-json-schema)

v3.23.1

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.

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

changeset-bot bot commented Jun 24, 2024

⚠️ No Changeset found

Latest commit: f355d2e

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: svelte Related to Svelte (scope) pkg: vue Related to Vue (scope) pkg: example Related to an example package (scope) pkg: react Related to React (scope) pkg: preact Related to Preact (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 Jun 24, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from afefb36 to 815086a Compare June 24, 2024 09:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 815086a to 8f82733 Compare June 24, 2024 12:08
@ematipico
Copy link
Member

Seems like our e2e tests are failing consistently

Copy link
Member

@ematipico ematipico left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Blocking to avoid accidental merge

@bluwy
Copy link
Member

bluwy commented Jun 24, 2024

@ematipico this is ready now, in case you want to take another look

@bluwy bluwy merged commit 47e78d4 into main Jun 24, 2024
14 checks passed
@bluwy bluwy deleted the renovate/all-minor-patch branch June 24, 2024 14:33
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: preact Related to Preact (scope) pkg: react Related to React (scope) pkg: svelte Related to Svelte (scope) pkg: vue Related to Vue (scope)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants