Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

fix(deps): update dependency valtio to v1.11.2 #32

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 5, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
valtio 1.6.4 -> 1.11.2 age adoption passing confidence

Release Notes

pmndrs/valtio (valtio)

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

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

v1.7.6

Compare Source

There was a small regression in types since v1.7.3, which is fixed.

What's Changed

Full Changelog: pmndrs/valtio@v1.7.5...v1.7.6

v1.7.5

Compare Source

There are some improvements related with ESM.

What's Changed

Full Changelog: pmndrs/valtio@v1.7.4...v1.7.5

v1.7.4

Compare Source

There was an issue in v1.7.3 with ESM, like in Next.js. This version fixes it.

What's Changed

Full Changelog: pmndrs/valtio@v1.7.3...v1.7.4

v1.7.3

Compare Source

⚠️ Please use v1.7.4 instead.


This version includes some refactors. It should be safe to upgrade. Feel free to open issues/discussions if you find something.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.7.2...v1.7.3

v1.7.2

Compare Source

This fixes a type issue in v1.7.1. It also improves old ts version support.

What's Changed

Full Changelog: pmndrs/valtio@v1.7.1...v1.7.2

v1.7.1

Compare Source

This fixes some bugs in edge cases.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.7.0...v1.7.1

v1.7.0

Compare Source

There are some refactors in the core of the library. It exposes a new experimental internal function. 99% of users wouldn't need it. Feel free to report issues if found. This also improves proxyWithHistory in valtio/utils.

What's Changed

New Contributors

Full Changelog: pmndrs/valtio@v1.6.4...v1.7.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 is behind base branch, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/valtio-1.x branch from b3a1971 to b09c1ac Compare September 10, 2022 12:33
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from b09c1ac to 92ade77 Compare October 7, 2022 12:16
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.7.0 fix(deps): update dependency valtio to v1.7.1 Oct 7, 2022
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from 92ade77 to 93a3074 Compare October 9, 2022 10:57
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.7.1 fix(deps): update dependency valtio to v1.7.2 Oct 9, 2022
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from 93a3074 to fcbd864 Compare October 15, 2022 01:45
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.7.2 fix(deps): update dependency valtio to v1.7.3 Oct 15, 2022
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from fcbd864 to 8e73edb Compare October 15, 2022 12:34
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.7.3 fix(deps): update dependency valtio to v1.7.4 Oct 15, 2022
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from 8e73edb to 8e4192f Compare October 29, 2022 15:23
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.7.4 fix(deps): update dependency valtio to v1.7.5 Oct 29, 2022
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from 8e4192f to 1baa46f Compare November 20, 2022 16:36
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.7.5 fix(deps): update dependency valtio to v1.7.6 Nov 20, 2022
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.7.6 fix(deps): update dependency valtio to v1.10.3 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from 1baa46f to 7ab2987 Compare March 16, 2023 13:38
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.10.3 fix(deps): update dependency valtio to v1.10.5 May 31, 2023
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from 7ab2987 to 6871721 Compare May 31, 2023 00:01
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from 6871721 to 4afd94c Compare June 21, 2023 13:49
@renovate renovate bot changed the title fix(deps): update dependency valtio to v1.10.5 fix(deps): update dependency valtio to v1.10.6 Jun 21, 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 10, 2023
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from 4afd94c to 660c3e3 Compare July 10, 2023 15:05
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from 660c3e3 to e206548 Compare July 20, 2023 09:36
@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 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 force-pushed the renovate/valtio-1.x branch from e206548 to 9d28d6b Compare July 27, 2023 04:21
@renovate renovate bot force-pushed the renovate/valtio-1.x branch from 9d28d6b to f260002 Compare August 12, 2023 13:19
@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 12, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants