From 4b85885ca49791ecde0e7eca29a3b810a9f44a33 Mon Sep 17 00:00:00 2001 From: AlexisMora Date: Mon, 23 Mar 2026 13:44:13 +0100 Subject: [PATCH 1/5] chore: V2.5.4 update + intxtjs update --- package-lock.json | 8 ++++---- package.json | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2b9a51934..c0f2f4070 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,7 +12,7 @@ "dependencies": { "@gcas/fuse": "^2.4.2", "@internxt/drive-desktop-core": "0.1.7", - "@internxt/inxt-js": "^2.2.3", + "@internxt/inxt-js": "^2.2.10", "@internxt/scan": "^1.0.7", "@internxt/sdk": "1.11.17", "async": "^3.2.4", @@ -3290,9 +3290,9 @@ } }, "node_modules/@internxt/inxt-js": { - "version": "2.2.9", - "resolved": "https://registry.npmjs.org/@internxt/inxt-js/-/inxt-js-2.2.9.tgz", - "integrity": "sha512-wYGSolYcRb3apNUAlDsn8eJFpOejBW/RbbpDJazaAe8FztyBpkcNDZ4NOVCmpdwaCXRLGQd3/JNqDd0ZIRyNDQ==", + "version": "2.2.10", + "resolved": "https://npm.pkg.github.com/download/@internxt/inxt-js/2.2.10/7841e03a2a91936a8523f0cf7f1ef7f77317c428", + "integrity": "sha512-nASW+kfkjSJLNS8t/ReIi4HeoH9YWSpzBAHfq3sw/pRZXh2KMazyHhrf42FsupVjWBHFPhS4kxqpQItH6qniJw==", "license": "ISC", "dependencies": { "@internxt/lib": "1.3.1", diff --git a/package.json b/package.json index 80a9f40f1..939a8d173 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "internxt", - "version": "2.5.3", + "version": "2.5.4", "author": "Internxt ", "description": "Internxt Drive client UI", "main": "./dist/main/main.js", @@ -196,7 +196,7 @@ "dependencies": { "@gcas/fuse": "^2.4.2", "@internxt/drive-desktop-core": "0.1.7", - "@internxt/inxt-js": "^2.2.3", + "@internxt/inxt-js": "^2.2.10", "@internxt/scan": "^1.0.7", "@internxt/sdk": "1.11.17", "async": "^3.2.4", From 340bc64a8a3698255c009d9bb184231f2367f50b Mon Sep 17 00:00:00 2001 From: AlexisMora Date: Mon, 23 Mar 2026 18:15:33 +0100 Subject: [PATCH 2/5] chore: install --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index c0f2f4070..5dbdc51e0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "internxt", - "version": "2.5.3", + "version": "2.5.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "internxt", - "version": "2.5.3", + "version": "2.5.4", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { From 3236c99146e0943370813bafbf89cea16890547a Mon Sep 17 00:00:00 2001 From: AlexisMora Date: Mon, 23 Mar 2026 18:49:23 +0100 Subject: [PATCH 3/5] fix: add npm token on pipeline --- .github/workflows/test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b6d6dd9c1..c6263dabf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,6 +19,11 @@ jobs: node-version: 18 cache: 'npm' + - name: Create .npmrc file + run: | + echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc + - name: Install system dependencies run: | sudo apt-get update @@ -50,6 +55,11 @@ jobs: node-version: 18 cache: 'npm' + - name: Create .npmrc file + run: | + echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc + - name: Install dependencies run: npm ci --ignore-scripts From e4aa2ea75ff067fd9e862ac4f74202e87d9ac32e Mon Sep 17 00:00:00 2001 From: AlexisMora Date: Mon, 23 Mar 2026 18:56:02 +0100 Subject: [PATCH 4/5] fix: add npm token secret on find-dead-code, lint, publish, sonar-analysis actions --- .github/workflows/find-dead-code.yml | 5 +++++ .github/workflows/lint.yml | 15 +++++++++++++++ .github/workflows/publish.yml | 2 +- .github/workflows/sonar-analysis.yml | 5 +++++ 4 files changed, 26 insertions(+), 1 deletion(-) diff --git a/.github/workflows/find-dead-code.yml b/.github/workflows/find-dead-code.yml index 87a563cc6..df61f9915 100644 --- a/.github/workflows/find-dead-code.yml +++ b/.github/workflows/find-dead-code.yml @@ -20,6 +20,11 @@ jobs: with: node-version: 18 + - name: Create .npmrc file + run: | + echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc + - name: Install dependencies run: npm ci --ignore-scripts diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 07767ac19..56f517de1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,6 +19,11 @@ jobs: node-version: 18 cache: 'npm' + - name: Create .npmrc file + run: | + echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc + - name: Install dependencies run: npm ci --ignore-scripts @@ -39,6 +44,11 @@ jobs: node-version: 18 cache: 'npm' + - name: Create .npmrc file + run: | + echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc + - name: Install dependencies run: npm ci --ignore-scripts @@ -59,6 +69,11 @@ jobs: node-version: 18 cache: 'npm' + - name: Create .npmrc file + run: | + echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc + - name: Install dependencies run: npm ci --ignore-scripts diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 892789144..c0b26c3d9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: - name: Create .npmrc file run: | echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - name: Install dependencies run: npm ci diff --git a/.github/workflows/sonar-analysis.yml b/.github/workflows/sonar-analysis.yml index a0e07b5a9..c2b5c7b1b 100644 --- a/.github/workflows/sonar-analysis.yml +++ b/.github/workflows/sonar-analysis.yml @@ -19,6 +19,11 @@ jobs: with: node-version: 18 + - name: Create .npmrc file + run: | + echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc + - name: Install system dependencies run: | sudo apt-get update From 5299302bfde635bc7f10d7724aff6008f4c06df8 Mon Sep 17 00:00:00 2001 From: Esteban Galvis Date: Mon, 23 Mar 2026 22:31:36 -0500 Subject: [PATCH 5/5] fix: remove .npmrc creation from workflows and update inxt-js package source --- .github/workflows/find-dead-code.yml | 5 ----- .github/workflows/lint.yml | 15 --------------- .github/workflows/publish.yml | 2 +- .github/workflows/sonar-analysis.yml | 5 ----- .github/workflows/test.yml | 10 ---------- package-lock.json | 4 ++-- 6 files changed, 3 insertions(+), 38 deletions(-) diff --git a/.github/workflows/find-dead-code.yml b/.github/workflows/find-dead-code.yml index df61f9915..87a563cc6 100644 --- a/.github/workflows/find-dead-code.yml +++ b/.github/workflows/find-dead-code.yml @@ -20,11 +20,6 @@ jobs: with: node-version: 18 - - name: Create .npmrc file - run: | - echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - - name: Install dependencies run: npm ci --ignore-scripts diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 56f517de1..07767ac19 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,11 +19,6 @@ jobs: node-version: 18 cache: 'npm' - - name: Create .npmrc file - run: | - echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - - name: Install dependencies run: npm ci --ignore-scripts @@ -44,11 +39,6 @@ jobs: node-version: 18 cache: 'npm' - - name: Create .npmrc file - run: | - echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - - name: Install dependencies run: npm ci --ignore-scripts @@ -69,11 +59,6 @@ jobs: node-version: 18 cache: 'npm' - - name: Create .npmrc file - run: | - echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - - name: Install dependencies run: npm ci --ignore-scripts diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c0b26c3d9..892789144 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: - name: Create .npmrc file run: | echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc - name: Install dependencies run: npm ci diff --git a/.github/workflows/sonar-analysis.yml b/.github/workflows/sonar-analysis.yml index c2b5c7b1b..a0e07b5a9 100644 --- a/.github/workflows/sonar-analysis.yml +++ b/.github/workflows/sonar-analysis.yml @@ -19,11 +19,6 @@ jobs: with: node-version: 18 - - name: Create .npmrc file - run: | - echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - - name: Install system dependencies run: | sudo apt-get update diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c6263dabf..b6d6dd9c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,11 +19,6 @@ jobs: node-version: 18 cache: 'npm' - - name: Create .npmrc file - run: | - echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - - name: Install system dependencies run: | sudo apt-get update @@ -55,11 +50,6 @@ jobs: node-version: 18 cache: 'npm' - - name: Create .npmrc file - run: | - echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - - name: Install dependencies run: npm ci --ignore-scripts diff --git a/package-lock.json b/package-lock.json index 5dbdc51e0..c93c0bc4f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3291,8 +3291,8 @@ }, "node_modules/@internxt/inxt-js": { "version": "2.2.10", - "resolved": "https://npm.pkg.github.com/download/@internxt/inxt-js/2.2.10/7841e03a2a91936a8523f0cf7f1ef7f77317c428", - "integrity": "sha512-nASW+kfkjSJLNS8t/ReIi4HeoH9YWSpzBAHfq3sw/pRZXh2KMazyHhrf42FsupVjWBHFPhS4kxqpQItH6qniJw==", + "resolved": "https://registry.npmjs.org/@internxt/inxt-js/-/inxt-js-2.2.10.tgz", + "integrity": "sha512-s4qFsvS7m68ZqBYcsGW4OZ+g+9cFvoN9rg3kobXCunyCOE1XKLJd7U08hpPxCaLRvVCNjkAvCs7WpBdAB6REzg==", "license": "ISC", "dependencies": { "@internxt/lib": "1.3.1",