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

Merged
merged 1 commit into from
Oct 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 19, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@analogjs/vite-plugin-angular ^1.8.2 -> ^1.9.0 age adoption passing confidence
@sveltejs/vite-plugin-svelte (source) ^4.0.0-next.8 -> ^4.0.0 age adoption passing confidence
@testing-library/jest-dom ^6.5.0 -> ^6.6.2 age adoption passing confidence
@testing-library/svelte ^5.2.3 -> ^5.2.4 age adoption passing confidence
@vitejs/plugin-react (source) ^4.3.2 -> ^4.3.3 age adoption passing confidence
@vitest/coverage-istanbul (source) ^2.1.2 -> ^2.1.3 age adoption passing confidence
eslint (source) ^9.12.0 -> ^9.13.0 age adoption passing confidence
eslint-plugin-svelte (source) ^2.44.1 -> ^2.45.1 age adoption passing confidence
nx (source) ^19.8.4 -> ^19.8.6 age adoption passing confidence
pnpm (source) 9.12.1 -> 9.12.2 age adoption passing confidence
sherif ^1.0.0 -> ^1.0.1 age adoption passing confidence
svelte (source) ^5.0.0-next.264 -> ^5.0.2 age adoption passing confidence
tslib (source) ^2.7.0 -> ^2.8.0 age adoption passing confidence
vite (source) ^5.4.8 -> ^5.4.9 age adoption passing confidence
vitest (source) ^2.1.2 -> ^2.1.3 age adoption passing confidence

Release Notes

analogjs/analog (@​analogjs/vite-plugin-angular)

v1.9.0

Compare Source

Bug Fixes
  • create-analog: add Analog SFCs to Tailwind config (#​1388) (c051f05)
  • create-analog: add minimal template to semver during release (0e030cc)
  • nx-plugin: added missing import for 'join' in tailwind template (#​1405) (02d7898)
  • platform: add better cache invalidation for file changes (#​1394) (c38900d)
  • platform: load content highlighter on first content request (#​1402) (ead2aba)
  • router: expose inject function for page endpoint URL (#​1397) (42486cc)
  • router: retrieve initial server page load from transfer state (#​1396) (f9f1d9b)
  • vite-plugin-angular: support outputFromObservable (#​1392) (8c255ec)
  • vite-plugin-angular: use esbuild to postprocess sourcemaps during testing (#​1399) (bdf8cee)
  • vite-plugin-nitro: add option use proxy for API requests instead of custom middleware (#​1378) (f72087f)
  • vite-plugin-nitro: inline and apply api prefix to endpoints (#​1401) (94bfc2e)
  • vite-plugin-nitro: use ssrBuildDir if provided for SSR entry point (#​1407) (132f70d)
Features
  • create-analog: optionally generate new projects with Analog SFCs (#​1375) (9b46f08)
  • create-analog: set project title based on project name; sort deps (#​1374) (775eeab)
  • create-analog: update app generators and templates to use TypeScript for Tailwind config (#​1387) (586adae)
  • router: introduce server support for form actions (#​1346) (1d15109)
sveltejs/vite-plugin-svelte (@​sveltejs/vite-plugin-svelte)

v4.0.0

Compare Source

Major Changes
  • only prebundle files with default filenames (.svelte for components, .svelte.(js|ts) for modules) (#​901)

  • remove support for Svelte 4 (#​892)

  • breaking(types): some types that have been unintentionally public are now private (#​934)

  • disable script preprocessing in vitePreprocess() by default because Svelte 5 supports lang=ts out of the box (#​892)

  • replaced svelte-hmr with Svelte 5 compiler hmr integration (#​892)

Minor Changes
  • allow infix notation for svelte modules (#​901)

    Previously, only suffix notation .svelte.js was allowed, now you can also use .svelte.test.js or .svelte.stories.js.
    This helps when writing testcases or other auxillary code where you may want to use runes too.

  • feat(config): dynamically extract list of svelte exports from peer dependency so that new exports work automatically" (#​941)

  • feat(warnings): change default loglevel of warnings originating from files in node_modules to debug. To see them call DEBUG:vite-plugin-svelte:node-modules-onwarn pnpm build. (#​989)

Patch Changes
  • fix: make defaultHandler a required argument for onwarn in plugin options (#​895)

  • prebundle with dev: true by default (#​901)

  • fix(dev): compile with hmr: false for prebundled deps as hmr does not work with that (#​950)

  • fix: ensure svelte modules correctly run in DEV mode (#​906)

  • ensure consistent use of compileOptions.hmr also for prebundling (#​956)

  • fix(optimizeDeps): avoid to optimise server only entrypoints of svelte that are never used on the client (#​941)

  • update peer on workspace packages to avoid packages bumping each other (#​916)

  • export PluginOptions interface (#​976)

  • Remove log about experimental status of Svelte 5. Note that breaking changes can still occur while vite-plugin-svelte 4 is in prerelease mode (#​894)

  • fix: ensure vite config is only resolved once during lazy init of vitePreprocess (#​912)

  • fix(vitePreprocess): default to build config so that svelte-check does not trigger dev-only plugins (#​931)

  • fix: only apply infix filter to basename (#​920)

  • fix: disable hmr when vite config server.hmr is false (#​913)

  • fix(dev): make sure custom cssHash is applied consistently even for prebundled components to avoid hash mismatches during hydration (#​950)

  • Updated dependencies [22baa25, 49324db, e9f048c, 213fedd]:

testing-library/jest-dom (@​testing-library/jest-dom)

v6.6.2

Compare Source

v6.6.1

Compare Source

v6.6.0

Compare Source

testing-library/svelte-testing-library (@​testing-library/svelte)

v5.2.4

Compare Source

Bug Fixes
  • vite: set ssr.noExternal even if not in project package.json (#​404) (b5e0f3d)
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.3

Compare Source

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @&#8203;babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@&#8203;babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})
vitest-dev/vitest (@​vitest/coverage-istanbul)

v2.1.3

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
eslint/eslint (eslint)

v9.13.0

Compare Source

sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v2.45.1

Compare Source

Patch Changes

v2.45.0

Compare Source

Minor Changes
Patch Changes
nrwl/nx (nx)

v19.8.6

Compare Source

19.8.6 (2024-10-18)

🩹 Fixes
  • core: support NX_NO_CLOUD (#​28366)
  • core: handle neverConnectToCloud property (#​28452)
  • core: neverConnectToCloud should disable connecting to nxCloud (#​28501)
❤️ Thank You

v19.8.5

Compare Source

19.8.5 (2024-10-15)

🚀 Features
  • core: open sqlite databases with SQLITE_OPEN_FULL_MUTEX (#​28276)
  • devkit: bump compatibility to Nx 19 - 21.x (#​28243)
🩹 Fixes
  • core: add busy handler for sqlite (#​28390)
  • react: patch fix for 88f163e to normalize project name without messing up directory (ff23fb0c07)
❤️ Thank You
pnpm/pnpm (pnpm)

v9.12.2

Compare Source

QuiiBz/sherif (sherif)

v1.0.1

Compare Source

What's Changed

New Contributors

Full Changelog: QuiiBz/sherif@v1.0.0...v1.0.1

sveltejs/svelte (svelte)

v5.0.2

Compare Source

Patch Changes
  • fix: don't blank css on migration error (#​13703)

v5.0.1

Compare Source

Patch Changes
  • fix: use typedef for JSDoc props and maintain comments (#​13698)

v5.0.0

Compare Source

A new major version of Svelte has been released! 🎉

The new version brings:

  • even better performance,
  • a more granular reactivity system with runes,
  • more expressive template syntax with snippets and event attributes,
  • native TypeScript support,
  • and backwards compatibility with the previous syntax!

For more details check out the Svelte docs and the migration guide.

v5.0.0-next.272

Compare Source

Patch Changes
  • fix: ensure user effects are correctly executed on initialisation (#​13697)

  • breaking: state mutations inside the template are no longer allowed (#​13660)

v5.0.0-next.271

Compare Source

Patch Changes
  • fix: avoid chromium issue with dispatching blur on element removal (#​13694)

v5.0.0-next.270

Compare Source

Patch Changes
  • fix: bail out if slot name changes and $slots assigned to variable (#​13678)

  • feat: add migration-task for impossible to migrate slots (#​13658)

  • feat: tell users of @migration-task (#​13668)

  • fix: correct migration of uninitialised state (#​13673)

  • fix: ensure migrate correctly handles named slots (#​13676)

  • feat: add migration-task comment after errors (#​13659)

  • fix: migrate reactive statements with inner blocks (#​13675)

  • fix: migrating rest props type includes props types (#​13632)

  • fix: migrated snippet shadowing prop and let directive removal (#​13679)

  • chore: CompileDiagnostic no longer extends Error (#​13651)

  • fix: reset reset_element in render to prevent runtime error (#​13669)

v5.0.0-next.269

Compare Source

Patch Changes
  • fix: transitions within dynamic components now function correctly (#​13646)

  • fix: use internal_set in await block (#​13642)

  • fix: correctly applies autofocus to static elements (#​13648)

  • fix: method attribute is case insensitive (#​13639)

  • chore: avoid reporting inspections when an exception occurs (#​13601)

  • fix: ensure legacy run utility does not cause cycles (#​13643)

  • fix: better migration for leading and trailing comments (#​13630)

v5.0.0-next.268

Compare Source

Patch Changes
  • breaking: disallow state mutations in logic block expression (#​13625)

  • breaking: stronger enumerated types (#​13624)

  • chore: improve runtime performance of derived signals (#​13626)

v5.0.0-next.267

Compare Source

Patch Changes
  • fix: ensure inserted code is preserved during migration (#​13617)

  • fix: ensure each block consistency to internal mutations to the collection (#​13614)

  • chore: improve derived ownership model (#​13623)

  • fix: ensure await block scope transforms are isolated (#​13622)

v5.0.0-next.266

Compare Source

Patch Changes
  • feat: add hidden until-found and beforematch (#​13612)

  • fix: ensure local prop value is read during teardown (#​13611)

  • fix: take snippets into account when scoping CSS (#​13589)

  • breaking: scope :not(...) selectors (#​13568)

  • breaking: scope :has(...) selectors (#​13567)

v5.0.0-next.265

Compare Source

Patch Changes
  • fix: ensure source and filename are known to compileModule's source map (#​13546)

  • fix: cleanup non-branch effects created inside block effects (#​13600)

  • fix: do no rerun the each block when array change from empty to empty (#​13553)

  • fix: ensure effects destroy owned deriveds upon teardown (#​13563)

  • fix: ensure proxied arrays correctly update their length upon deletions (#​13549)

  • fix: avoid assigning input.value if the value is the same to fix minlength (#​13574)

  • fix: use analysis.name when migrating <svelte:self> (#​13544)

  • fix: strip BOM character from input (#​13548)

Microsoft/tslib (tslib)

v2.8.0

Compare Source

What's Changed

Full Changelog: microsoft/tslib@v2.7.0...v2.8.0

vitejs/vite (vite)

v5.4.9

Compare Source

Please refer to CHANGELOG.md for details.


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

nx-cloud bot commented Oct 19, 2024

☁️ Nx Cloud Report

CI is running/has finished running commands for commit c307d4f. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.

📂 See all runs for this CI Pipeline Execution


✅ Successfully ran 2 targets

Sent with 💌 from NxCloud.

Copy link

pkg-pr-new bot commented Oct 19, 2024

@tanstack/angular-store

pnpm add https://pkg.pr.new/@tanstack/angular-store@127

@tanstack/react-store

pnpm add https://pkg.pr.new/@tanstack/react-store@127

@tanstack/store

pnpm add https://pkg.pr.new/@tanstack/store@127

@tanstack/solid-store

pnpm add https://pkg.pr.new/@tanstack/solid-store@127

@tanstack/svelte-store

pnpm add https://pkg.pr.new/@tanstack/svelte-store@127

@tanstack/vue-store

pnpm add https://pkg.pr.new/@tanstack/vue-store@127

commit: c307d4f

@lachlancollins lachlancollins merged commit b779570 into main Oct 19, 2024
5 checks passed
@lachlancollins lachlancollins deleted the renovate/all-minor-patch branch October 19, 2024 22:04
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