Skip to content

Commit 7a2b4a0

Browse files
committed
chore: Add missing repository.url for npm provenance validation
Fix repository.url in package.json files to enable npm provenance validation with OIDC trusted publishing. This ensures all public packages have the correct repository URL matching the GitHub repo.
1 parent 0e09c4f commit 7a2b4a0

File tree

11 files changed

+44
-3
lines changed

11 files changed

+44
-3
lines changed

packages/cubejs-backend-cloud/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
"node": "^14.0.0 || ^16.0.0 || >=17.0.0"
2222
},
2323
"author": "Cube Dev, Inc.",
24+
"repository": {
25+
"type": "git",
26+
"url": "https://github.com/cube-js/cube.git",
27+
"directory": "packages/cubejs-backend-cloud"
28+
},
2429
"license": "Apache-2.0",
2530
"devDependencies": {
2631
"@babel/core": "^7.24.5",

packages/cubejs-backend-native/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"typings": "dist/js/index.d.ts",
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/cube-js/cube.git"
10+
"url": "https://github.com/cube-js/cube.git",
11+
"directory": "packages/cubejs-backend-native"
1112
},
1213
"scripts": {
1314
"tsc": "tsc",

packages/cubejs-backend-shared/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
"node": "^14.0.0 || ^16.0.0 || >=17.0.0"
2121
},
2222
"author": "Cube Dev, Inc.",
23+
"repository": {
24+
"type": "git",
25+
"url": "https://github.com/cube-js/cube.git",
26+
"directory": "packages/cubejs-backend-shared"
27+
},
2328
"license": "Apache-2.0",
2429
"devDependencies": {
2530
"@cubejs-backend/linter": "1.5.13",

packages/cubejs-client-vue3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"engines": {},
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/cube-js/cube.js.git",
7+
"url": "https://github.com/cube-js/cube.git",
88
"directory": "packages/cubejs-client-vue3"
99
},
1010
"description": "Vue.js 3 components for cube.js",

packages/cubejs-templates/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
"version": "1.5.13",
44
"description": "Cube.js Templates helpers",
55
"author": "Cube Dev, Inc.",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/cube-js/cube.git",
9+
"directory": "packages/cubejs-templates"
10+
},
611
"license": "Apache-2.0",
712
"main": "dist/src/index.js",
813
"typings": "dist/src/index.d.ts",

packages/cubejs-testing-drivers/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
"version": "1.5.13",
44
"description": "Cube.js drivers test suite",
55
"author": "Cube Dev, Inc.",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/cube-js/cube.git",
9+
"directory": "packages/cubejs-testing-drivers"
10+
},
611
"license": "MIT",
712
"main": "dist/src/index.js",
813
"typings": "dist/src/index.d.ts",

packages/cubejs-testing-shared/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
"version": "1.5.13",
44
"description": "Cube.js Testing Helpers",
55
"author": "Cube Dev, Inc.",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/cube-js/cube.git",
9+
"directory": "packages/cubejs-testing-shared"
10+
},
611
"license": "Apache-2.0",
712
"main": "dist/src/index.js",
813
"typings": "dist/src/index.d.ts",

packages/cubejs-testing/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
"version": "1.5.13",
44
"description": "Cube.js e2e tests",
55
"author": "Cube Dev, Inc.",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/cube-js/cube.git",
9+
"directory": "packages/cubejs-testing"
10+
},
611
"license": "Apache-2.0",
712
"main": "dist/src/index.js",
813
"typings": "dist/src/index.d.ts",

packages/cubejs-vertica-driver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"version": "1.5.13",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/cube-js/cube.js.git",
8+
"url": "https://github.com/cube-js/cube.git",
99
"directory": "packages/cubejs-vertica-driver"
1010
},
1111
"engines": {

rust/cubesql/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
"index.js"
1111
],
1212
"author": "Cube Dev, Inc.",
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/cube-js/cube.git",
16+
"directory": "rust/cubesql"
17+
},
1318
"license": "Apache-2.0",
1419
"publishConfig": {
1520
"access": "public"

0 commit comments

Comments
 (0)