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 9 updates #990

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
@solidjs/router 0.15.1 0.15.2
@tanstack/solid-virtual 3.11.1 3.11.2
@unocss/reset 0.65.1 0.65.3
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.3
rollup-plugin-visualizer 5.12.0 5.13.1
unocss 0.65.1 0.65.3

Updates @solidjs/router from 0.15.1 to 0.15.2

Changelog

Sourced from @​solidjs/router's changelog.

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 @unocss/reset from 0.65.1 to 0.65.3

Release notes

Sourced from @​unocss/reset's releases.

v0.65.3

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.65.2

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits
  • 30d4f80 chore: release v0.65.3
  • 20be39b chore(vscode): improve backward compatibility
  • 8158c18 refactor(vscode): rework configs system
  • a2fb0dc feat(vscode): find all references support (#4353)
  • 51df0e7 feat(inspector): improve merged selector display
  • 9ee61ef fix(inspector): improve selector merge
  • 164c125 feat(inspector): merge alias
  • ba04dec build: fix postcss build
  • 6990846 feat(core): expose cache on generator
  • 10dbd4c refactor: move generator file
  • Additional commits viewable 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.3

Commits

Updates rollup-plugin-visualizer from 5.12.0 to 5.13.1

Changelog

Sourced from rollup-plugin-visualizer's changelog.

Changelog

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 unocss from 0.65.1 to 0.65.3

Release notes

Sourced from unocss's releases.

v0.65.3

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.65.2

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits
  • 30d4f80 chore: release v0.65.3
  • 20be39b chore(vscode): improve backward compatibility
  • 8158c18 refactor(vscode): rework configs system
  • a2fb0dc feat(vscode): find all references support (#4353)
  • 51df0e7 feat(inspector): improve merged selector display
  • 9ee61ef fix(inspector): improve selector merge
  • 164c125 feat(inspector): merge alias
  • ba04dec build: fix postcss build
  • 6990846 feat(core): expose cache on generator
  • 10dbd4c refactor: move generator file
  • Additional commits viewable 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

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

| Package | From | To |
| --- | --- | --- |
| [@solidjs/router](https://github.com/solidjs/solid-router) | `0.15.1` | `0.15.2` |
| [@tanstack/solid-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/solid-virtual) | `3.11.1` | `3.11.2` |
| [@unocss/reset](https://github.com/unocss/unocss) | `0.65.1` | `0.65.3` |
| [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.3` |
| [rollup-plugin-visualizer](https://github.com/btd/rollup-plugin-visualizer) | `5.12.0` | `5.13.1` |
| [unocss](https://github.com/unocss/unocss) | `0.65.1` | `0.65.3` |


Updates `@solidjs/router` from 0.15.1 to 0.15.2
- [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 `@unocss/reset` from 0.65.1 to 0.65.3
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](unocss/unocss@v0.65.1...v0.65.3)

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.3
- [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.13.1
- [Changelog](https://github.com/btd/rollup-plugin-visualizer/blob/master/CHANGELOG.md)
- [Commits](btd/rollup-plugin-visualizer@v5.12.0...v5.13.1)

Updates `unocss` from 0.65.1 to 0.65.3
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](unocss/unocss@v0.65.1...v0.65.3)

---
updated-dependencies:
- 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: "@unocss/reset"
  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: unocss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 1, 2025
Copy link

github-actions bot commented Jan 1, 2025

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

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.

0 participants