-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Comparing changes
Open a pull request
base repository: pmndrs/zustand
base: v4.3.7
head repository: pmndrs/zustand
compare: v4.3.8
- 19 commits
- 49 files changed
- 15 contributors
Commits on Apr 7, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2970ed2 - Browse repository at this point
Copy the full SHA 2970ed2View commit details -
Configuration menu - View commit details
-
Copy full SHA for f94ad23 - Browse repository at this point
Copy the full SHA f94ad23View commit details -
fix(docs): update testing doc (#1739)
* Update formatting * Update testing doc * Fix formatting * Minor changes * Update testing doc
Configuration menu - View commit details
-
Copy full SHA for 4c2c482 - Browse repository at this point
Copy the full SHA 4c2c482View commit details
Commits on Apr 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6d47b60 - Browse repository at this point
Copy the full SHA 6d47b60View commit details
Commits on Apr 12, 2023
-
feature(demo): update demo to support copying typescript code (#1740)
* Update demo * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes * Minor changes
Configuration menu - View commit details
-
Copy full SHA for 6b716fb - Browse repository at this point
Copy the full SHA 6b716fbView commit details
Commits on Apr 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7cdb5f5 - Browse repository at this point
Copy the full SHA 7cdb5f5View commit details
Commits on Apr 17, 2023
-
export const useBoundStore = create((set) => ({ count: 0, text: 'hello', inc: () => set((state) => ({ count: state.count + 1 })), setText: (text) => set({ text }), }) example on this page is missing a trailing parenthesis
Configuration menu - View commit details
-
Copy full SHA for df38aa8 - Browse repository at this point
Copy the full SHA df38aa8View commit details
Commits on Apr 18, 2023
-
docs: fix document error of persist with hydration (#1758)
* docs: fix document error of persist with hydration * Update persisting-store-data.md * Apply suggestions from code review Co-authored-by: Blazej Sewera <code@sewera.dev> * Update persisting-store-data.md --------- Co-authored-by: Blazej Sewera <code@sewera.dev>
Configuration menu - View commit details
-
Copy full SHA for a999f7a - Browse repository at this point
Copy the full SHA a999f7aView commit details
Commits on Apr 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for da45038 - Browse repository at this point
Copy the full SHA da45038View commit details
Commits on Apr 24, 2023
-
Update
Transient
in recipes to match Readme (#1764)* Update Transient in recipes to match Readme https://github.com/pmndrs/zustand#transient-updates-for-often-occurring-state-changes * Update docs/recipes/recipes.mdx Co-authored-by: Daishi Kato <dai-shi@users.noreply.github.com> * update to useScratchStore --------- Co-authored-by: Daishi Kato <dai-shi@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 513b222 - Browse repository at this point
Copy the full SHA 513b222View commit details
Commits on Apr 28, 2023
-
docs(typescript): fix bounded use store example (#1779)
* test: changer * docs: fix abstract bounded store hook TS example Fixes type issues due to optional arg: #1564 (comment) * fix: pr feedback
Configuration menu - View commit details
-
Copy full SHA for e71e313 - Browse repository at this point
Copy the full SHA e71e313View commit details
Commits on Apr 30, 2023
-
Add code heading in comparison with Zustand and Redux (#1777)
* Add code heading * Add newline Co-authored-by: Danilo Britto <dbritto.dev@gmail.com> --------- Co-authored-by: Danilo Britto <dbritto.dev@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 22db001 - Browse repository at this point
Copy the full SHA 22db001View commit details
Commits on May 1, 2023
-
chore: add extentsion in imports (#1678)
* chore: add extentsion in imports * fix github workflow * revert for zustand/context * do not patch :) * fix workflow file * update ts 5 * patch tsconfig * use old typescript for react 16 * downlevel-dts to 3.8 * Revert "downlevel-dts to 3.8" This reverts commit d03e526. * patch workflow file * patch for react 16 * remove ts3.4 in workflow * skipLibChecks * revert changes in test-multiple-versions.yml * fix sed * wip: add allowJs * Revert "wip: add allowJs" This reverts commit fca34d7. * use ts 495 * useESM false * Revert "useESM false" This reverts commit 07a91d8. * no coverage * no coverage 2 * no coverage 3 * wip * disable transform * revert a change * revert changes * test: try ignoring tests with dynamic imports * test: skip tests that require/tests modules in isolation * test: remove dynamic import * run skipped tests on CI * test: add new devtools imports to ci-only tests * revert CI-ONLY-* hack * wip: workaround for react 16 * wip: workaround for react 16 * wip: workaround for react 16 * wip: workaround for react 16 * wip: workaround for react 16 * wip: workaround for react 16 * wip: workaround for react 16 * wip: workaround for react 16 * wip: workaround for react 16 * wip: workaround for react 16 * wip: workaround for react 16 * CI-MATRIX- for devtools CI hacks * test: add env variable to test multiple builds workflow * hack await import * hack await import for another one * wip: experimenting workflow file * wip: experimenting workflow file * wip: experimenting workflow file * use different env name * wip: experimenting workflow file * do not use two envs * revert to NODE_ENV --------- Co-authored-by: Arjun <14841132+arjunvegda@users.noreply.github.com>
2Configuration menu - View commit details
-
Copy full SHA for f37530f - Browse repository at this point
Copy the full SHA f37530fView commit details -
fix: workflow file syntax error (#1786)
* fix workflow file format * does it change? * hope this works * fix syntax
Configuration menu - View commit details
-
Copy full SHA for 1808bf4 - Browse repository at this point
Copy the full SHA 1808bf4View commit details
Commits on May 4, 2023
-
feat(middleware/persist): improve createJSONStorage for Maps (#1763)
* feat: add support for Maps to persist middleware * refactor: change createJsonStorage to accept custom reviver/replacer * refactor: map support code review
Configuration menu - View commit details
-
Copy full SHA for 630ba1a - Browse repository at this point
Copy the full SHA 630ba1aView commit details -
chore(tests): migrate to vitest (#1753)
* test: migrate to vitest * test: try #1 remove CI-MATRIX tags * test: try 2 remove import/require replace * chore: remove unused scripts/assignments * chore(test-multiple-builds.yml): remove import/require replace script * fix merging main --------- Co-authored-by: daishi <daishi@axlight.com>
Configuration menu - View commit details
-
Copy full SHA for 496a466 - Browse repository at this point
Copy the full SHA 496a466View commit details -
chore(deps): update dev dependencies (#1789)
* chore(deps): update dev dependencies * update node in csb config * use node 18 * move to dev deps * fix rollup error * missing fix * refactor for general case
Configuration menu - View commit details
-
Copy full SHA for c4e2809 - Browse repository at this point
Copy the full SHA c4e2809View commit details -
Configuration menu - View commit details
-
Copy full SHA for faccbd0 - Browse repository at this point
Copy the full SHA faccbd0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0784028 - Browse repository at this point
Copy the full SHA 0784028View commit details
There are no files selected for viewing