Skip to content

Commit 0009aa3

Browse files
committed
refactor: update package versions and changelogs for alpha releases
Signed-off-by: Vladislav Polyakov <[email protected]>
1 parent 799cd13 commit 0009aa3

File tree

10 files changed

+45
-8
lines changed

10 files changed

+45
-8
lines changed

.changeset/pre.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"beige-groups-tell",
1818
"chubby-jeans-cheat",
1919
"clever-badgers-lose",
20+
"cold-books-show",
2021
"cold-donkeys-wash",
2122
"common-facts-kneel",
2223
"common-squids-buy",
@@ -42,10 +43,12 @@
4243
"spicy-mammals-bet",
4344
"sweet-carpets-talk",
4445
"tall-colts-follow",
46+
"ten-carrots-repair",
4547
"tender-symbols-drive",
4648
"tough-fans-watch",
4749
"twenty-hands-write",
4850
"violet-words-wave",
51+
"warm-breads-tell",
4952
"wicked-carrots-own",
5053
"yellow-banks-burn",
5154
"yellow-brooms-care"

.changeset/warm-breads-tell.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ydbjs/topic': patch
3+
---
4+
5+
Add topic-table tx support

packages/auth/CHANGELOG.md

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

3+
## 6.0.0-alpha.16
4+
5+
### Patch Changes
6+
7+
- 799cd13: Support secure options for static credentials provider
8+
39
## 6.0.0-alpha.15
410

511
### Patch Changes

packages/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ydbjs/auth",
3-
"version": "6.0.0-alpha.15",
3+
"version": "6.0.0-alpha.16",
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",

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.19
4+
5+
### Patch Changes
6+
7+
- cf1e3a6: Move gprc channelOptions to separate field
8+
- Updated dependencies [799cd13]
9+
- @ydbjs/auth@6.0.0-alpha.16
10+
311
## 6.0.0-alpha.18
412

513
### Patch Changes

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ydbjs/core",
3-
"version": "6.0.0-alpha.18",
3+
"version": "6.0.0-alpha.19",
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,7 +25,7 @@
2525
"dependencies": {
2626
"@bufbuild/protobuf": "^2.5.2",
2727
"@ydbjs/api": "6.0.0-alpha.8",
28-
"@ydbjs/auth": "^6.0.0-alpha.15",
28+
"@ydbjs/auth": "^6.0.0-alpha.16",
2929
"@ydbjs/error": "6.0.0-alpha.9",
3030
"@ydbjs/retry": "6.0.0-alpha.13",
3131
"debug": "^4.4.0",

packages/query/CHANGELOG.md

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

3+
## 6.0.0-alpha.26
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [cf1e3a6]
8+
- @ydbjs/core@6.0.0-alpha.19
9+
310
## 6.0.0-alpha.25
411

512
### Patch Changes

packages/query/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ydbjs/query",
3-
"version": "6.0.0-alpha.25",
3+
"version": "6.0.0-alpha.26",
44
"description": "High-level, type-safe YQL query and transaction client for YDB. Supports tagged template syntax, parameter binding, transactions, and statistics.",
55
"license": "Apache-2.0",
66
"type": "module",
@@ -39,7 +39,7 @@
3939
"dependencies": {
4040
"@bufbuild/protobuf": "^2.5.2",
4141
"@ydbjs/api": "6.0.0-alpha.8",
42-
"@ydbjs/core": "6.0.0-alpha.18",
42+
"@ydbjs/core": "6.0.0-alpha.19",
4343
"@ydbjs/error": "6.0.0-alpha.9",
4444
"@ydbjs/retry": "6.0.0-alpha.13",
4545
"@ydbjs/value": "6.0.0-alpha.12",
@@ -48,7 +48,7 @@
4848
},
4949
"peerDependencies": {
5050
"@ydbjs/api": "6.0.0-alpha.8",
51-
"@ydbjs/core": "6.0.0-alpha.18"
51+
"@ydbjs/core": "6.0.0-alpha.19"
5252
},
5353
"devDependencies": {
5454
"@types/debug": "^4.1.12"

packages/topic/CHANGELOG.md

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

3+
## 6.0.0-alpha.21
4+
5+
### Patch Changes
6+
7+
- Add topic-table tx support
8+
- Updated dependencies [cf1e3a6]
9+
- @ydbjs/core@6.0.0-alpha.19
10+
311
## 6.0.0-alpha.20
412

513
### Patch Changes

packages/topic/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ydbjs/topic",
3-
"version": "6.0.0-alpha.20",
3+
"version": "6.0.0-alpha.21",
44
"description": "",
55
"license": "Apache-2.0",
66
"type": "module",
@@ -46,7 +46,7 @@
4646
"dependencies": {
4747
"@bufbuild/protobuf": "^2.5.2",
4848
"@ydbjs/api": "6.0.0-alpha.8",
49-
"@ydbjs/core": "6.0.0-alpha.18",
49+
"@ydbjs/core": "6.0.0-alpha.19",
5050
"@ydbjs/error": "6.0.0-alpha.9",
5151
"@ydbjs/retry": "6.0.0-alpha.13",
5252
"@ydbjs/value": "6.0.0-alpha.12",

0 commit comments

Comments
 (0)