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

deps(prod): update dependency zustand to v4.5.5 #1626

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 10, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
zustand 4.2.0 -> 4.5.5 age adoption passing confidence

Release Notes

pmndrs/zustand (zustand)

v4.5.5

Compare Source

This improves the persist middleware behavior for an edge case.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.5.4...v4.5.5

v4.5.4

Compare Source

There was an issue in v4.5.3 with some bundlers.

What's Changed

Full Changelog: pmndrs/zustand@v4.5.3...v4.5.4

v4.5.3

Compare Source

v4.5.2

Compare Source

It should improve the compatibility with old browsers.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.5.1...v4.5.2

v4.5.1

Compare Source

People might have misunderstood with useStore deprecation message. Hope this mitigates it.

What's Changed

New Contributors

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

v4.5.0

Compare Source

This version adds a new capability for SSR/Hydration.

What's Changed

New Contributors

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

v4.4.7

Compare Source

There's a small fix for a use case with an non-object value in store.

What's Changed

New Contributors

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

v4.4.6

Compare Source

v4.4.5 has an issue with some TypeScript configs about module resolution. It should be fixed now. Thanks for the patience.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.4.5...v4.4.6

v4.4.5

Compare Source

Hopefully, it should fix some issues with Node.js environment including Next.js.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.4.4...v4.4.5

v4.4.4

Compare Source

There was a tiny issue in v4.4.3, which broke with some bundlers, which this version fixes.

What's Changed

Full Changelog: pmndrs/zustand@v4.4.3...v4.4.4

v4.4.3

Compare Source

The changes in v4.4.2 were troublesome for some users. This version should fix/mitigate such cases.

What's Changed

Full Changelog: pmndrs/zustand@v4.4.2...v4.4.3

v4.4.2

Compare Source

This adds useShallow hook to cover some use cases that are deprecated with v4.4.0 change. Check out the guide.

Migration Guide

#​1991 requires something like below if you are using the devtools middleware and TypeScript.

  import { devtools } from 'zustand/middleware'
+ import type {} from '@​redux-devtools/extension'
What's Changed
New Contributors

Full Changelog: pmndrs/zustand@v4.4.1...v4.4.2

v4.4.1

Compare Source

Fixes some issues reported with the deprecated feature in v4.4.0.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.4.0...v4.4.1

v4.4.0

Compare Source

This adds new zustand/traditional entry point and deprecates equalityFn from zustand.

Migration Guide

If you don't use custom equalityFn, nothing is required.

For those who use custom equalityFn such as shallow:

// previously
import { create } from 'zustand'
const useFooStore = create((set) => ...)

// now
import { createWithEqualityFn } from 'zustand/traditional'
const useFooStore = createWithEqualityFn((set) => ..., Object.is)
// Object.is the default equalityFn which can be changed to shallow or anything else

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.9...v4.4.0

v4.3.9

Compare Source

This includes a small improvement for production build mostly for Vite users. Docs have been improved too!

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.8...v4.3.9

v4.3.8

Compare Source

For persist middleware, a new option for createJSONStorage in introduced to support more cases. Note that createJSONStorage isn't a required function (and it's not very recommended as it's not type safe), and one should create a custom storage for more use cases.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.7...v4.3.8

v4.3.7

Compare Source

This includes a couple of improvements in persist middleware.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.6...v4.3.7

v4.3.6

Compare Source

This has a little improvement for library authors.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.5...v4.3.6

v4.3.5

Compare Source

v4.3.4 has a regression in CJS build. Please use this version instead.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.4...v4.3.5

v4.3.4

Compare Source

This version fixes some build configs for some edge cases.

⚠️ this version has an issue in CJS build. Please use v4.3.5.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.3...v4.3.4

v4.3.3

Compare Source

This version includes some small fixes and internal improvements.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.2...v4.3.3

v4.3.2

Compare Source

There was a regression with default export (which is deprecated) in v4.3.0 and v4.3.1. This should fix it.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.3.1...v4.3.2

v4.3.1

Compare Source

This version supersedes v4.3.0.

What's Changed

Full Changelog: pmndrs/zustand@v4.3.0...v4.3.1

v4.3.0

Compare Source

Throughout past years of development, we've learned the (mis)usage of the library. One of our goal is to provide smallest possible APIs. To go further, this version deprecates some features. They are still usable (with warnings), but will be removed in the future.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v4.2.0...v4.3.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/zustand-4.x branch from b008f63 to b7439f5 Compare January 14, 2023 02:16
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.3.1 deps(prod): update dependency zustand to v4.3.2 Jan 14, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from b7439f5 to bd64035 Compare January 31, 2023 03:24
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from bd64035 to 2020324 Compare February 10, 2023 16:11
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.3.2 deps(prod): update dependency zustand to v4.3.3 Feb 10, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 2020324 to bb81bf1 Compare February 27, 2023 05:28
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.3.3 deps(prod): update dependency zustand to v4.3.4 Feb 27, 2023
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.3.4 deps(prod): update dependency zustand to v4.3.5 Feb 28, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch 2 times, most recently from 64dd1ae to 28c6060 Compare March 6, 2023 07:24
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.3.5 deps(prod): update dependency zustand to v4.3.6 Mar 6, 2023
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.3.6 deps(prod): update dependency zustand to v4.3.7 Mar 31, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 28c6060 to 3bd6cd3 Compare March 31, 2023 16:42
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 3bd6cd3 to f7de03d Compare April 28, 2023 05:54
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.3.7 deps(prod): update dependency zustand to v4.3.8 May 4, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from f7de03d to 560f9d0 Compare May 4, 2023 11:23
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.3.8 deps(prod): update dependency zustand to v4.3.9 Jul 4, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 560f9d0 to acde9ef Compare July 4, 2023 16:48
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.3.9 deps(prod): update dependency zustand to v4.4.0 Aug 1, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from acde9ef to e1fc3fc Compare August 1, 2023 03:34
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.4.0 deps(prod): update dependency zustand to v4.4.1 Aug 7, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from e1fc3fc to 5f99871 Compare August 7, 2023 00:02
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 5f99871 to 92e3e70 Compare October 2, 2023 16:15
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.4.1 deps(prod): update dependency zustand to v4.4.2 Oct 2, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 92e3e70 to 9a63c93 Compare October 5, 2023 16:19
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.4.2 deps(prod): update dependency zustand to v4.4.3 Oct 5, 2023
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.4.3 deps(prod): update dependency zustand to v4.4.4 Oct 21, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 9a63c93 to 758d2da Compare October 21, 2023 16:24
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 758d2da to cc08171 Compare October 31, 2023 16:35
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.4.4 deps(prod): update dependency zustand to v4.4.5 Oct 31, 2023
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.4.5 deps(prod): update dependency zustand to v4.4.6 Nov 3, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from cc08171 to e18f6b2 Compare November 3, 2023 00:11
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from e18f6b2 to ceb60c2 Compare November 28, 2023 05:05
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.4.6 deps(prod): update dependency zustand to v4.4.7 Nov 28, 2023
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from ceb60c2 to 3bcdade Compare January 20, 2024 01:53
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.4.7 deps(prod): update dependency zustand to v4.5.0 Jan 20, 2024
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 3bcdade to 1cd6d5b Compare February 17, 2024 03:19
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.5.0 deps(prod): update dependency zustand to v4.5.1 Feb 17, 2024
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 1cd6d5b to a5d96f3 Compare March 2, 2024 17:49
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.5.1 deps(prod): update dependency zustand to v4.5.2 Mar 2, 2024
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from a5d96f3 to 6915388 Compare June 26, 2024 08:11
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.5.2 deps(prod): update dependency zustand to v4.5.3 Jun 26, 2024
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 6915388 to 62ad469 Compare June 26, 2024 15:03
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.5.3 deps(prod): update dependency zustand to v4.5.4 Jun 26, 2024
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 62ad469 to ae0bc98 Compare August 15, 2024 03:52
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.5.4 deps(prod): update dependency zustand to v4.5.5 Aug 15, 2024
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.5.5 deps(prod): update dependency zustand to v4.5.5 - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/zustand-4.x branch December 8, 2024 18:41
@renovate renovate bot changed the title deps(prod): update dependency zustand to v4.5.5 - autoclosed deps(prod): update dependency zustand to v4.5.5 Dec 8, 2024
@renovate renovate bot reopened this Dec 8, 2024
@renovate renovate bot force-pushed the renovate/zustand-4.x branch from 37555b9 to ae0bc98 Compare December 8, 2024 23:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants