From 52342f1cdaeb93c6f6c34737842776a8ed5b138d Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Mon, 18 May 2026 13:52:43 -0700 Subject: [PATCH] Fix pnpm lockfile integrity check (#10529) --- .github/workflows/verify-pnpm-lock.yml | 2 +- package.json | 2 +- pnpm-lock.yaml | 14 +++++++------- pnpm-workspace.yaml | 2 ++ 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/verify-pnpm-lock.yml b/.github/workflows/verify-pnpm-lock.yml index 3796af9978..e5b7a7d1bb 100644 --- a/.github/workflows/verify-pnpm-lock.yml +++ b/.github/workflows/verify-pnpm-lock.yml @@ -37,7 +37,7 @@ jobs: uses: Wandalen/wretry.action@master with: # Fine to skip scripts since we don't run any code - command: pnpm install --ignore-scripts + command: pnpm clean && pnpm install --ignore-scripts --no-frozen-lockfile attempt_limit: 3 attempt_delay: 2000 diff --git a/package.json b/package.json index 7d4775a057..1ba500e2ce 100644 --- a/package.json +++ b/package.json @@ -81,7 +81,7 @@ "icons:optimize": "svgo -f ./assets/icons" }, "dependencies": { - "@atproto/api": "^0.19.15", + "@atproto/api": "^0.19.19", "@atproto/syntax": "0.5.2", "@bitdrift/react-native": "^0.6.8", "@braintree/sanitize-url": "^6.0.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9106ab6211..a8851417a1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -44,8 +44,8 @@ importers: .: dependencies: '@atproto/api': - specifier: ^0.19.15 - version: 0.19.17 + specifier: ^0.19.19 + version: 0.19.19 '@atproto/syntax': specifier: 0.5.2 version: 0.5.2 @@ -688,8 +688,8 @@ packages: graphql: optional: true - '@atproto/api@0.19.17': - resolution: {integrity: sha512-xeLBwZGvVQALdgDM2SqExhqr9OenO/P3w+k0Og2Y2eDooTzlXyPdBuvimOVa0Hq7MtytHtSFAWgF6Are2aG90Q==} + '@atproto/api@0.19.19': + resolution: {integrity: sha512-8pwyN3qM1HnaJzL297OBjfxwLLJvNHkFDr5smoFRLXEDiyPprQfbsH7YrGsJfX8Cez+KcHZAuZTY4Hh6NUBwBQ==} '@atproto/common-web@0.4.21': resolution: {integrity: sha512-Odq+wdk3YNasGCjjlpl3bCIPvqYHige5DLfMkIffNv/2PI/iIj5ZvAvMvJlJ59OhReKSxtpI0invx5UQPc3+fw==} @@ -1492,7 +1492,7 @@ packages: hasBin: true '@discord/bottom-sheet@https://codeload.github.com/bluesky-social/react-native-bottom-sheet/tar.gz/28a87d1bb55e10fc355fa1455545a30734995908': - resolution: {gitHosted: true, tarball: https://codeload.github.com/bluesky-social/react-native-bottom-sheet/tar.gz/28a87d1bb55e10fc355fa1455545a30734995908} + resolution: {gitHosted: true, integrity: sha512-zsoB8sFUx8O9aO0fKAkzoWLMyaX7EBd3ooNYjzsh9vr/c9zg/a3jOAbWzWbvM86QCZIszfbW9GXeJZKZRVk/tg==, tarball: https://codeload.github.com/bluesky-social/react-native-bottom-sheet/tar.gz/28a87d1bb55e10fc355fa1455545a30734995908} version: 4.6.1 peerDependencies: '@shopify/flash-list': '*' @@ -7783,7 +7783,7 @@ packages: react-native: '*' react-native-progress@https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4: - resolution: {gitHosted: true, tarball: https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4} + resolution: {gitHosted: true, integrity: sha512-gDJJirvdhK5uUuI2OkiuleTbmeCyjkf1G6kPd4HAMc1pW8pUUeA0wKyPxZaI+s9htw8IDH6mFlmBB1ob8QMB4g==, tarball: https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4} version: 5.0.0 peerDependencies: react-native-svg: '*' @@ -9206,7 +9206,7 @@ snapshots: '@0no-co/graphql.web@1.2.0': {} - '@atproto/api@0.19.17': + '@atproto/api@0.19.19': dependencies: '@atproto/common-web': 0.4.21 '@atproto/lexicon': 0.6.2 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index e3f088299f..9b450bc927 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -40,3 +40,5 @@ patchedDependencies: "react-native-view-shot@4.0.3": patches/react-native-view-shot@4.0.3.patch "react-native@0.81.5": patches/react-native@0.81.5.patch "sonner-native@0.21.0": patches/sonner-native@0.21.0.patch +minimumReleaseAgeExclude: + - '@atproto/api@0.19.19'