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 across 1 directory with 12 updates #995

Merged
merged 1 commit into from
Jan 16, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 16, 2025

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

Package From To
@connectrpc/connect 2.0.0 2.0.1
@connectrpc/connect-web 2.0.0 2.0.1
@solidjs/router 0.15.1 0.15.3
@tanstack/solid-virtual 3.11.1 3.11.2
solid-js 1.9.3 1.9.4
ts-pattern 5.5.0 5.6.0
@iconify-json/material-symbols 1.2.10 1.2.12
@tanstack/virtual-core 3.10.9 3.11.2
@types/node 22.10.1 22.10.7
rollup-plugin-visualizer 5.12.0 5.14.0
typescript 5.7.2 5.7.3
vite 6.0.6 6.0.7

Updates @connectrpc/connect from 2.0.0 to 2.0.1

Release notes

Sourced from @​connectrpc/connect's releases.

v2.0.1

What's Changed

The only noteworthy changes in this release are enhancements made to the @​connectrpc/connect-migrate package.

The migration tool now handles additional scenarios for migrating your code to Connect v2:

Transforms new to create:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { create } from "@bufbuild/protobuf";
- const foo = new Foo();
+ const foo = create(FooSchema);

Transforms isMessage to use the schema:

import { isMessage } from "@bufbuild/protobuf";
- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
- isMessage(1, Foo); 
+ isMessage(1, FooSchema);

Transforms the static fromBinary, fromJson, and fromJsonString method calls:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { fromJson } from "@bufbuild/protobuf";
- Foo.fromJson(x, y);
+ fromJson(FooSchema, x, y);

In addition, if the message is a well-known type, the import path is updated accordingly.

For details on Connect v2, see the v2 release notes as well as the full migration guide.

New Contributors

Full Changelog: connectrpc/connect-es@v2.0.0...v2.0.1

Commits

Updates @connectrpc/connect-web from 2.0.0 to 2.0.1

Release notes

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

v2.0.1

What's Changed

The only noteworthy changes in this release are enhancements made to the @​connectrpc/connect-migrate package.

The migration tool now handles additional scenarios for migrating your code to Connect v2:

Transforms new to create:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { create } from "@bufbuild/protobuf";
- const foo = new Foo();
+ const foo = create(FooSchema);

Transforms isMessage to use the schema:

import { isMessage } from "@bufbuild/protobuf";
- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
- isMessage(1, Foo); 
+ isMessage(1, FooSchema);

Transforms the static fromBinary, fromJson, and fromJsonString method calls:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { fromJson } from "@bufbuild/protobuf";
- Foo.fromJson(x, y);
+ fromJson(FooSchema, x, y);

In addition, if the message is a well-known type, the import path is updated accordingly.

For details on Connect v2, see the v2 release notes as well as the full migration guide.

New Contributors

Full Changelog: connectrpc/connect-es@v2.0.0...v2.0.1

Commits

Updates @solidjs/router from 0.15.1 to 0.15.3

Changelog

Sourced from @​solidjs/router's changelog.

0.15.3

Patch Changes

  • 97184e4: more lenient on cache resuming (allow nested promises during hydration)

0.15.2

Patch Changes

  • fe5c83e: Add JSdoc
  • 9a5e350: Vite 6 compatibility
  • 20ad18f: only clear completed actions on navigation
Commits

Updates @tanstack/solid-virtual from 3.11.1 to 3.11.2

Release notes

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

v3.11.2

Version 3.11.2 - 12/16/24, 2:10 PM

Changes

Fix

  • update scrollToIndex center-alignment (#864) (b5c99b2) by christriants

Chore

  • deps: update all non-major dependencies (#900) (7e7bd9c) by renovate[bot]

Docs

  • angular-virtual: fix incorrect import in README (#895) (244f696) by Deku-nattsu

Packages

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

Updates solid-js from 1.9.3 to 1.9.4

Commits
  • 9316baf v1.9.4
  • 7f9cd3d lazy image, tagged template detection, security fixes
  • dca942a formatting
  • b93956f fix escaping in resolution done outside of DOM Expressions
  • 4d824b0 Merge branch 'main' of github.com:solidjs/solid
  • 199dd69 fix reconcile null guard
  • 32aa744 Improve resolving arguments in createResource (#2353)
  • See full diff in compare view

Updates ts-pattern from 5.5.0 to 5.6.0

Release notes

Sourced from ts-pattern's releases.

v5.6.0

This release contains two changes:

Typecheck pattern when using isMatching with 2 parameter.

It used to be possible to pass a pattern than could never match to isMatching. The new version checks that the provide pattern does match the value in second parameter:

type Pizza = { type: 'pizza'; topping: string };
type Sandwich = { type: 'sandwich'; condiments: string[] };
type Food = Pizza | Sandwich;
const fn = (food: Pizza | Sandwich) => {
if (isMatching({ type: 'oops' }, food)) {
//                  👆 used to type-check, now doesn't!
}
}

Do not use P.infer as an inference point

When using P.infer<Pattern> to type a function argument, like in the following example:

const getWithDefault = <T extends P.Pattern>(
  input: unknown,
  pattern: T,
  defaultValue: P.infer<T> //  👈
): P.infer<T> =>
  isMatching(pattern, input) ? input : defaultValue

TypeScript could get confused and find type errors in the wrong spot:

const res = getWithDefault(null, { x: P.string }, 'oops') 
//                                     👆           👆 type error should be here
//                                 but it's here 😬

This new version fixes this problem.

What's Changed

Full Changelog: gvergnaud/ts-pattern@v5.5.0...v5.6.0

Commits
  • d68fbcf 5.6.0
  • e35de42 fix: prevent NoInfer from showing up in display types
  • 514057f Merge pull request #289 from gvergnaud/dependabot/npm_and_yarn/rollup-2.79.2
  • ba71cf1 Merge pull request #302 from gvergnaud/P-infer-improvement
  • a009d89 feat(P.Pattern): support no type param
  • 16e2b2c feat(isMatching): Typecheck pattern when using isMatching wth 2 parameters
  • b6d791a feat(P.infer): Remove inference point
  • b5aa458 Remove lock files in examples
  • 94ee35d feat: Add jsr support
  • 91f32aa build(deps-dev): bump rollup from 2.79.1 to 2.79.2
  • See full diff in compare view

Updates @iconify-json/material-symbols from 1.2.10 to 1.2.12

Commits

Updates @tanstack/virtual-core from 3.10.9 to 3.11.2

Release notes

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

v3.11.2

Version 3.11.2 - 12/16/24, 2:10 PM

Changes

Fix

  • update scrollToIndex center-alignment (#864) (b5c99b2) by christriants

Chore

  • deps: update all non-major dependencies (#900) (7e7bd9c) by renovate[bot]

Docs

  • angular-virtual: fix incorrect import in README (#895) (244f696) by Deku-nattsu

Packages

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

v3.11.1

Version 3.11.1 - 12/9/24, 6:48 PM

Changes

Fix

  • react-virtual: run _didMount in useIsomorphicLayoutEffect (49df294) by hophiphip

Chore

  • deps: update all non-major dependencies (#897) (dc3564b) by renovate[bot]
  • deps: update dependency sherif to v1 (#854) (eec58f0) by renovate[bot]
  • deps: update all non-major dependencies (#890) (e42ce91) by renovate[bot]

Packages

  • @​tanstack/react-virtual@​3.11.1
  • @​tanstack/solid-virtual@​3.11.1
  • @​tanstack/vue-virtual@​3.11.1

v3.11.0

Version 3.11.0 - 12/6/24, 11:45 AM

... (truncated)

Commits

Updates @types/node from 22.10.1 to 22.10.7

Commits

Updates rollup-plugin-visualizer from 5.12.0 to 5.14.0

Changelog

Sourced from rollup-plugin-visualizer's changelog.

5.14.0

  • Return flamegraph

5.13.0

  • Remove flamegraph template
  • Merge #191. Thanks to @​guillaumeduboc
  • Update deps
  • Switch jest -> vitest
  • Switch eslint -> oxlint
  • Add test for rolldown
  • Make node v18 min required
Commits

Updates typescript from 5.7.2 to 5.7.3

Release notes

Sourced from typescript's releases.

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

Commits
  • a5e123d Update LKG
  • 8bc0204 🤖 Pick PR #60828 (Fix CodeQL configuration, releases) into release-5.7 (#60923)
  • 7aa63df 🤖 Pick PR #60393 (Don't try to add an implicit undefi...) into release-5.7 (#...
  • 9df7c36 Bump version to 5.7.3 and LKG
  • e167412 🤖 Pick PR #60794 (Harden sanitizeLog against incorr...) into release-5.7 (#...
  • 9ba364c Fix coverage build on release-5.7 (#60792)
  • 4b7441a 🤖 Pick PR #60680 (Mark the inherited any-based index ...) into release-5.7 (#...
  • e844dc3 Cherry-pick #60402, #60440, #60616 into release-5.7 (#60777)
  • 21b02a1 🤖 Pick PR #60749 (Do not require import attribute on ...) into release-5.7 (#...
  • b82fd16 🤖 Pick PR #60576 (Avoid incorrectly reusing assertion...) into release-5.7 (#...
  • Additional commits viewable in compare view

Updates vite from 6.0.6 to 6.0.7

Release notes

Sourced from vite's releases.

v6.0.7

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.0.7 (2025-01-02)

Commits
  • a671e58 release: v6.0.7
  • 1c102d5 fix(ssr): fix semicolon injection by ssr transform (#19097)
  • 677508b perf: skip globbing for static path in warmup (#19107)
  • b178c90 fix: skip the plugin if it has been called before with the same id and import...
  • a492253 fix(html): error while removing vite-ignore attribute for inline script (#1...
  • b07c036 feat(css): show lightningcss warnings (#19076)
  • f7b1964 fix: fix minify when builder.sharedPlugins: true (#19025)
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ates

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

| Package | From | To |
| --- | --- | --- |
| [@connectrpc/connect](https://github.com/connectrpc/connect-es/tree/HEAD/packages/connect) | `2.0.0` | `2.0.1` |
| [@connectrpc/connect-web](https://github.com/connectrpc/connect-es/tree/HEAD/packages/connect-web) | `2.0.0` | `2.0.1` |
| [@solidjs/router](https://github.com/solidjs/solid-router) | `0.15.1` | `0.15.3` |
| [@tanstack/solid-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/solid-virtual) | `3.11.1` | `3.11.2` |
| [solid-js](https://github.com/solidjs/solid) | `1.9.3` | `1.9.4` |
| [ts-pattern](https://github.com/gvergnaud/ts-pattern) | `5.5.0` | `5.6.0` |
| [@iconify-json/material-symbols](https://github.com/iconify/icon-sets) | `1.2.10` | `1.2.12` |
| [@tanstack/virtual-core](https://github.com/TanStack/virtual/tree/HEAD/packages/virtual-core) | `3.10.9` | `3.11.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.1` | `22.10.7` |
| [rollup-plugin-visualizer](https://github.com/btd/rollup-plugin-visualizer) | `5.12.0` | `5.14.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.0.6` | `6.0.7` |



Updates `@connectrpc/connect` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/connectrpc/connect-es/releases)
- [Commits](https://github.com/connectrpc/connect-es/commits/v2.0.1/packages/connect)

Updates `@connectrpc/connect-web` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/connectrpc/connect-es/releases)
- [Commits](https://github.com/connectrpc/connect-es/commits/v2.0.1/packages/connect-web)

Updates `@solidjs/router` from 0.15.1 to 0.15.3
- [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.11.1 to 3.11.2
- [Release notes](https://github.com/TanStack/virtual/releases)
- [Commits](https://github.com/TanStack/virtual/commits/v3.11.2/packages/solid-virtual)

Updates `solid-js` from 1.9.3 to 1.9.4
- [Release notes](https://github.com/solidjs/solid/releases)
- [Changelog](https://github.com/solidjs/solid/blob/main/CHANGELOG.md)
- [Commits](solidjs/solid@v1.9.3...v1.9.4)

Updates `ts-pattern` from 5.5.0 to 5.6.0
- [Release notes](https://github.com/gvergnaud/ts-pattern/releases)
- [Commits](gvergnaud/ts-pattern@v5.5.0...v5.6.0)

Updates `@iconify-json/material-symbols` from 1.2.10 to 1.2.12
- [Commits](https://github.com/iconify/icon-sets/commits)

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

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

Updates `rollup-plugin-visualizer` from 5.12.0 to 5.14.0
- [Changelog](https://github.com/btd/rollup-plugin-visualizer/blob/master/CHANGELOG.md)
- [Commits](btd/rollup-plugin-visualizer@v5.12.0...v5.14.0)

Updates `typescript` from 5.7.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.7.3)

Updates `vite` from 6.0.6 to 6.0.7
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.0.7/packages/vite)

---
updated-dependencies:
- dependency-name: "@connectrpc/connect"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: "@connectrpc/connect-web"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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-patch
  dependency-group: non-majors
- dependency-name: ts-pattern
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@iconify-json/material-symbols"
  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-minor
  dependency-group: non-majors
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: rollup-plugin-visualizer
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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 Jan 16, 2025
Copy link

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

@cp-20 cp-20 merged commit 1aacb0b into main Jan 16, 2025
8 checks passed
@cp-20 cp-20 deleted the dependabot/npm_and_yarn/dashboard/non-majors-989599a35a branch January 16, 2025 15:46
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