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

build(deps): bump the non-majors group in /dashboard with 16 updates #962

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2024

Bumps the non-majors group in /dashboard with 16 updates:

Package From To
@connectrpc/connect 1.4.0 1.5.0
@connectrpc/connect-web 1.4.0 1.5.0
@modular-forms/solid 0.22.1 0.23.0
@solidjs/router 0.14.2 0.14.7
@tanstack/solid-virtual 3.10.6 3.10.8
solid-js 1.8.22 1.9.1
ts-pattern 5.3.1 5.4.0
valibot 0.41.0 0.42.1
@biomejs/biome 1.8.3 1.9.2
@macaron-css/solid 1.5.1 1.5.3
@tanstack/virtual-core 3.10.6 3.10.8
@types/node 22.5.2 22.7.4
jsdom 25.0.0 25.0.1
typescript 5.5.4 5.6.2
vite 5.4.2 5.4.8
vitest 2.0.5 2.1.1

Updates @connectrpc/connect from 1.4.0 to 1.5.0

Release notes

Sourced from @​connectrpc/connect's releases.

v1.5.0

What's Changed

New Contributors

Full Changelog: connectrpc/connect-es@v1.4.0...v1.5.0

Commits

Updates @connectrpc/connect-web from 1.4.0 to 1.5.0

Release notes

Sourced from @​connectrpc/connect-web's releases.

v1.5.0

What's Changed

New Contributors

Full Changelog: connectrpc/connect-es@v1.4.0...v1.5.0

Commits

Updates @modular-forms/solid from 0.22.1 to 0.23.0

Release notes

Sourced from @​modular-forms/solid's releases.

v0.23.0 (@​modular-forms/solid)

Many thanks to @​Martinusius, @​XiNiHa and @​plushdohn for contributing to this release.

  • Add support for async validation with Zod (issue #233)
  • Add validateOn and revalidateOn option to Field and FieldArray component (pull request #247)
  • Change onSubmit property of Form component to be optional (issue #237)

v0.23.0 (@​modular-forms/qwik)

  • Fix type errors after upgrading to Qwik v1.4.0
  • Upgrade Qwik and Qwik City peer dependency to v1.4.0
Commits

Updates @solidjs/router from 0.14.2 to 0.14.7

Changelog

Sourced from @​solidjs/router's changelog.

0.14.7

Patch Changes

  • 3594e45: fix iterator methods on useSubmissions

0.14.6

Patch Changes

  • 0a964b6: Fix duplicated push history
  • c61231d: Fix scrollToHash to handle hashes starting with a number
  • 83b7093: remove extra code, fix #406 slow perf on localeCompare

0.14.5

Patch Changes

  • 5c87acc: fix partial matches in single flight mutations

0.14.4

Patch Changes

  • 098dccb: fix #474 improper search parameter resolution while routing
  • f8f30df: fix initial state including _depth

0.14.3

Patch Changes

  • 19a21cc: fix async store references
  • f8aaf16: make url transform consistent
  • 86c3b1f: better handling of query only navigation
Commits

Updates @tanstack/solid-virtual from 3.10.6 to 3.10.8

Release notes

Sourced from @​tanstack/solid-virtual's releases.

v3.10.8

Version 3.10.8 - 9/16/24, 2:22 PM

Changes

Fix

  • virtual-core: ensure getTotalSize returns 0 for empty list (#836) (9f8ac01) by Lucas Weng

Chore

  • deps: update all non-major dependencies (#837) (54f2be6) by renovate[bot]
  • deps: update all non-major dependencies (#833) (661a956) by renovate[bot]

Docs

Packages

  • @​tanstack/svelte-virtual@​3.10.8
  • @​tanstack/virtual-core@​3.10.8
  • @​tanstack/vue-virtual@​3.10.8
  • @​tanstack/lit-virtual@​3.10.8
  • @​tanstack/react-virtual@​3.10.8
  • @​tanstack/solid-virtual@​3.10.8
  • @​tanstack/angular-virtual@​3.10.8

v3.10.7

Version 3.10.7 - 9/4/24, 1:15 PM

Changes

Fix

Chore

  • deps: update dependency svelte-check to v4 (#829) (8409909) by renovate[bot]
  • deps: update all non-major dependencies (#825) (fdcb2af) by renovate[bot]
  • deps: lock file maintenance (#824) (1eb4134) by renovate[bot]
  • deps: update to @​tanstack/config 0.13.1 (#822) (6b755fe) by Lachlan Collins
  • deps: use ESLint v9 (#821) (278e6d6) by Lachlan Collins

Packages

  • @​tanstack/react-virtual@​3.10.7
  • @​tanstack/solid-virtual@​3.10.7

... (truncated)

Commits

Updates solid-js from 1.8.22 to 1.9.1

Release notes

Sourced from solid-js's releases.

v1.9.0 - LGTM!

This release like the last is focusing on small quality of life improvements and adjustments that will help us move towards 2.0. So while not the most exciting release to everyone it provides some really important features and fixes to some developers.

And unlike many previous releases the vast majority of the work and features came from PRs from the community. So really all I can say is Looks Good to Me!

Better JSX Validation

While still incomplete across templates we've added JSDOM to the compiler to better detect invalid HTML at build time by comparing what we expect the template to be with what a browser would output. This now includes things that are nested we didn't detect before like putting <a> inside other <a> tags which will lead to the browser "correcting" it in less than intuitive ways.

Improved Exports

While each environment in solid-js/web has its own methods to be used in the compiler. We are now exporting the client methods from the server to prevent weird import errors. Now these methods will throw if used in this environment but shouldn't break your build.

Additionally we have seen some issues in bundlers that incorrectly feed our ESM exports back through the browser field. While this is a known issue they all pointed issues at each other and with no intention of fixing it. We have removed the browser field in this release, meaning some legacy packages may have issues resolving browser if they don't support export conditions.

This is regretful but this blocked deployments on several platforms and since this was the only fix at our disposal after two years of attempting to push this issue to the bundlers to no avail, we've moved forward with it.

Custom Element improvements

We have a few improvements to our custom element support in this release. First off we now detect elements with the is attribute as custom elements which means all the special behavior is afforded to them.

We've also improved our event handler delegating retargetting to better handle shadow DOM events. There were cases where we skipped over part of the tree.

Finally we've added the bool: attribute namespace to handle explicitly setting certain attributes according to boolean attribute rules. While this isn't necessary for built-in booleans currently we handle most attributes as properties and we lacked a specific override. But now we have it:

<my-element bool:enable={isEnabled()}></my-element>

Support for handleEvent Syntax in Non-Delegated Events

A little known thing is that events actually also support objects instead of functions (See: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)

We(thanks @​titoBouzout) realized we can use this mechanism as a way to set advanced rules like passive or capture on this object as way to handle all current and future event attributes that browsers might add. This way we don't need specific mechanisms like oncapture: (which is now deprecated).

Instead using on: you can set the event properties you wish.

<>
  <div on:click={{
    handleEvent(e) {
      console.log("clicked", e)
    },
    once:true
  }/>
  <div on:wheel={{
    handleEvent(e) {
      e.preventDefault() // only works on not passive events
      e.stopPropagation()  
</tr></table> 

... (truncated)

Commits

Updates ts-pattern from 5.3.1 to 5.4.0

Release notes

Sourced from ts-pattern's releases.

v5.4.0

The main thing — Faster type checking 🚀

This release brings a significant perf improvement to exhaustiveness checking, which led to a ~16% decrease in the time to type-check the full test suite of TS-Pattern:

Category Before After Evolution (%)
Instantiations 6,735,991 4,562,378 -32.33%
Memory used 732,233K 746,454K 1.95%
Assignability cache size 209,959 205,926 -1.92%
Identity cache size 28,093 28,250 0.56%
Check time 5.78s 4.83s -16.44%

What's Changed

New Contributors

Full Changelog: gvergnaud/ts-pattern@v5.3.1...v5.4.0

Commits
  • 65a8567 5.4.0
  • e7fd119 Merge pull request #284 from changwoolab/fix/readonly-exhaustive
  • 5a1e7e0 Update tests/exhaustive-match.test.ts
  • 5196f04 chore: minor unit test modification
  • 979b358 refactor: uses helper utils
  • 980e4d0 refactor: move test to exhaustive-match.test.ts
  • c5778f3 code: remove unused type
  • e9c9ee8 Merge pull request #286 from gvergnaud/gvergnaud/improve-type-checking-perfor...
  • 8d23bc4 perf: improve type checking performance of BuildMany
  • e76182d Merge pull request #283 from gvergnaud/dependabot/npm_and_yarn/examples/gif-f...
  • Additional commits viewable in compare view

Updates valibot from 0.41.0 to 0.42.1

Release notes

Sourced from valibot's releases.

v0.42.1

  • Fix function type declaration of _run property

v0.42.0

Many thanks to @​ajfhs812, @​andrew-d-jackson and @​declanlscott for contributing to this release.

  • Add metadata action to add custom metadata to a schema
  • Add title metadata action to add a title to a schema (discussion #826)
  • Add decimal action to validate integer and float strings (pull request #823)
  • Rename decimal action to digits (pull request #823)
  • Rename NoPipe type to SchemaWithoutPipe
  • Fix inference of generics in IssueDotPath type (issue #814)
Commits
  • 96be15f Bump version of valibot to v0.42.1
  • e5f07f1 Add @​fabulousgk as sponsor in Credits component
  • 6e5b6ec Fix function type declaration of _run property
  • 59074a2 Merge pull request #831 from EltonLobo07/doc/add-rawCheckAsync-with-schema
  • 990cfb3 Improve example of rawCheckAsync API reference
  • 8802fa6 add API refs of rawCheck action's internal types
  • 2516628 Merge pull request #834 from gcornut/update_json_schema_tools_on_ecosystem_page
  • 5d0268b Update JSON schema tools on ecosystem page
  • 62529d2 Investigate, understand and partially resolve TS errors
  • 6596020 Add missing reference to chnagelog of to-json-schema
  • Additional commits viewable in compare view

Updates @biomejs/biome from 1.8.3 to 1.9.2

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.9.2

CLI

New features

Bug fixes

  • Fix #3917, where the fixed files were incorrectly computed. Contributed by @​ematipico
  • Fixed an issue that caused GritQL contains queries to report false positives when the matched node appeared inside a sibling node. Contributed by @​arendjr

Editors

Bug fixes

  • Fix #3923. Now the .editorconfig is correctly parsed by the LSP, and the options are correctly applied to files when formatting is triggered. Plus, the Biome LSP now watches for any change to the .editorconfig, and updates the formatting settings.

  • Reduced the number of log files generated by the LSP server. Now the maximum number of logs saved on disk is seven. Contributed by @​ematipico

  • Fix the code actions capabilities available in the LSP Biome server. Before, the LSP was using the default capabilities, which resulted in pulling code actions even when they were disabled by the editor.

    This means that the code actions are pulled by the client only when the editor enables quickfix.biome, source.organizeImports.biome and source.fixAll.biome.

    Now, if you enable organizeImports.enabled: true in the biome.json, and then you configure your editor with the following code action source.organizeImports.biome: false, the editor won't sort the imports.

    Contributed by @​ematipico

Linter

New features

Bug fixes

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

v1.9.2 (2024-09-19)

CLI

New features

Bug fixes

  • Fix #3917, where the fixed files were incorrectly computed. Contributed by @​ematipico
  • Fixed an issue that caused GritQL contains queries to report false positives when the matched node appeared inside a sibling node. Contributed by @​arendjr

Editors

Bug fixes

  • Fix #3923. Now the .editorconfig is correctly parsed by the LSP, and the options are correctly applied to files when formatting is triggered. Plus, the Biome LSP now watches for any change to the .editorconfig, and updates the formatting settings.

  • Reduced the number of log files generated by the LSP server. Now the maximum number of logs saved on disk is seven. Contributed by @​ematipico

  • Fix the code actions capabilities available in the LSP Biome server. Before, the LSP was using the default capabilities, which resulted in pulling code actions even when they were disabled by the editor.

    This means that the code actions are pulled by the client only when the editor enables quickfix.biome, source.organizeImports.biome and source.fixAll.biome.

    Now, if you enable organizeImports.enabled: true in the biome.json, and then you configure your editor with the following code action source.organizeImports.biome: false, the editor won't sort the imports.

    Contributed by @​ematipico

Linter

New features

Bug fixes

... (truncated)

Commits

Updates @macaron-css/solid from 1.5.1 to 1.5.3

Release notes

Sourced from @​macaron-css/solid's releases.

v1.5.3

Version 1.5.3 - 4/14/2024, 11:00 PM

Changes

Fix

  • depend on latest version of core (130dc1a) by Mokshit06
  • link correct type defs in solid adapter (f2d1a87) by Mokshit06
  • export types of react & solid adapter, esm issues with vite & qwik (85a1e74) by Mokshit06

Chore

  • allow publishing specific packages (1881956) by Mokshit06
  • remove unnecessary validation (b043c51) by Mokshit06

Docs

  • fix inline css-var assignment example (#59) (9895043) by Jiwon Jeon

Packages

  • @​macaron-css/react@​1.5.3
  • @​macaron-css/qwik@​1.5.3
  • @​macaron-css/solid@​1.5.3

v1.5.2

Version 1.5.2 - 4/13/2024, 12:52 AM

Changes

Fix

  • export types of react & solid adapter, esm issues with vite & qwik (5238994) by Mokshit06

Chore

  • remove unnecessary validation (7bc5f37) by Mokshit06
  • switch site from yarn to npm (2120d0d) by Mokshit06

Packages

  • @​macaron-css/core@​1.5.2
  • @​macaron-css/qwik@​1.5.2
  • @​macaron-css/react@​1.5.2
  • @​macaron-css/solid@​1.5.2
Commits
  • 130dc1a fix: depend on latest version of core
  • f2d1a87 fix: link correct type defs in solid adapter
  • 61f1e30 release: v1.5.2
  • 85a1e74 fix: export types of react & solid adapter, esm issues with vite & qwik
  • 267b922 release: v1.5.1
  • See full diff in compare view

Updates @tanstack/virtual-core from 3.10.6 to 3.10.8

Release notes

Sourced from @​tanstack/virtual-core's releases.

v3.10.8

Version 3.10.8 - 9/16/24, 2:22 PM

Changes

Fix

  • virtual-core: ensure getTotalSize returns 0 for empty list (#836) (9f8ac01) by Lucas Weng

Chore

  • deps: update all non-major dependencies (#837) (54f2be6) by renovate[bot]
  • deps: update all non-major dependencies (#833) (661a956) by renovate[bot]

Docs

Packages

  • @​tanstack/svelte-virtual@​3.10.8
  • @​tanstack/virtual-core@​3.10.8
  • @​tanstack/vue-virtual@​3.10.8
  • @​tanstack/lit-virtual@​3.10.8
  • @​tanstack/react-virtual@​3.10.8
  • @​tanstack/solid-virtual@​3.10.8
  • @​tanstack/angular-virtual@​3.10.8

v3.10.7

Version 3.10.7 - 9/4/24, 1:15 PM

Changes

Fix

Chore

  • deps: update dependency svelte-check to v4 (#829) (8409909) by renovate[bot]
  • deps: update all non-major dependencies (#825) (fdcb2af) by renovate[bot]
  • deps: lock file maintenance (#824) (1eb4134) by renovate[bot]
  • deps: update to @​tanstack/config 0.13.1 (#822) (6b755fe) by Lachlan Collins
  • deps: use ESLint v9 (#821) (278e6d6) by Lachlan Collins

Packages

  • @​tanstack/react-virtual@​3.10.7
  • @​tanstack/solid-virtual@​3.10.7

... (truncated)

Commits

Updates @types/node from 22.5.2 to 22.7.4

Commits

Updates jsdom from 25.0.0 to 25.0.1

Release notes

Sourced from jsdom's releases.

Version 25.0.1

  • Updated dependencies, notably tough-cookie, which no longer prints a deprecation warning.
Changelog

Sourced from jsdom's changelog.

25.0.1

  • Updated dependencies, notably tough-cookie, which no longer prints a deprecation warning.
Commits

Updates typescript from 5.5.4 to 5.6.2

Release notes

Sourced from typescript's releases.

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • e6914a5 Bump version to 5.6.1-rc and LKG
  • 34121c4 Update LKG
  • 2a30c2a Merge remote-tracking branch 'origin/main' into release-5.6
  • 936a79b Expose TypeChecker. getAwaitedType to public (#59268)
  • Additional commits viewable in compare view

Updates vite from 5.4.2 to 5.4.8

Changelog

Sourced from vite's changelog.

5.4.8 (2024-09-25)

5.4.7 (2024-09-20)

5.4.6 (2024-09-16)

5.4.5 (2024-09-13)

5.4.4 (2024-09-11)

  • fix: backport #17997, ensure req...

    Description has been truncated

Bumps the non-majors group in /dashboard with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [@connectrpc/connect](https://github.com/connectrpc/connect-es/tree/HEAD/packages/connect) | `1.4.0` | `1.5.0` |
| [@connectrpc/connect-web](https://github.com/connectrpc/connect-es/tree/HEAD/packages/connect-web) | `1.4.0` | `1.5.0` |
| [@modular-forms/solid](https://github.com/fabian-hiller/modular-forms) | `0.22.1` | `0.23.0` |
| [@solidjs/router](https://github.com/solidjs/solid-router) | `0.14.2` | `0.14.7` |
| [@tanstack/solid-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/solid-virtual) | `3.10.6` | `3.10.8` |
| [solid-js](https://github.com/solidjs/solid) | `1.8.22` | `1.9.1` |
| [ts-pattern](https://github.com/gvergnaud/ts-pattern) | `5.3.1` | `5.4.0` |
| [valibot](https://github.com/fabian-hiller/valibot) | `0.41.0` | `0.42.1` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.8.3` | `1.9.2` |
| [@macaron-css/solid](https://github.com/mokshit06/macaron/tree/HEAD/packages/solid) | `1.5.1` | `1.5.3` |
| [@tanstack/virtual-core](https://github.com/TanStack/virtual/tree/HEAD/packages/virtual-core) | `3.10.6` | `3.10.8` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.2` | `22.7.4` |
| [jsdom](https://github.com/jsdom/jsdom) | `25.0.0` | `25.0.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.6.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.2` | `5.4.8` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.0.5` | `2.1.1` |


Updates `@connectrpc/connect` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/connectrpc/connect-es/releases)
- [Commits](https://github.com/connectrpc/connect-es/commits/v1.5.0/packages/connect)

Updates `@connectrpc/connect-web` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/connectrpc/connect-es/releases)
- [Commits](https://github.com/connectrpc/connect-es/commits/v1.5.0/packages/connect-web)

Updates `@modular-forms/solid` from 0.22.1 to 0.23.0
- [Release notes](https://github.com/fabian-hiller/modular-forms/releases)
- [Commits](https://github.com/fabian-hiller/modular-forms/commits)

Updates `@solidjs/router` from 0.14.2 to 0.14.7
- [Changelog](https://github.com/solidjs/solid-router/blob/main/CHANGELOG.md)
- [Commits](https://github.com/solidjs/solid-router/commits)

Updates `@tanstack/solid-virtual` from 3.10.6 to 3.10.8
- [Release notes](https://github.com/TanStack/virtual/releases)
- [Commits](https://github.com/TanStack/virtual/commits/v3.10.8/packages/solid-virtual)

Updates `solid-js` from 1.8.22 to 1.9.1
- [Release notes](https://github.com/solidjs/solid/releases)
- [Changelog](https://github.com/solidjs/solid/blob/main/CHANGELOG.md)
- [Commits](https://github.com/solidjs/solid/commits)

Updates `ts-pattern` from 5.3.1 to 5.4.0
- [Release notes](https://github.com/gvergnaud/ts-pattern/releases)
- [Commits](gvergnaud/ts-pattern@v5.3.1...v5.4.0)

Updates `valibot` from 0.41.0 to 0.42.1
- [Release notes](https://github.com/fabian-hiller/valibot/releases)
- [Commits](fabian-hiller/valibot@v0.41.0...v0.42.1)

Updates `@biomejs/biome` from 1.8.3 to 1.9.2
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.9.2/packages/@biomejs/biome)

Updates `@macaron-css/solid` from 1.5.1 to 1.5.3
- [Release notes](https://github.com/mokshit06/macaron/releases)
- [Commits](https://github.com/mokshit06/macaron/commits/v1.5.3/packages/solid)

Updates `@tanstack/virtual-core` from 3.10.6 to 3.10.8
- [Release notes](https://github.com/TanStack/virtual/releases)
- [Commits](https://github.com/TanStack/virtual/commits/v3.10.8/packages/virtual-core)

Updates `@types/node` from 22.5.2 to 22.7.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `jsdom` from 25.0.0 to 25.0.1
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@25.0.0...25.0.1)

Updates `typescript` from 5.5.4 to 5.6.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.4...v5.6.2)

Updates `vite` from 5.4.2 to 5.4.8
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.8/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.8/packages/vite)

Updates `vitest` from 2.0.5 to 2.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.1/packages/vitest)

---
updated-dependencies:
- dependency-name: "@connectrpc/connect"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@connectrpc/connect-web"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@modular-forms/solid"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@solidjs/router"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: "@tanstack/solid-virtual"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: solid-js
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: ts-pattern
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: valibot
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@macaron-css/solid"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: "@tanstack/virtual-core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: jsdom
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 1, 2024
Copy link

github-actions bot commented Oct 1, 2024

Preview (prod backend + PR dashboard) → https://962.ns-preview.trapti.tech/

@pirosiki197 pirosiki197 merged commit 51d7e28 into main Oct 5, 2024
19 checks passed
@pirosiki197 pirosiki197 deleted the dependabot/npm_and_yarn/dashboard/non-majors-bd8fd983e7 branch October 5, 2024 13:05
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant