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

chore(deps): update app dependencies #1682

Merged
merged 1 commit into from
Aug 8, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 18, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/check (source) ^0.7.0 -> ^0.9.2 age adoption passing confidence
@astrojs/react (source) ^3.6.0 -> ^3.6.1 age adoption passing confidence
@astrojs/vercel (source) ^7.7.1 -> ^7.7.2 age adoption passing confidence
@next/bundle-analyzer (source) 14.2.4 -> 14.2.5 age adoption passing confidence
@next/bundle-analyzer (source) 15.0.0-canary.36 -> 15.0.0-canary.109 age adoption passing confidence
@nuxt/devtools (source) ^1.3.3 -> ^1.3.9 age adoption passing confidence
@nuxtjs/sanity ^1.11.3 -> ^1.11.5 age adoption passing confidence
@nuxtjs/tailwindcss ^6.12.0 -> ^6.12.1 age adoption passing confidence
@remix-run/css-bundle (source) ^2.9.2 -> ^2.11.1 age adoption passing confidence
@remix-run/dev (source) ^2.9.2 -> ^2.11.1 age adoption passing confidence
@remix-run/eslint-config (source) ^2.9.2 -> ^2.11.1 age adoption passing confidence
@remix-run/node (source) ^2.9.2 -> ^2.11.1 age adoption passing confidence
@remix-run/react (source) ^2.9.2 -> ^2.11.1 age adoption passing confidence
@remix-run/serve (source) ^2.9.2 -> ^2.11.1 age adoption passing confidence
@sanity/assist ^3.0.4 -> ^3.0.5 age adoption passing confidence
@sanity/astro (source) ^3.1.3 -> ^3.1.4 age adoption passing confidence
@sanity/client (source) ^6.20.0 -> ^6.21.1 age adoption passing confidence
@sanity/icons (source) ^3.2.0 -> ^3.3.1 age adoption passing confidence
@sanity/vision (source) ^3.46.1 -> ^3.53.0 age adoption passing confidence
@sveltejs/kit (source) ^2.5.16 -> ^2.5.20 age adoption passing confidence
@tailwindcss/typography ^0.5.13 -> ^0.5.14 age adoption passing confidence
@tailwindcss/typography 0.5.13 -> 0.5.14 age adoption passing confidence
@tinloof/sanity-studio (source) 1.3.0 -> 1.3.2 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^7.13.1 -> ^7.18.0 age adoption passing confidence
@typescript-eslint/parser (source) ^7.13.1 -> ^7.18.0 age adoption passing confidence
@vercel/remix (source) ^2.9.1 -> ^2.11.1 age adoption passing confidence
astro (source) ^4.10.3 -> ^4.13.2 age adoption passing confidence
autoprefixer 10.4.19 -> 10.4.20 age adoption passing confidence
autoprefixer ^10.4.19 -> ^10.4.20 age adoption passing confidence
eslint-config-next (source) 14.2.4 -> 14.2.5 age adoption passing confidence
eslint-plugin-prettier ^5.1.3 -> ^5.2.1 age adoption passing confidence
eslint-plugin-simple-import-sort 12.1.0 -> 12.1.1 age adoption passing confidence
eslint-plugin-svelte (source) ^2.40.0 -> ^2.43.0 age adoption passing confidence
groq (source) ^3.46.1 -> ^3.53.0 age adoption passing confidence
isbot (source) ^5.1.9 -> ^5.1.14 age adoption passing confidence
lucide-react (source) ^0.395.0 -> ^0.426.0 age adoption passing confidence
next (source) 14.2.4 -> 14.2.5 age adoption passing confidence
next (source) 15.0.0-canary.36 -> 15.0.0-canary.109 age adoption passing confidence
next-sanity (source) 9.3.10 -> 9.4.4 age adoption passing confidence
next-sanity (source) ^9.3.10 -> ^9.4.4 age adoption passing confidence
nuxt (source) ^3.12.2 -> ^3.12.4 age adoption passing confidence
postcss (source) 8.4.38 -> 8.4.41 age adoption passing confidence
postcss (source) ^8.4.38 -> ^8.4.41 age adoption passing confidence
prettier (source) ^3.3.2 -> ^3.3.3 age adoption passing confidence
prettier-plugin-packagejson ^2.5.0 -> ^2.5.1 age adoption passing confidence
sanity (source) ^3.46.1 -> ^3.53.0 age adoption passing confidence
sanity (source) ^3.46.1 -> ^3.53.0 age adoption passing confidence
sanity (source) 3.46.1 -> 3.53.0 age adoption passing confidence
styled-components (source) 6.1.11 -> 6.1.12 age adoption passing confidence
styled-components (source) ^6.1.11 -> ^6.1.12 age adoption passing confidence
svelte-check ^3.8.1 -> ^3.8.5 age adoption passing confidence
tailwindcss (source) ^3.4.4 -> ^3.4.9 age adoption passing confidence
tailwindcss (source) 3.4.4 -> 3.4.9 age adoption passing confidence
typescript (source) 5.4.5 -> 5.5.3 age adoption passing confidence
vite (source) ^5.3.1 -> ^5.4.0 age adoption passing confidence

Release Notes

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

v0.9.2

Compare Source

Patch Changes

v0.9.1

Compare Source

Patch Changes

v0.9.0

Compare Source

Minor Changes
  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags
Patch Changes

v0.8.3

Compare Source

Patch Changes

v0.8.2

Compare Source

Patch Changes

v0.8.1

Compare Source

Patch Changes

v0.8.0

Compare Source

Minor Changes
  • b8a6af3: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.
Patch Changes
withastro/astro (@​astrojs/react)

v3.6.1

Compare Source

Patch Changes
  • #​11571 1c3265a Thanks @​bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.

    Make .safe() the default return value for actions. This means { data, error } will be returned when calling an action directly. If you prefer to get the data while allowing errors to throw, chain the .orThrow() modifier.

    import { actions } from 'astro:actions';
    
    // Before
    const { data, error } = await actions.like.safe();
    // After
    const { data, error } = await actions.like();
    
    // Before
    const newLikes = await actions.like();
    // After
    const newLikes = await actions.like.orThrow();
withastro/astro (@​astrojs/vercel)

v7.7.2

Compare Source

Patch Changes
vercel/next.js (@​next/bundle-analyzer)

v14.2.5

Compare Source

nuxt-modules/sanity (@​nuxtjs/sanity)

v1.11.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
nuxt-modules/tailwindcss (@​nuxtjs/tailwindcss)

v6.12.1

Compare Source

compare changes

🩹 Fixes
📖 Documentation
📦 Build
  • Update merger filename and revert @nuxt/content upgrade (#​867)
🏡 Chore
❤️ Contributors
remix-run/remix (@​remix-run/css-bundle)

v2.11.1

Compare Source

v2.11.0

Compare Source

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.11.0.

v2.10.3

[Compare Source](https://togithub.com/remix-run/remix/compare/@remix-run/css-bundle@2.10.2...@remix-run/


Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 using a curated preset maintained by Sanity. View repository job log here

@renovate renovate bot requested a review from a team as a code owner June 18, 2024 18:57
Copy link

vercel bot commented Jun 18, 2024

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

Name Status Preview Comments Updated (UTC)
visual-editing-astro ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 8, 2024 2:58pm
visual-editing-next ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 8, 2024 2:58pm
visual-editing-next-no-cache ❌ Failed (Inspect) Aug 8, 2024 2:58pm
visual-editing-next-server-only ❌ Failed (Inspect) Aug 8, 2024 2:58pm
visual-editing-next-with-i18n ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 8, 2024 2:58pm
visual-editing-nuxt ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 8, 2024 2:58pm
visual-editing-page-builder-demo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 8, 2024 2:58pm
visual-editing-remix ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 8, 2024 2:58pm
visual-editing-studio ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 8, 2024 2:58pm
visual-editing-svelte ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 8, 2024 2:58pm

@renovate renovate bot enabled auto-merge June 18, 2024 18:57
@renovate renovate bot force-pushed the renovate/app-dependencies branch from f0dacee to 28f34a3 Compare June 18, 2024 19:13
@renovate renovate bot force-pushed the renovate/app-dependencies branch from 28f34a3 to 06e8c1b Compare June 19, 2024 00:54
Copy link
Member

@stipsan stipsan left a comment

Choose a reason for hiding this comment

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

Merging this even though the two embedded next examples are failing the build, will handle them in a separate PR after handling other deps

@renovate renovate bot added this pull request to the merge queue Aug 8, 2024
Merged via the queue into main with commit a7f3a2d Aug 8, 2024
17 of 19 checks passed
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 16, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant