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

fix(deps): update dependencies (non-major) - autoclosed #391

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 28, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
chroma-js 2.1.2 -> 2.4.2 age adoption passing confidence
classnames 2.3.1 -> 2.3.2 age adoption passing confidence
nanoid 3.1.25 -> 3.3.6 age adoption passing confidence
react-spring-bottom-sheet (source) 3.4.0 -> 3.4.1 age adoption passing confidence
zustand 3.5.10 -> 3.7.2 age adoption passing confidence

Release Notes

gka/chroma.js

v2.4.2

Compare Source

v2.4.1

Compare Source

v2.4.0

Compare Source

v2.3.0

Compare Source

  • use binom of degree n in chroma.bezier

v2.2.0

Compare Source

JedWatson/classnames

v2.3.2

Compare Source

ai/nanoid

v3.3.6

Compare Source

  • Fixed package.

v3.3.5

Compare Source

  • Backport funding information.

v3.3.4

Compare Source

v3.3.3

Compare Source

  • Reduced size (by Anton Khlynovskiy).

v3.3.2

Compare Source

  • Fixed enhanced-resolve support.

v3.3.1

Compare Source

  • Reduced package size.

v3.3.0

Compare Source

v3.2.0

Compare Source

v3.1.32

Compare Source

  • Reduced async exports size (by Artyom Arutyunyan).
  • Moved from Jest to uvu (by Vitaly Baev).

v3.1.31

Compare Source

  • Fixed collision vulnerability on object in size (by Artyom Arutyunyan).

v3.1.30

Compare Source

  • Reduced size for project with brotli compression (by Anton Khlynovskiy).

v3.1.29

Compare Source

  • Reduced npm package size.

v3.1.28

Compare Source

  • Reduced npm package size.

v3.1.27

Compare Source

  • Cleaned dependencies from development tools.

v3.1.26

Compare Source

  • Improved performance (by Eitan Har-Shoshanim).
  • Reduced npm package size.
stipsan/react-spring-bottom-sheet

v3.4.1

Compare Source

Bug Fixes
  • add 18 to react peer dep (d89c0bb)
pmndrs/zustand

v3.7.2

Compare Source

This fixes an issue in persist for some use cases.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v3.7.1...v3.7.2

v3.7.1

Compare Source

This fixes a type issue with zustand/context in v3.7.0.

What's Changed

Full Changelog: pmndrs/zustand@v3.7.0...v3.7.1

v3.7.0

Compare Source

This release is to prepare for v4 release, which will include some breaking changes. Especially typing store with middleware will be changed. This release gives partial migration path (see tests/middlewareTypes.test.tsx for examples), so it's highly recommended to try this version before v4 comes and report issues.

It also fixes some small typing issues and improves UMD/SystemJS bundling. Oh, and last but not least, vite users don't need to set NODE_ENV anymore.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v3.6.9...v3.7.0

v3.6.9

Compare Source

This adds UMD and SystemJS builds for CDN.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v3.6.8...v3.6.9

v3.6.8

Compare Source

This fixes some issues in devtools middleware.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v3.6.7...v3.6.8

v3.6.7

Compare Source

There was a regression in devtools middleware in v3.6.6, which is fixed.

What's Changed

Full Changelog: pmndrs/zustand@v3.6.6...v3.6.7

v3.6.6

Compare Source

This fixes and improves devtools middleware. The basic usage shouldn't be changed. If you have questions on usage, please open a new discussion.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v3.6.5...v3.6.6

v3.6.5

Compare Source

This version further improves to fix some typing issues introduced in v3.6.0 and fixes persist api introduced in v3.6.3.

What's Changed

Full Changelog: pmndrs/zustand@v3.6.4...v3.6.5

v3.6.4

Compare Source

This improves devtools middleware and typing of other middlewares. Please feel free to update and report any issues.

What's Changed

Full Changelog: pmndrs/zustand@v3.6.3...v3.6.4

v3.6.3

Compare Source

The new persist middleware exposes persist api in store. This is thanks to the new customizable store api types introduced in v3.6.

What's Changed

Full Changelog: pmndrs/zustand@v3.6.2...v3.6.3

v3.6.2

Compare Source

v3.6.0 introduced middleware types trying to infer store types as much as possible. However, it doesn't work well for several cases, and users need to type manually which was actually hard. In this version, middleware types are simplified and let users to explicitly type when needed more easily. Many examples are in tests/middlewareTypes.test.tsx. If you find issues or need some more typing examples, please report them.

What's Changed

Full Changelog: pmndrs/zustand@v3.6.1...v3.6.2

v3.6.1

Compare Source

Summary

This fixes some type issues introduced in v3.6.0. devtools is improved to accept updating state from DevTools Ext.

What's Changed

Full Changelog: pmndrs/zustand@v3.6.0...v3.6.1

v3.6.0

Compare Source

Summary

This version mainly comes with type improvement for middleware. It's tricky implementation-wise. Please report issues and let's look for solutions or workarounds.
It has renamed and deprecated types: UseStore 👉 UseBoundStore
A new subscribeWithSelector middleware is added, deprecating the equivalent feature in core.

Migrating to subscribeWithSelector middleware

Previously, you could do this:

const useStore = create(...)
useStore.subscribe(callback, selector, equalityFn)

which is deprecated and replaced with:

const useStore = create(subscribeWithSelector(...))
useStore.subscribe(selector, callback, { equalityFn }) // selector is not optional

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v3.5.14...v3.6.0

v3.5.14

Compare Source

Summary

Fixed a regression in devtools that was introduced in v3.5.11.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v3.5.13...v3.5.14

v3.5.13

Compare Source

The persist middleware has a new option partialize which works for nested properties, deprecating blacklist and whitelist options.

  • #​463 feat(persist): add partialize option

v3.5.12

Compare Source

v3.5.11 accidentally requires newer node.js versions. v3.5.12 fixes it by reverting exports format.

  • #​578 fix(package): avoid subpath pattern in exports

v3.5.11

Compare Source

⚠️ Minimum Node.js requirements (for server-side usage like Next.js): v14.13.0, v12.20.0

This improved devtools middleware. There can still be room for improvement. Free free to open issues and feature requests, and possibly contribute to them.

  • #​560 Fix: remove useless internal info in devtools
  • #​558 chore(build): simplify exports and support nested subpath

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Mend Renovate using a preset from Sanity. View repository job log here

@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 60b0076 to 74c94e8 Compare September 28, 2021 16:50
@renovate renovate bot changed the title fix(deps): update dependency nanoid to v3.1.28 fix(deps): update dependencies (non-major) Sep 28, 2021
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 74c94e8 to 5c0aca3 Compare October 1, 2021 14:29
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 5c0aca3 to 478f8b8 Compare October 5, 2021 22:13
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 478f8b8 to ece9c06 Compare October 7, 2021 13:40
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from ece9c06 to 37cc90f Compare October 14, 2021 00:41
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 37cc90f to 0240071 Compare October 20, 2021 06:08
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 0240071 to eae43fb Compare October 21, 2021 15:26
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from eae43fb to 12cf25b Compare October 26, 2021 15:44
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 12cf25b to e621b7f Compare October 30, 2021 01:31
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from e621b7f to b1bb5c3 Compare November 2, 2021 13:51
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from b1bb5c3 to 52def74 Compare November 4, 2021 00:43
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 52def74 to 5477f29 Compare March 7, 2022 11:20
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 5477f29 to c6ee0a6 Compare April 24, 2022 19:12
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from c6ee0a6 to f710944 Compare May 15, 2022 23:23
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from f710944 to fbc8cc1 Compare June 18, 2022 15:38
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from fbc8cc1 to 581ad7a Compare June 23, 2022 19:33
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 581ad7a to b98a85c Compare September 25, 2022 11:10
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from b98a85c to b1fe722 Compare November 20, 2022 20:18
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from b1fe722 to 9f22a89 Compare March 16, 2023 07:58
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 9f22a89 to d6688c4 Compare March 27, 2023 23:34
@socket-security
Copy link

New dependency changes detected. Learn more about Socket for GitHub ↗︎

👍 No new dependency issues detected in pull request

Bot Commands

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of package-name@version specifiers. e.g. @SocketSecurity ignore foo@1.0.0 bar@* or ignore all packages with @SocketSecurity ignore-all

Pull request alert summary
Issue Status
Install scripts ✅ 0 issues
Native code ✅ 0 issues
Bin script shell injection ✅ 0 issues
Unresolved require ✅ 0 issues
Invalid package.json ✅ 0 issues
HTTP dependency ✅ 0 issues
Git dependency ✅ 0 issues
Potential typo squat ✅ 0 issues
Known Malware ✅ 0 issues
Telemetry ✅ 0 issues
Protestware/Troll package ✅ 0 issues

📊 Modified Dependency Overview:

⬆️ Updated Package Version Diff Capability Access +/- Transitive Count Publisher
react-spring-bottom-sheet@3.4.1 3.4.0...3.4.1 None +6/-6 stipsan
classnames@2.3.2 2.3.1...2.3.2 None +0/-0 dcousens
chroma-js@2.4.2 2.1.2...2.4.2 None +0/-0 gka
nanoid@3.3.6 3.1.25...3.3.6 None +0/-0 ai
zustand@3.7.2 3.5.10...3.7.2 None +0/-0 daishi

@renovate renovate bot changed the title fix(deps): update dependencies (non-major) fix(deps): update dependencies (non-major) - autoclosed Jun 8, 2023
@renovate renovate bot closed this Jun 8, 2023
@renovate renovate bot deleted the renovate/dependencies-(non-major) branch June 8, 2023 14:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants