Skip to content

Commit 46eff19

Browse files
committed
Update package dependencies to use version ranges
- Change exact versions to ranges (^6.0.0) for independent versioning - Remove peerDependencies from @ydbjs/query - Update examples to use consistent version ranges - Fix publish-packages script command order
1 parent 1ea5a81 commit 46eff19

File tree

18 files changed

+112
-117
lines changed

18 files changed

+112
-117
lines changed

e2e/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ydbjs/e2e",
3-
"version": "6.0.0",
3+
"version": "0.0.0",
44
"private": true,
55
"type": "module",
66
"engines": {
@@ -18,8 +18,11 @@
1818
"@ydbjs/auth": "*",
1919
"@ydbjs/core": "*",
2020
"@ydbjs/debug": "*",
21+
"@ydbjs/error": "*",
2122
"@ydbjs/query": "*",
22-
"@ydbjs/topic": "*"
23+
"@ydbjs/retry": "*",
24+
"@ydbjs/topic": "*",
25+
"@ydbjs/value": "*"
2326
},
2427
"publishConfig": {
2528
"access": "restricted"

examples/api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
},
1515
"dependencies": {
1616
"@bufbuild/protobuf": "^2.6.0",
17-
"@ydbjs/api": "^6.0.5",
18-
"@ydbjs/auth": "^6.0.5",
19-
"@ydbjs/core": "^6.0.5"
17+
"@ydbjs/api": "^6.0.0",
18+
"@ydbjs/auth": "^6.0.0",
19+
"@ydbjs/core": "^6.0.0"
2020
},
2121
"publishConfig": {
2222
"access": "restricted"

examples/auth-yandex-cloud/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
},
1616
"dependencies": {
1717
"@ydbjs/auth-yandex-cloud": "^0.1.2",
18-
"@ydbjs/core": "^6.0.5",
19-
"@ydbjs/query": "^6.0.5"
18+
"@ydbjs/core": "^6.0.0",
19+
"@ydbjs/query": "^6.0.0"
2020
},
2121
"publishConfig": {
2222
"access": "restricted"

examples/query/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"dev": "DEBUG=ydbjs:* node index.js"
1414
},
1515
"dependencies": {
16-
"@ydbjs/core": "^6.0.5",
17-
"@ydbjs/query": "^6.0.5",
18-
"@ydbjs/value": "^6.0.5"
16+
"@ydbjs/core": "^6.0.0",
17+
"@ydbjs/query": "^6.0.0",
18+
"@ydbjs/value": "^6.0.0"
1919
},
2020
"publishConfig": {
2121
"access": "restricted"

examples/sls/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"dev": "DEBUG=ydbjs:* node index.js"
1515
},
1616
"dependencies": {
17-
"@ydbjs/auth": "^6.0.5",
18-
"@ydbjs/core": "^6.0.5",
19-
"@ydbjs/query": "^6.0.5"
17+
"@ydbjs/auth": "^6.0.0",
18+
"@ydbjs/core": "^6.0.0",
19+
"@ydbjs/query": "^6.0.0"
2020
},
2121
"publishConfig": {
2222
"access": "restricted"

examples/tls/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"dev": "DEBUG=ydbjs:* node index.js"
1414
},
1515
"dependencies": {
16-
"@ydbjs/api": "^6.0.5",
17-
"@ydbjs/auth": "^6.0.5",
18-
"@ydbjs/core": "^6.0.5"
16+
"@ydbjs/api": "^6.0.0",
17+
"@ydbjs/auth": "^6.0.0",
18+
"@ydbjs/core": "^6.0.0"
1919
},
2020
"publishConfig": {
2121
"access": "restricted"

examples/topic/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"dev": "DEBUG=ydbjs:* node index.js"
1414
},
1515
"dependencies": {
16-
"@ydbjs/core": "^6.0.5",
17-
"@ydbjs/query": "^6.0.5",
18-
"@ydbjs/topic": "^6.0.5"
16+
"@ydbjs/core": "^6.0.0",
17+
"@ydbjs/query": "^6.0.0",
18+
"@ydbjs/topic": "^6.0.0"
1919
},
2020
"publishConfig": {
2121
"access": "restricted"

package-lock.json

Lines changed: 57 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"attw": "turbo run attw",
2121
"test": "vitest --run",
2222
"lint": "oxlint",
23-
"publish-packages": "turbo run clean build test attw && changeset version && changeset publish"
23+
"publish-packages": "turbo run clean build attw test && changeset version && changeset publish"
2424
},
2525
"dependencies": {
2626
"@types/node": "^24.10.0"

packages/auth/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
"dependencies": {
5050
"@bufbuild/protobuf": "2.10.0",
5151
"@grpc/grpc-js": "^1.14.0",
52-
"@ydbjs/api": "6.0.5",
53-
"@ydbjs/debug": "6.0.5",
54-
"@ydbjs/error": "6.0.5",
55-
"@ydbjs/retry": "6.0.5",
52+
"@ydbjs/api": "^6.0.0",
53+
"@ydbjs/debug": "^6.0.0",
54+
"@ydbjs/error": "^6.0.0",
55+
"@ydbjs/retry": "^6.0.0",
5656
"nice-grpc": "^2.1.13"
5757
},
5858
"files": [

0 commit comments

Comments
 (0)