From 6651b5fdf10eaa8780dc44da371569ac1ca8f9b0 Mon Sep 17 00:00:00 2001 From: Siddharth2207 Date: Mon, 8 Jun 2026 20:46:56 +0530 Subject: [PATCH 1/3] albion raindex --- packages/webapp/src/lib/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webapp/src/lib/constants.ts b/packages/webapp/src/lib/constants.ts index e499faf7f0..9d437288e4 100644 --- a/packages/webapp/src/lib/constants.ts +++ b/packages/webapp/src/lib/constants.ts @@ -1,2 +1,2 @@ export const REGISTRY_URL = - 'https://raw.githubusercontent.com/rainlanguage/rain.strategies/3c5077c3900f283f28748d8b1732aa3c9bce979e/registry'; + 'https://raw.githubusercontent.com/rainlanguage/rain.strategies/b669ed72f168d67b96135bc35e34b4da9595c987/registry'; From d66367d8d40b6522b53a29c0908951ba7dd7b90d Mon Sep 17 00:00:00 2001 From: Siddharth2207 Date: Tue, 9 Jun 2026 15:18:00 +0530 Subject: [PATCH 2/3] Bump pinned Vercel CLI to fix preview deploy failures. Vercel's deploy API now requires CLI 47.2.2+, but preview workflows were still installing 33.4.1. Co-authored-by: Cursor --- .github/workflows/vercel-preview-pr-target.yaml | 2 +- .github/workflows/vercel-preview.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vercel-preview-pr-target.yaml b/.github/workflows/vercel-preview-pr-target.yaml index 6d1e732cb8..e0c15b0ff8 100644 --- a/.github/workflows/vercel-preview-pr-target.yaml +++ b/.github/workflows/vercel-preview-pr-target.yaml @@ -75,7 +75,7 @@ jobs: shell: bash --noprofile --norc -euo pipefail {0} run: | VERCEL_DIR="$(mktemp -d)" - npm install --no-audit --no-fund --no-save --ignore-scripts --prefix "$VERCEL_DIR" vercel@33.4.1 + npm install --no-audit --no-fund --no-save --ignore-scripts --prefix "$VERCEL_DIR" vercel@47.2.2 echo "VERCEL_BIN=$VERCEL_DIR/node_modules/.bin/vercel" >> "$GITHUB_ENV" test -x "$VERCEL_DIR/node_modules/.bin/vercel" - name: Pull Vercel Environment Information diff --git a/.github/workflows/vercel-preview.yaml b/.github/workflows/vercel-preview.yaml index 0346ce3352..fac2e34eb8 100644 --- a/.github/workflows/vercel-preview.yaml +++ b/.github/workflows/vercel-preview.yaml @@ -81,7 +81,7 @@ jobs: shell: bash --noprofile --norc -euo pipefail {0} run: | VERCEL_DIR="$(mktemp -d)" - npm install --no-audit --no-fund --no-save --prefix "$VERCEL_DIR" vercel@33.4.1 + npm install --no-audit --no-fund --no-save --prefix "$VERCEL_DIR" vercel@47.2.2 echo "VERCEL_BIN=$VERCEL_DIR/node_modules/.bin/vercel" >> "$GITHUB_ENV" - name: Pull Vercel Environment Information shell: bash --noprofile --norc -euo pipefail {0} From 52a317c5bb5bfeaa76564a046456773cf064e242 Mon Sep 17 00:00:00 2001 From: Siddharth2207 Date: Tue, 9 Jun 2026 16:05:56 +0530 Subject: [PATCH 3/3] Fix Vercel CLI pin to a version that exists on npm. vercel@47.2.2 is not published; use 48.12.1 which satisfies the deploy API minimum. Co-authored-by: Cursor --- .github/workflows/vercel-preview-pr-target.yaml | 2 +- .github/workflows/vercel-preview.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vercel-preview-pr-target.yaml b/.github/workflows/vercel-preview-pr-target.yaml index e0c15b0ff8..855a8e179c 100644 --- a/.github/workflows/vercel-preview-pr-target.yaml +++ b/.github/workflows/vercel-preview-pr-target.yaml @@ -75,7 +75,7 @@ jobs: shell: bash --noprofile --norc -euo pipefail {0} run: | VERCEL_DIR="$(mktemp -d)" - npm install --no-audit --no-fund --no-save --ignore-scripts --prefix "$VERCEL_DIR" vercel@47.2.2 + npm install --no-audit --no-fund --no-save --ignore-scripts --prefix "$VERCEL_DIR" vercel@48.12.1 echo "VERCEL_BIN=$VERCEL_DIR/node_modules/.bin/vercel" >> "$GITHUB_ENV" test -x "$VERCEL_DIR/node_modules/.bin/vercel" - name: Pull Vercel Environment Information diff --git a/.github/workflows/vercel-preview.yaml b/.github/workflows/vercel-preview.yaml index fac2e34eb8..c90df7d4f2 100644 --- a/.github/workflows/vercel-preview.yaml +++ b/.github/workflows/vercel-preview.yaml @@ -81,7 +81,7 @@ jobs: shell: bash --noprofile --norc -euo pipefail {0} run: | VERCEL_DIR="$(mktemp -d)" - npm install --no-audit --no-fund --no-save --prefix "$VERCEL_DIR" vercel@47.2.2 + npm install --no-audit --no-fund --no-save --prefix "$VERCEL_DIR" vercel@48.12.1 echo "VERCEL_BIN=$VERCEL_DIR/node_modules/.bin/vercel" >> "$GITHUB_ENV" - name: Pull Vercel Environment Information shell: bash --noprofile --norc -euo pipefail {0}