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 all non-major dependencies #103

Merged
merged 2 commits into from
Nov 30, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify-json/vscode-icons ^1.2.2 -> ^1.2.3 age adoption passing confidence
@nuxt/kit (source) ^3.14.159 -> ^3.14.1592 age adoption passing confidence
@oxc-parser/wasm (source) ^0.36.0 -> ^0.38.0 age adoption passing confidence
@shikijs/monaco (source) ^1.23.0 -> ^1.24.0 age adoption passing confidence
@swc/wasm-web 1.9.2 -> 1.9.3 age adoption passing confidence
@sxzz/eslint-config ^4.4.1 -> ^4.5.1 age adoption passing confidence
@typescript-eslint/parser (source) ^8.14.0 -> ^8.16.0 age adoption passing confidence
@vueuse/nuxt (source) ^11.2.0 -> ^11.3.0 age adoption passing confidence
eslint (source) ^9.15.0 -> ^9.16.0 age adoption passing confidence
flow-parser (source) ^0.253.0 -> ^0.255.0 age adoption passing confidence
nuxt (source) 3.14.159 -> 3.14.1592 age adoption passing confidence
nuxt-umami (source) ^3.0.2 -> ^3.1.1 age adoption passing confidence
pnpm (source) 9.13.2 -> 9.14.4 age adoption passing confidence
shiki (source) ^1.23.0 -> ^1.24.0 age adoption passing confidence
svelte (source) ^5.2.2 -> ^5.2.11 age adoption passing confidence
typescript (source) ^5.6.3 -> ^5.7.2 age adoption passing confidence

Release Notes

nuxt/nuxt (@​nuxt/kit)

v3.14.1592

Compare Source

3.14.1592 is the next patch release.

👉 Changelog

compare changes

🩹 Fixes
  • rspack: Update webpackbar with support for rspack (#​29823)
  • nuxt: Assign default name to component without setup (#​29869)
  • kit: Use dst to deduplicate templates when adding them (#​29895)
  • nuxt: Handle empty plugin files (d44408e87)
  • vite: Use resolved nuxt template dst to invalidate modules (6cd3352de)
  • nuxt: Return null map for empty plugin metadata (302a66da9)
  • kit: Resolve module paths before appending subpaths (#​29955)
  • nuxt: Recompile templates on change events (#​29954)
  • nuxt: Do not include <NuxtWelcome> when building (#​29956)
  • nuxt: Allow scanning metadata from 2+ files at same path (#​29969)
  • nuxt: Do not disallow importing nitro dependencies (#​29975)
💅 Refactors
  • nuxt: Define layouts as async vue components (#​29957)
📖 Documentation
🏡 Chore
  • Remove unused imports and update eslint config (#​29876)
✅ Tests
🤖 CI
❤️ Contributors
shikijs/shiki (@​shikijs/monaco)

v1.24.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.23.1

Compare Source

   🚀 Features
    View changes on GitHub
swc-project/swc (@​swc/wasm-web)

v1.9.3

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
Performance
Refactor
sxzz/eslint-config (@​sxzz/eslint-config)

v4.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.5.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.16.0

Compare Source

🚀 Features
❤️ Thank You
  • Josh Goldberg ✨

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

v8.15.0

Compare Source

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

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

vueuse/vueuse (@​vueuse/nuxt)

v11.3.0

Compare Source

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

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

facebook/flow (flow-parser)

v0.255.0

Compare Source

Likely to cause new Flow errors:

  • Referencing a react-component typed value in type position will now create a React$RendersExactly<typeof Component> type instead of React$Element<typeof Component> type. All existing usages intended to create an exact react element will now error as a result. Using it as type passed to render type, React.PropsOf, React.PropOf and React.RefOf is unaffected and will not be affected in the future. If you want exact react elements, the only way that doesn't trigger Flow error is by ExactReactElement_DEPRECATED<typeof Component>.

Library Definitions:

  • React.Config type is marked as deprecated and will be removed soon. You can create your own equivalent type with
type ReactConfigShim<Props, DefaultProps> = $ReadOnly<{
  ...Omit<Props, $Keys<DefaultProps>>, ...Partial<DefaultProps>
}>;

v0.254.2

Compare Source

Misc:

  • Add option to disable experimental configuration

v0.254.1

Compare Source

Notable bug fixes:

  • Fixed a potential crash when experimental multiplatform support is enabled.

v0.254.0

Compare Source

Likely to cause new Flow errors:

  • Previously we incorrectly applied truthy refinement on optional chaining where it shouldn't be applied. The issue is now fixed, and you might see change in behavior similar to these examples

Library Definitions:

  • Improve Array toSpliced method type (thanks @​aph!)
ijkml/nuxt-umami (nuxt-umami)

v3.1.1

Compare Source

What's Changed

  • fix: make tag tracking reactive

Full Changelog: ijkml/nuxt-umami@v3.1.0...v3.1.1

v3.1.0

Compare Source

What's Changed

  • feat: support for Umami tags #​124
  • feat: revenue tracking umTrackView in #​124

Full Changelog: ijkml/nuxt-umami@v3.0.2...v3.1.0

pnpm/pnpm (pnpm)

v9.14.4

Compare Source

v9.14.3

Compare Source

v9.14.2

Compare Source

Patch Changes

  • pnpm publish --json should work #​8788.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.1

Compare Source

Minor Changes

  • Added support for pnpm pack --json to print packed tarball and contents in JSON format #​8765.

Patch Changes

  • pnpm exec should print a meaningful error message when no command is provided #​8752.
  • pnpm setup should remove the CLI from the target location before moving the new binary #​8173.
  • Fix ERR_PNPM_TARBALL_EXTRACT error while installing a dependency from GitHub having a slash in branch name #​7697.
  • Don't crash if the use-node-version setting is used and the system has no Node.js installed #​8769.
  • Convert settings in local .npmrc files to their correct types. For instance, child-concurrency should be a number, not a string #​5075.
  • pnpm should fail if a project requires a different package manager even if manage-package-manager-versions is set to true.
  • pnpm init should respect the --dir option #​8768.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.0

Compare Source

sveltejs/svelte (svelte)

v5.2.11

Compare Source

Patch Changes
  • fix: ignore text and expressions outside the template when validating HTML (#​14468)

  • fix: better account for render tags when pruning CSS (#​14456)

v5.2.10

Compare Source

Patch Changes
  • fix: correctly remove unused selectors in middle of selector lists (#​14448)

  • chore: upgrade esm-env for Vite 6 support (#​14460)

  • fix: strip exported TypeScript function overloads (#​14458)

v5.2.9

Compare Source

Patch Changes
  • fix: show :then block for null/undefined value (#​14440)

  • fix: relax html parent validation (#​14442)

  • fix: prevent memory leak when creating deriveds inside untrack (#​14443)

  • fix: disregard TypeScript nodes when pruning CSS (#​14446)

v5.2.8

Compare Source

Patch Changes
  • fix: correctly prune each blocks (#​14403)

  • fix: provide temporary LegacyComponentType (#​14257)

  • fix: attach spread attribute events synchronously (#​14387)

  • fix: ensure last empty text node correctly hydrates (#​14425)

  • fix: correctly prune key blocks (#​14403)

v5.2.7

Compare Source

Patch Changes
  • fix: always use set for private identifiers (#​14378)

v5.2.6

Compare Source

Patch Changes
  • fix: remove template expression inlining (#​14374)

v5.2.5

Compare Source

Patch Changes
  • fix: correctly handle srcObject attribute on video elements (#​14369)

  • add contentvisibilityautostatechange event to element definitions (#​14373)

  • fix: tighten up export default validation (#​14368)

  • fix: include method definitions in class private fields (#​14365)

v5.2.4

Compare Source

Patch Changes
  • fix: ensure internal cloning can work circular values (#​14347)

  • fix: correctly update dynamic member expressions (#​14359)

  • fix: ensure is_pure takes into account $effect.tracking() (#​14333)

  • fix: coerce value to number when hydrating range/number input with changed value (#​14349)

v5.2.3

Compare Source

Patch Changes
  • fix: ensure dynamic call expressions correctly generate output (#​14345)
microsoft/TypeScript (typescript)

v5.7.2

Compare Source


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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

stackblitz bot commented Nov 25, 2024

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

Copy link

vercel bot commented Nov 25, 2024

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

Name Status Preview Comments Updated (UTC)
ast-explorer ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 30, 2024 5:19pm

Copy link

socket-security bot commented Nov 25, 2024

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

Package New capabilities Transitives Size Publisher
npm/@iconify-json/vscode-icons@1.2.3 None +1 3.55 MB cyberalien
npm/@nuxt/kit@3.14.1592 Transitive: environment, filesystem, network, shell +63 6.3 MB antfu, atinux, clarkdo, ...3 more
npm/@oxc-parser/wasm@0.38.0 filesystem +1 1.5 MB boshen
npm/@shikijs/monaco@1.24.0 None +28 2.81 MB antfu
npm/@swc/wasm-web@1.9.3 network 0 21.2 MB kdy1
npm/@sxzz/eslint-config@4.5.1 environment Transitive: filesystem, unsafe +203 34.8 MB sxzz
npm/@typescript-eslint/parser@8.16.0 Transitive: environment, filesystem +27 2.52 MB
npm/@vueuse/nuxt@11.3.0 None +9 2.68 MB vueuse-bot
npm/eslint@9.16.0 Transitive: environment, eval, filesystem, shell, unsafe +73 9.53 MB eslintbot
npm/flow-parser@0.255.0 None 0 745 kB avikchaudhuri, flowtype, gabelevi, ...3 more
npm/nuxt-umami@3.1.1 environment Transitive: filesystem, network, shell, unsafe +68 5.94 MB ijkml
npm/nuxt@3.14.1592 Transitive: environment, eval, filesystem, network, shell, unsafe +418 75.3 MB danielroe
npm/serve@14.2.4 Transitive: environment, eval, filesystem, network, shell, unsafe +58 3.44 MB vercel-release-bot
npm/shiki@1.24.0 None +28 13 MB antfu

🚮 Removed packages: npm/@iconify-json/vscode-icons@1.2.2, npm/@nuxt/kit@3.14.159, npm/@oxc-parser/wasm@0.36.0, npm/@shikijs/monaco@1.23.0, npm/@swc/wasm-web@1.9.2, npm/@sxzz/eslint-config@4.4.1, npm/@typescript-eslint/parser@8.14.0, npm/@vueuse/nuxt@11.2.0, npm/eslint@9.15.0, npm/flow-parser@0.253.0, npm/nuxt-umami@3.0.2, npm/nuxt@3.14.159

View full report↗︎

@sxzz
Copy link
Owner

sxzz commented Nov 26, 2024

Blocking by vuejs/language-tools#5020

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5738dfa to 8ffafc2 Compare November 26, 2024 21:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8ffafc2 to 47b1cea Compare November 28, 2024 01:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 47b1cea to 2bd7634 Compare November 28, 2024 10:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2bd7634 to e3a5208 Compare November 28, 2024 16:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e3a5208 to 7a360ec Compare November 28, 2024 20:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7a360ec to 04c543e Compare November 29, 2024 11:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 04c543e to 9bc07d4 Compare November 29, 2024 16:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9bc07d4 to 8a82fcc Compare November 29, 2024 21:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8a82fcc to f39e02d Compare November 30, 2024 02:09
Copy link
Contributor Author

renovate bot commented Nov 30, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@sxzz sxzz merged commit e73a819 into main Nov 30, 2024
4 of 5 checks passed
@sxzz sxzz deleted the renovate/all-minor-patch branch November 30, 2024 17:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant