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

npm: bump the all group with 11 updates #64

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 2024

Bumps the all group with 11 updates:

Package From To
next 14.0.4 14.1.0
usehooks-ts 2.9.1 2.12.1
zustand 4.4.7 4.5.0
@next/eslint-plugin-next 14.0.4 14.1.0
@types/node 20.11.0 20.11.16
@types/react 18.2.47 18.2.52
autoprefixer 10.4.16 10.4.17
eslint-plugin-tailwindcss 3.13.1 3.14.1
happy-dom 13.0.5 13.3.8
prettier 3.2.1 3.2.4
vitest 1.2.0 1.2.2

Updates next from 14.0.4 to 14.1.0

Release notes

Sourced from next's releases.

v14.1.0

Core Changes

  • Turbopack: switch to a single client components entrypoint: #59352
  • Update swc_core to v0.86.98 and turbopack: #59393
  • Fix cases for the optimize_server_react transform: #59390
  • Use new JSX transform: #56294
  • loading.tsx should have no effect on partial rendering when PPR is enabled: #59196
  • Update font data: #59426
  • Remove CacheNode.status field: #59472
  • Rename CacheNode.data → .lazyData : #59473
  • Generate Params Cleanup: #59431
  • Fix webpack chunks handling in traces: #59498
  • Rename CacheNode.subTreeData -> .rsc : #59491
  • fix NODE_OPTIONS=inspect: #59530
  • Add CacheNode.prefetchRsc field: #59537
  • allow passing wildcard domains in serverActions.allowedDomains: #59428
  • Page Info Cleanup: #59430
  • Fix force-static and fetch no-store cases: #59549
  • Should not show no index for client rendering bailout: #59531
  • Enable build worker by default: #59405
  • Fork navigateReducer into PPR and non-PPR versions: #59538
  • cleanup magic segment strings: #59552
  • chore: update Turbopack: #59589
  • Fix another magic segment string constant: #59591
  • Make CacheNodeSeedData match FlightRouterState more closely: #59590
  • transpilePackages should override default settings for external packages: #59385
  • move segment constants to separate file: #59587
  • Revert "Page Info Cleanup (#59430)": #59592
  • Fix useOptimistic in server components bug. Add tests for invalid React server APIs: #59621
  • Partial Pre Rendering Headers: #59447
  • Add tests for invalid React server APIs: #59622
  • Refactor setup-dev-bundler to make Turbopack/Webpack split clearer: #59650
  • refactor and simplify app dynamic components: #59658
  • Change manifestPath to pagesManifestPath: #59657
  • Fix issue with outputFileTracingExcludes and pages/api edge runtime: #59157
  • Update font data: #59722
  • Remove path normalization logic when uploading .next/trace traces: #59305
  • LayoutRouter: Support segment value of Promise to asynchronously bail out and trigger a server patch: #59724
  • fix: Allow start turbopack dev server for a project using middleware: #59759
  • fix: gracefully shutdown server: #59551
  • Revert "fix: gracefully shutdown server (#59551)": #59792
  • Optionally bundle legacy react-dom/server APIs based on usage: #59737
  • fix default handling in route groups that handle interception: #59752
  • Transpile all code on app browser layer: #59569
  • Initial implementation of PPR client navigations: #59725
  • fix(turbopack): prevent edge entrypoint from becoming an async module: #59818
  • Ensure we validate revalidate configs properly: #59822
  • Update error check in validateRevalidate: #59826
  • Rename confusing loaders: #59827

... (truncated)

Commits

Updates usehooks-ts from 2.9.1 to 2.12.1

Release notes

Sourced from usehooks-ts's releases.

[email protected]

Patch Changes

  • Don't remove comments during package build to keep JSdoc comments

[email protected]

Minor Changes

Patch Changes

[email protected]

Minor Changes

  • add1431: Created useUnmount hook
  • add1431: Created useDebounceCallback and useDebounceValue hooks
  • add1431: Depreciated useDebounce hook (replaced by useDebounceCallback or useDebounceValue)
  • fc8a30e: Fix hydration issues in both useScreen and useMediaQuery (Fixes #394, thanks to @​bryantcodesart)
  • 4a9fc88: Introduce the SSR-friendly new optional { initializeWithValue?: boolean } parameter to useLocalStorage, useReadLocalStorage, useSessionStorage, useDarkMode, useTernaryDarkMode, useMediaQuery, useScreen, useWindowSize and useElementSize, see #451.
  • 5c210c1: Add defaultValue option to useTernaryDarkMode and update its signature (using function overload for smooth migration)
  • 5c210c1: Update useDarkMode signature (using function overload for smooth migration)
  • 0321342, 4a9fc88: Drop Map, Set and Date supports in use*Storage hooks, it isn't compatible with useReadLocalStorage making the API un-consistent. Use a custom serializer/deserializer instead.

Patch Changes

  • add1431: Upgrade dependencies
  • a192167: Upgraded react and @testing-library/react (thanks to @​TheHaff)
  • 0321342: Make Typescript and @typescript-eslint stricter to catch bugs sooner
  • 382161a: Depreciate useImageOnLoad, too opinionated
  • 382161a: Add JSdoc comments to improve DX via in-IDE documentation
  • a192167: Migrate from jest to vitest (making test-suite execution 2 times faster)

[email protected]

2.10.0

Minor Changes

  • 8f3c90f: Enable setting localStorage key for useDarkTheme & useTernaryDarkMode (#298 by @​ubarbaxor)
  • ae47c9a: Expose setting dark mode value directly (#299 by ubarbaxor)
  • 771afa5: Add serialization support for use-*-storage hooks

Patch Changes

  • a816d6b: Depreciated useSsr #258
  • 42f3a3a: Remove the need of commenting out useEffect deps in useMediaQuery (#383 by @​lisandro52)
  • 9bc05f4: Fix hydration mismatch on use***Storage (fixes #176, #369 with #320 & #251)
  • 771afa5: Add Date, Set & Map support to use*Storage (#309 by @​AlecsFarias)

... (truncated)

Commits
  • 9f6c3bb 🐛 Keep JSdoc comments in the compiled /dist and bump version
  • f8cfe73 🔖 Update version
  • b8ee088 fix: move lodash.debounce to dependencies from peerDependencies (#459)
  • 05375bf 🔧 Update the hook blacklist for unit testing
  • b83fcaf chore(deps): update actions/setup-node action to v4 (#455)
  • 7f2ef22 chore(deps): update dependency @​types/node to v20.11.10 (#454)
  • cb6eb5c ✨ feat: add an option to reset to default document title on unmount for useDo...
  • 9f48970 Add useClickAnyWhere tests (#353)
  • 781378a 🔖 Update version
  • 4a9fc88 ✨ Feature: declarative SSR (#451)
  • Additional commits viewable in compare view

Updates zustand from 4.4.7 to 4.5.0

Release notes

Sourced from zustand's releases.

v4.5.0

This version adds a new capability for SSR/Hydration.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.4.7...v4.5.0

Commits
  • 13830c1 4.5.0
  • d12b4fb chore(deps): update dev dependencies (#2297)
  • 43a2b11 fix: Add deprecation notice for getServerState() in WithReact type (#2266)
  • 740033c feat: getInitialState (#2277)
  • 4be1e9e fix(docs): errors and types fix for URL state example (#2218)
  • 517524d Adding Zusty (zustand dev tool) to the third party libraries (#2267)
  • a4578fa docs: minor typo fix in flux-inspired-practice.md (#2252)
  • 41838c5 chore(docs): rewrite to remove deprecated references in persist docs (#2248)
  • 9baf0a5 chore(test): stop testing deprecated features and test subscribe in vanilla (...
  • 662f38a docs(immer): change demo url (#2239)
  • Additional commits viewable in compare view

Updates @next/eslint-plugin-next from 14.0.4 to 14.1.0

Release notes

Sourced from @​next/eslint-plugin-next's releases.

v14.1.0

Core Changes

  • Turbopack: switch to a single client components entrypoint: #59352
  • Update swc_core to v0.86.98 and turbopack: #59393
  • Fix cases for the optimize_server_react transform: #59390
  • Use new JSX transform: #56294
  • loading.tsx should have no effect on partial rendering when PPR is enabled: #59196
  • Update font data: #59426
  • Remove CacheNode.status field: #59472
  • Rename CacheNode.data → .lazyData : #59473
  • Generate Params Cleanup: #59431
  • Fix webpack chunks handling in traces: #59498
  • Rename CacheNode.subTreeData -> .rsc : #59491
  • fix NODE_OPTIONS=inspect: #59530
  • Add CacheNode.prefetchRsc field: #59537
  • allow passing wildcard domains in serverActions.allowedDomains: #59428
  • Page Info Cleanup: #59430
  • Fix force-static and fetch no-store cases: #59549
  • Should not show no index for client rendering bailout: #59531
  • Enable build worker by default: #59405
  • Fork navigateReducer into PPR and non-PPR versions: #59538
  • cleanup magic segment strings: #59552
  • chore: update Turbopack: #59589
  • Fix another magic segment string constant: #59591
  • Make CacheNodeSeedData match FlightRouterState more closely: #59590
  • transpilePackages should override default settings for external packages: #59385
  • move segment constants to separate file: #59587
  • Revert "Page Info Cleanup (#59430)": #59592
  • Fix useOptimistic in server components bug. Add tests for invalid React server APIs: #59621
  • Partial Pre Rendering Headers: #59447
  • Add tests for invalid React server APIs: #59622
  • Refactor setup-dev-bundler to make Turbopack/Webpack split clearer: #59650
  • refactor and simplify app dynamic components: #59658
  • Change manifestPath to pagesManifestPath: #59657
  • Fix issue with outputFileTracingExcludes and pages/api edge runtime: #59157
  • Update font data: #59722
  • Remove path normalization logic when uploading .next/trace traces: #59305
  • LayoutRouter: Support segment value of Promise to asynchronously bail out and trigger a server patch: #59724
  • fix: Allow start turbopack dev server for a project using middleware: #59759
  • fix: gracefully shutdown server: #59551
  • Revert "fix: gracefully shutdown server (#59551)": #59792
  • Optionally bundle legacy react-dom/server APIs based on usage: #59737
  • fix default handling in route groups that handle interception: #59752
  • Transpile all code on app browser layer: #59569
  • Initial implementation of PPR client navigations: #59725
  • fix(turbopack): prevent edge entrypoint from becoming an async module: #59818
  • Ensure we validate revalidate configs properly: #59822
  • Update error check in validateRevalidate: #59826
  • Rename confusing loaders: #59827

... (truncated)

Commits

Updates @types/node from 20.11.0 to 20.11.16

Commits

Updates @types/react from 18.2.47 to 18.2.52

Commits

Updates autoprefixer from 10.4.16 to 10.4.17

Release notes

Sourced from autoprefixer's releases.

10.4.17

  • Fixed user-select: contain prefixes.
Changelog

Sourced from autoprefixer's changelog.

10.4.17

  • Fixed user-select: contain prefixes.
Commits

Updates eslint-plugin-tailwindcss from 3.13.1 to 3.14.1

Release notes

Sourced from eslint-plugin-tailwindcss's releases.

v3.14.1

Tailwind CSS 3.4.0

See #297

Commits

Updates happy-dom from 13.0.5 to 13.3.8

Release notes

Sourced from happy-dom's releases.

v13.3.8

👷‍♂️ Patch fixes

v13.3.7

👷‍♂️ Patch fixes

  • Removes validation of PR commit messages from Github workflow as it will fallback to patch version anyway - By @​capricorn86 in task #1249

v13.3.6

👷‍♂️ Patch fixes

  • Adds support for PR username in release notes if it is not possible to retrieve Github username based on commit email - By @​capricorn86 in task #1247

v13.3.5

🎨 Features

  • Support for passing pseudo-selectors as argument of :not in query selectors - By @​gdorsi in task #1191
  • Add support for TouchEvent and Touch - By @​visualjerk in task #1186

👷‍♂️ Patch fixes

  • Fixes problem with calculating next version by updating the package "happy-conventional-commit" - By @​capricorn86 in task #1244

v13.3.4

👷‍♂️ Patch fixes

v13.3.3

👷‍♂️ Patch fixes

  • Updates documentation. (#1240)

v13.3.2

👷‍♂️ Patch fixes

v13.3.1

👷‍♂️ Patch fixes

  • Improves documentation for "@​happy-dom/global-registrator". (#1233)

v13.3.0

🎨 Features

  • Adds support for sending in Window options to GlobalRegistrator.register() in "@​happy-dom/global-registrator". (#1105)

👷‍♂️ Patch fixes

  • Fixes problem with getters and setters not being added to the global object when using GlobalRegistrator.register() in "@​happy-dom/global-registrator". (#1105)

v13.2.2

👷‍♂️ Patch fixes

... (truncated)

Commits
  • 6cbcc10 Merge pull request #1252 from capricorn86/1251-update-documentation
  • c6a0b6b fix: #1251 Updates documentation
  • 94fb7fc Merge pull request #1250 from capricorn86/1249-remove-validation-of-commit-me...
  • acaa186 fix: #1249 Removes validation of PR commit messages from Github workflow as...
  • c80cc72 Merge pull request #1248 from capricorn86/1247-add-support-for-pr-author-to-r...
  • 03a79ea fix: #1247 Adds support for PR username in release notes if it is not possi...
  • 0f0be8e Merge pull request #1245 from capricorn86/1244-problem-with-calculating-next-...
  • 5ba1e39 fix: #1244 Fixes problem with calculcating next version by updating happy-c...
  • dc4bdc4 Merge pull request #1187 from visualjerk/task/1186-support-touch-event
  • 0eb1fd8 Merge branch 'master' into task/1186-support-touch-event
  • Additional commits viewable in compare view

Updates prettier from 3.2.1 to 3.2.4

Release notes

Sourced from prettier's releases.

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.2.4

diff

Fix incorrect parser inference (#15947 by @​fisker)

Files like .eslintrc.json were incorrectly formatted as JSONC files.

// Input
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "jsonc" }
// Prettier 3.2.4
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "json" }

3.2.3

diff

Throw errors for invalid code (#15881 by @​fisker, @​Josh-Cena, @​auvred)

// Input
1++;
// Prettier 3.2.2
1++;
// Prettier 3.2.3
SyntaxError: Invalid left-hand side expression in unary operation (1:1)
> 1 | 1++;
| ^

// Input
try {} catch (error = 1){}
// Prettier 3.2.2
try {
} catch (error) {}
// Prettier 3.2.3
SyntaxError: Catch clause variable cannot have an initializer. (1:23)
</tr></table>

... (truncated)

Commits

Updates vitest from 1.2.0 to 1.2.2

Release notes

Sourced from vitest's releases.

v1.2.2

   🐞 Bug Fixes

    View changes on GitHub

v1.2.1

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • b1462a4 chore: release v1.2.2
  • 6689856 fix(coverage): don't crash when re-run removes earlier run's reports (#5022)
  • fff1a27 fix(vitest): don't throw an error if mocked file was already imported (#5050)
  • 6dae3fe fix(typecheck): fix ignoreSourceErrors in run mode (#5044)
  • cf5641a fix(vitest): support older NodeJS with async import.meta.resolve (#5045)
  • 915d6c4 fix(threads): mention common work-around for the logged error (#5024)
  • a9a486f fix(vitest): allow useFakeTimers to fake requestIdleCallback on non brows...
  • 253df1c fix(vitest): throw an error if vi.mock is exported (#5034)
  • 7344870 feat(vitest): expose getHooks & setHooks (#5032)
  • 9c7c0fc fix(vitest): test deep dependencies change detection (#4934)
  • 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 all group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [next](https://github.com/vercel/next.js) | `14.0.4` | `14.1.0` |
| [usehooks-ts](https://github.com/juliencrn/usehooks-ts) | `2.9.1` | `2.12.1` |
| [zustand](https://github.com/pmndrs/zustand) | `4.4.7` | `4.5.0` |
| [@next/eslint-plugin-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next) | `14.0.4` | `14.1.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.0` | `20.11.16` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.47` | `18.2.52` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.16` | `10.4.17` |
| [eslint-plugin-tailwindcss](https://github.com/francoismassart/eslint-plugin-tailwindcss) | `3.13.1` | `3.14.1` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `13.0.5` | `13.3.8` |
| [prettier](https://github.com/prettier/prettier) | `3.2.1` | `3.2.4` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.2.0` | `1.2.2` |


Updates `next` from 14.0.4 to 14.1.0
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.0.4...v14.1.0)

Updates `usehooks-ts` from 2.9.1 to 2.12.1
- [Release notes](https://github.com/juliencrn/usehooks-ts/releases)
- [Commits](https://github.com/juliencrn/usehooks-ts/compare/[email protected]@2.12.1)

Updates `zustand` from 4.4.7 to 4.5.0
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v4.4.7...v4.5.0)

Updates `@next/eslint-plugin-next` from 14.0.4 to 14.1.0
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v14.1.0/packages/eslint-plugin-next)

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

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

Updates `autoprefixer` from 10.4.16 to 10.4.17
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.16...10.4.17)

Updates `eslint-plugin-tailwindcss` from 3.13.1 to 3.14.1
- [Release notes](https://github.com/francoismassart/eslint-plugin-tailwindcss/releases)
- [Commits](francoismassart/eslint-plugin-tailwindcss@v3.13.1...v3.14.1)

Updates `happy-dom` from 13.0.5 to 13.3.8
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v13.0.5...v13.3.8)

Updates `prettier` from 3.2.1 to 3.2.4
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.2.1...3.2.4)

Updates `vitest` from 1.2.0 to 1.2.2
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.2.2/packages/vitest)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: usehooks-ts
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: zustand
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@next/eslint-plugin-next"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: eslint-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: happy-dom
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

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 Feb 3, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 10, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 10, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-f2114bbdb0 branch February 10, 2024 22:59
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