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 dependency valtio to v1.13.2 #3

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Dec 27, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
valtio 1.7.6 -> 1.13.2 age adoption passing confidence

Release Notes

pmndrs/valtio (valtio)

v1.13.2

Compare Source

It should improve the compatibility with old browsers.

What's Changed

Full Changelog: pmndrs/valtio@v1.13.1...v1.13.2

v1.13.1

Compare Source

A small improvement in types.

What's Changed
New Contributors

Full Changelog: pmndrs/valtio@v1.13.0...v1.13.1

v1.13.0

Compare Source

We have a new valtio-history package!

What's Changed
New Contributors

Full Changelog: pmndrs/valtio@v1.12.1...v1.13.0

v1.12.1

Compare Source

Some improvements in valtio/utils.

What's Changed
New Contributors

Full Changelog: pmndrs/valtio@v1.12.0...v1.12.1

v1.12.0

Compare Source

This version moves derive to a dependency. Please open a new discussion if you find some problems.

What's Changed
New Contributors

Full Changelog: pmndrs/valtio@v1.11.3...v1.12.0

v1.11.3

Compare Source

This fixes some edge cases.

What's Changed
New Contributors

Full Changelog: pmndrs/valtio@v1.11.2...v1.11.3

v1.11.2

Compare Source

This improves some TypeScript issues.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.11.1...v1.11.2

v1.11.1

Compare Source

This reverts the change made in v1.11.0, which turns out to be troublesome for RN users.

It's basically the same as v1.10.7.

git diff v1.10.7...v1.11.1 src
diff --git a/src/vanilla.ts b/src/vanilla.ts
index dc19c87..86faef8 100644
--- a/src/vanilla.ts
+++ b/src/vanilla.ts
@​@​ -60,7 +60,7 @​@​ type ProxyState = readonly [
   target: object,
   ensureVersion: (nextCheckVersion?: number) => number,
   createSnapshot: CreateSnapshot,
-  addListener: AddListener
+  addListener: AddListener,
 ]
 
 // shared state
diff --git a/src/vanilla/utils/derive.ts b/src/vanilla/utils/derive.ts
index 832f542..c9af01a 100644
--- a/src/vanilla/utils/derive.ts
+++ b/src/vanilla/utils/derive.ts
@​@​ -16,7 +16,7 @​@​ type SourceObjectEntry = [
   subscriptions: Set<Subscription>,
   unsubscribe: () => void,
   pendingCount: number,
-  pendingCallbacks: Set<() => void>
+  pendingCallbacks: Set<() => void>,
 ]
 
 type DerivedObjectEntry = [subscriptions: Set<Subscription>]
diff --git a/src/vanilla/utils/proxyWithComputed.ts b/src/vanilla/utils/proxyWithComputed.ts
index 076d11b..f6d47a2 100644
--- a/src/vanilla/utils/proxyWithComputed.ts
+++ b/src/vanilla/utils/proxyWithComputed.ts
@&#8203;@&#8203; -8,7 +8,7 @&#8203;@&#8203; import type { INTERNAL_Snapshot as Snapshot } from '../../vanilla.ts'
  */
 export function proxyWithComputed_DEPRECATED<
   T extends object,
-  U extends object
+  U extends object,
 >(
   initialObject: T,
   computedFns: {

What's Changed

Full Changelog: pmndrs/valtio@v1.11.0...v1.11.1

v1.11.0

Compare Source

This adds a new behavior to trap defineProperty for certain cases.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.10.7...v1.11.0

v1.10.7

Compare Source

Some improvements for edge cases.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.10.6...v1.10.7

v1.10.6

Compare Source

It comes with some improvements.

What's Changed
New Contributors

Full Changelog: pmndrs/valtio@v1.10.5...v1.10.6

v1.10.5

Compare Source

This may improve performance in some edge cases.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.10.4...v1.10.5

v1.10.4

Compare Source

The first one is a small improvement/fix. The second one is hoping to to support Deno, but unconfirmed.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.10.3...v1.10.4

v1.10.3

Compare Source

v1.10.1 had a regression in some edge cases, which is fixed in this version.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.10.2...v1.10.3

v1.10.2

Compare Source

v1.10.1 has a performance issue in some cases. This should fix it.

What's Changed

Full Changelog: pmndrs/valtio@v1.10.1...v1.10.2

v1.10.1

Compare Source

This version contains some small fixes and internal improvements.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.10.0...v1.10.1

v1.10.0

Compare Source

This version fixes an issue in edge cases. It also deprecates proxyWithComputed in favor of bare object getters.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.9.0...v1.10.0

v1.9.0

Compare Source

This deprecates useProxy macro and adds new useProxy util, which is a convenient React hook to avoid misusing proxy states and snapshots.

What's Changed

Full Changelog: pmndrs/valtio@v1.8.2...v1.9.0

v1.8.2

Compare Source

This includes a small fix and a small improvement.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.8.0...v1.8.2

v1.8.1

Compare Source

v1.8.0

Compare Source

This version adds no new features, but the internal code is changed a lot. Thus, minor bump.

What's Changed

Full Changelog: pmndrs/valtio@v1.7.6...v1.8.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 changed the title Update dependency valtio to v1.8.0 Update dependency valtio to v1.8.2 Jan 5, 2023
@renovate renovate bot changed the title Update dependency valtio to v1.8.2 Update dependency valtio to v1.9.0 Jan 15, 2023
@renovate renovate bot changed the title Update dependency valtio to v1.9.0 Update dependency valtio to v1.10.0 Feb 4, 2023
@renovate renovate bot changed the title Update dependency valtio to v1.10.0 Update dependency valtio to v1.10.1 Feb 7, 2023
@renovate renovate bot changed the title Update dependency valtio to v1.10.1 Update dependency valtio to v1.10.2 Feb 14, 2023
@renovate renovate bot changed the title Update dependency valtio to v1.10.2 Update dependency valtio to v1.10.3 Mar 16, 2023
@renovate renovate bot changed the title Update dependency valtio to v1.10.3 Update dependency valtio to v1.10.5 May 29, 2023
@renovate renovate bot changed the title Update dependency valtio to v1.10.5 Update dependency valtio to v1.10.6 Jun 22, 2023
@renovate renovate bot changed the title Update dependency valtio to v1.10.6 fix(deps): update dependency valtio to v1.10.6 Jun 26, 2023
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.10.6 fix(deps): update dependency valtio to v1.10.7 Jul 12, 2023
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.10.7 fix(deps): update dependency valtio to v1.11.0 Jul 20, 2023
@renovate renovate bot force-pushed the renovate/valtio-1.x branch 2 times, most recently from b8b1e7e to efe98f4 Compare July 27, 2023 02:50
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.11.0 fix(deps): update dependency valtio to v1.11.1 Jul 27, 2023
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.11.1 fix(deps): update dependency valtio to v1.11.2 Aug 13, 2023
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.11.2 fix(deps): update dependency valtio to v1.11.3 Oct 24, 2023
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.11.3 fix(deps): update dependency valtio to v1.12.0 Nov 3, 2023
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.12.0 fix(deps): update dependency valtio to v1.12.1 Nov 28, 2023
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.12.1 fix(deps): update dependency valtio to v1.13.0 Jan 6, 2024
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.13.0 fix(deps): update dependency valtio to v1.13.1 Feb 9, 2024
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.13.1 fix(deps): update dependency valtio to v1.13.2 Mar 2, 2024
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