GenSpectrum / dashboards

https://genspectrum.github.io/dashboards/
GNU Affero General Public License v3.0
1 stars 0 forks source link

chore(components): bump the minorandpatch group in /components with 14 updates #160

Closed dependabot[bot] closed 3 weeks ago

dependabot[bot] commented 3 weeks ago

Bumps the minorandpatch group in /components with 14 updates:

Package From To
zod 3.22.4 3.23.0
@storybook/addon-essentials 8.0.8 8.0.9
@storybook/addon-interactions 8.0.8 8.0.9
@storybook/addon-links 8.0.8 8.0.9
@storybook/blocks 8.0.8 8.0.9
@storybook/preact 8.0.8 8.0.9
@storybook/preact-vite 8.0.8 8.0.9
@storybook/test 8.0.8 8.0.9
@storybook/web-components 8.0.8 8.0.9
@storybook/web-components-vite 8.0.8 8.0.9
msw 2.2.13 2.2.14
release-please 16.10.1 16.10.2
storybook 8.0.8 8.0.9
vite 5.2.9 5.2.10

Updates zod from 3.22.4 to 3.23.0

Release notes

Sourced from zod's releases.

v3.23.0

Zod 3.23 is now available. This is the final 3.x release before Zod 4.0. To try it out:

npm install zod

Features

z.string().date()

Zod can now validate ISO 8601 date strings. Thanks @​igalklebanov! colinhacks/zod#1766

const schema = z.string().date();
schema.parse("2022-01-01"); // OK

z.string().time()

Zod can now validate ISO 8601 time strings. Thanks @​igalklebanov! colinhacks/zod#1766

const schema = z.string().time();
schema.parse("12:00:00"); // OK

You can specify sub-second precision using the precision option:

const schema = z.string().time({ precision: 3 });
schema.parse("12:00:00.123"); // OK
schema.parse("12:00:00.123456"); // Error
schema.parse("12:00:00"); // Error

z.string().duration()

Zod can now validate ISO 8601 duration strings. Thanks @​mastermatt! colinhacks/zod#3265

const schema = z.string().duration();
schema.parse("P3Y6M4DT12H30M5S"); // OK

Improvements to z.string().datetime()

Thanks @​bchrobot colinhacks/zod#2522

You can now allow unqualified (timezone-less) datetimes using the local: true flag.

... (truncated)

Commits


Updates @storybook/addon-essentials from 8.0.8 to 8.0.9

Release notes

Sourced from @​storybook/addon-essentials's releases.

v8.0.9

8.0.9

Changelog

Sourced from @​storybook/addon-essentials's changelog.

8.0.9

Commits


Updates @storybook/addon-interactions from 8.0.8 to 8.0.9

Release notes

Sourced from @​storybook/addon-interactions's releases.

v8.0.9

8.0.9

Changelog

Sourced from @​storybook/addon-interactions's changelog.

8.0.9

Commits


Updates @storybook/addon-links from 8.0.8 to 8.0.9

Release notes

Sourced from @​storybook/addon-links's releases.

v8.0.9

8.0.9

Changelog

Sourced from @​storybook/addon-links's changelog.

8.0.9

Commits


Updates @storybook/blocks from 8.0.8 to 8.0.9

Release notes

Sourced from @​storybook/blocks's releases.

v8.0.9

8.0.9

Changelog

Sourced from @​storybook/blocks's changelog.

8.0.9

Commits


Updates @storybook/preact from 8.0.8 to 8.0.9

Release notes

Sourced from @​storybook/preact's releases.

v8.0.9

8.0.9

Changelog

Sourced from @​storybook/preact's changelog.

8.0.9

Commits


Updates @storybook/preact-vite from 8.0.8 to 8.0.9

Release notes

Sourced from @​storybook/preact-vite's releases.

v8.0.9

8.0.9

Changelog

Sourced from @​storybook/preact-vite's changelog.

8.0.9

Commits


Updates @storybook/test from 8.0.8 to 8.0.9

Release notes

Sourced from @​storybook/test's releases.

v8.0.9

8.0.9

Changelog

Sourced from @​storybook/test's changelog.

8.0.9

Commits


Updates @storybook/web-components from 8.0.8 to 8.0.9

Release notes

Sourced from @​storybook/web-components's releases.

v8.0.9

8.0.9

Changelog

Sourced from @​storybook/web-components's changelog.

8.0.9

Commits


Updates @storybook/web-components-vite from 8.0.8 to 8.0.9

Release notes

Sourced from @​storybook/web-components-vite's releases.

v8.0.9

8.0.9

Changelog

Sourced from @​storybook/web-components-vite's changelog.

8.0.9

Commits


Updates msw from 2.2.13 to 2.2.14

Release notes

Sourced from msw's releases.

v2.2.14 (2024-04-17)

Bug Fixes

Commits


Updates release-please from 16.10.1 to 16.10.2

Release notes

Sourced from release-please's releases.

v16.10.2

16.10.2 (2024-04-16)

Bug Fixes

  • disable updating peer dependencies when updatePeerDependencies is false (#2270) (2d80f12)
  • respect signoff in config (#2247) (d7d3958)
Changelog

Sourced from release-please's changelog.

16.10.2 (2024-04-16)

Bug Fixes

  • disable updating peer dependencies when updatePeerDependencies is false (#2270) (2d80f12)
  • respect signoff in config (#2247) (d7d3958)
Commits
  • 62e8dcb chore(main): release 16.10.2 (#2254)
  • 2d80f12 fix: disable updating peer dependencies when updatePeerDependencies is false ...
  • 08331fa chore(deps): update dependency ajv-formats to v3 (#2256)
  • d7d3958 fix: respect signoff in config (#2247)
  • See full diff in compare view


Updates storybook from 8.0.8 to 8.0.9

Release notes

Sourced from storybook's releases.

v8.0.9

8.0.9

Changelog

Sourced from storybook's changelog.

8.0.9

Commits


Updates vite from 5.2.9 to 5.2.10

Changelog

Sourced from vite's changelog.

5.2.10 (2024-04-20)

Commits


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all o... _Description has been truncated_