Skip to content

Commit f80464d

Browse files
committed
chore: bump version
Signed-off-by: Vladislav Polyakov <polRk@ydb.tech>
1 parent 14eaa1a commit f80464d

17 files changed

+98
-48
lines changed

.changeset/angry-bags-fail.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ydbjs/retry': patch
3+
---
4+
5+
Return original error when budget exceeded

.changeset/pre.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@
1212
"@ydbjs/value": "6.0.0-alpha.2"
1313
},
1414
"changesets": [
15+
"angry-bags-fail",
1516
"common-facts-kneel",
1617
"cuddly-cougars-cough",
1718
"easy-lands-cut",
1819
"fresh-bushes-know",
1920
"moody-houses-divide",
2021
"polite-eggs-fetch",
2122
"pretty-zebras-enter",
23+
"quick-bananas-sip",
2224
"small-pigs-divide",
2325
"sweet-carpets-talk",
2426
"tall-colts-follow",

.changeset/quick-bananas-sip.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ydbjs/value': patch
3+
---
4+
5+
Export primitive types

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@
1111
"build": "turbo run build",
1212
"attw": "turbo run attw",
1313
"lint": "oxlint",
14-
"test": "vitest --run --project !e2e",
14+
"test": "vitest run --project !e2e",
1515
"test:watch": "vitest --watch --project !e2e",
1616
"test:e2e": "vitest --run --project e2e",
1717
"test:e2e:watch": "vitest --watch --project e2e",
1818
"publish-packages": "turbo run clean build test attw && changeset version && changeset publish"
1919
},
2020
"dependencies": {
21-
"@types/node": "^22.13.10",
22-
"zx": "^8.5.3"
21+
"@types/node": "^22.13.10"
2322
},
2423
"devDependencies": {
2524
"oxlint": "^0.16.4",
2625
"prettier": "^3.5.3",
2726
"tsx": "^4.19.3",
2827
"turbo": "^2.5.0",
2928
"typescript": "^5.8.3",
30-
"vitest": "^3.1.2"
29+
"vitest": "^3.1.2",
30+
"zx": "^8.5.3"
3131
},
3232
"engineStrict": true,
3333
"engines": {

packages/auth/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @ydbjs/auth
22

3+
## 6.0.0-alpha.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @ydbjs/retry@6.0.0-alpha.10
9+
310
## 6.0.0-alpha.10
411

512
### Patch Changes

packages/auth/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ydbjs/auth",
3-
"version": "6.0.0-alpha.10",
3+
"version": "6.0.0-alpha.11",
44
"description": "Authentication providers for YDB: static credentials, tokens, anonymous, and cloud metadata. Integrates with the core driver for secure access.",
55
"license": "Apache-2.0",
66
"type": "module",
@@ -61,7 +61,7 @@
6161
"@bufbuild/protobuf": "^2.2.5",
6262
"@ydbjs/api": "6.0.0-alpha.7",
6363
"@ydbjs/error": "6.0.0-alpha.7",
64-
"@ydbjs/retry": "6.0.0-alpha.9",
64+
"@ydbjs/retry": "6.0.0-alpha.10",
6565
"nice-grpc": "^2.1.12"
6666
},
6767
"publishConfig": {

packages/core/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @ydbjs/core
22

3+
## 6.0.0-alpha.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @ydbjs/retry@6.0.0-alpha.10
9+
- @ydbjs/auth@6.0.0-alpha.11
10+
311
## 6.0.0-alpha.10
412

513
### Patch Changes

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ydbjs/core",
3-
"version": "6.0.0-alpha.10",
3+
"version": "6.0.0-alpha.11",
44
"description": "Core driver for YDB: manages connections, endpoint discovery, authentication, and service client creation. Foundation for all YDB client operations.",
55
"license": "Apache-2.0",
66
"type": "module",
@@ -25,9 +25,9 @@
2525
"dependencies": {
2626
"@bufbuild/protobuf": "^2.2.5",
2727
"@ydbjs/api": "6.0.0-alpha.7",
28-
"@ydbjs/auth": "^6.0.0-alpha.10",
28+
"@ydbjs/auth": "^6.0.0-alpha.11",
2929
"@ydbjs/error": "6.0.0-alpha.7",
30-
"@ydbjs/retry": "6.0.0-alpha.9",
30+
"@ydbjs/retry": "6.0.0-alpha.10",
3131
"debug": "^4.4.0",
3232
"nice-grpc": "^2.1.12"
3333
},

packages/query/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @ydbjs/query
22

3+
## 6.0.0-alpha.14
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- Updated dependencies
9+
- @ydbjs/retry@6.0.0-alpha.10
10+
- @ydbjs/value@6.0.0-alpha.9
11+
- @ydbjs/core@6.0.0-alpha.11
12+
313
## 6.0.0-alpha.13
414

515
### Patch Changes

0 commit comments

Comments
 (0)