Skip to content

Commit ada6e0b

Browse files
committed
chore: update dependencies and refactor code across multiple packages
- Bump versions to 6.0.1-alpha.32 for @ydbjs/api, @ydbjs/auth, @ydbjs/core, @ydbjs/abortable, @ydbjs/debug, @ydbjs/error, @ydbjs/query, @ydbjs/retry, @ydbjs/topic, @ydbjs/value. - Explicitly define grpc-js as a dependency in @ydbjs/api. - Small refactoring and TopicWriter2 improvements on top of xstate in @ydbjs/abortable, @ydbjs/auth, @ydbjs/core, @ydbjs/debug, @ydbjs/error, @ydbjs/query, @ydbjs/retry, @ydbjs/topic, and @ydbjs/value. - Update changelogs to reflect changes and dependency updates. Signed-off-by: Vladislav Polyakov <[email protected]>
1 parent 2f68c84 commit ada6e0b

27 files changed

+302
-98
lines changed

.changeset/eleven-signs-grab.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@ydbjs/api': patch
3+
'@ydbjs/auth': patch
4+
'@ydbjs/core': patch
5+
---
6+
7+
Explicitly define grpc-js as dep

.changeset/fifty-eels-reply.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
'@ydbjs/abortable': patch
3+
'@ydbjs/debug': patch
4+
'@ydbjs/error': patch
5+
'@ydbjs/query': patch
6+
'@ydbjs/retry': patch
7+
'@ydbjs/topic': patch
8+
'@ydbjs/value': patch
9+
'@ydbjs/auth': patch
10+
'@ydbjs/core': patch
11+
'@ydbjs/api': patch
12+
---
13+
14+
Small refactoring and TopicWriter2 (ot top of xstate)

.changeset/pre.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131
"cute-cloths-care",
3232
"easy-lands-cut",
3333
"eighty-cows-stay",
34+
"eleven-signs-grab",
3435
"evil-dogs-drive",
36+
"fifty-eels-reply",
3537
"fresh-bushes-know",
3638
"fruity-chairs-brush",
3739
"fuzzy-lizards-rule",

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.1-alpha.30",
18-
"@ydbjs/auth": "^6.0.1-alpha.30",
19-
"@ydbjs/core": "^6.0.1-alpha.30"
17+
"@ydbjs/api": "^6.0.1-alpha.32",
18+
"@ydbjs/auth": "^6.0.1-alpha.32",
19+
"@ydbjs/core": "^6.0.1-alpha.32"
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.1-alpha.30",
17-
"@ydbjs/query": "^6.0.1-alpha.30",
18-
"@ydbjs/value": "^6.0.1-alpha.30"
16+
"@ydbjs/core": "^6.0.1-alpha.32",
17+
"@ydbjs/query": "^6.0.1-alpha.32",
18+
"@ydbjs/value": "^6.0.1-alpha.32"
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.1-alpha.30",
18-
"@ydbjs/core": "^6.0.1-alpha.30",
19-
"@ydbjs/query": "^6.0.1-alpha.30"
17+
"@ydbjs/auth": "^6.0.1-alpha.32",
18+
"@ydbjs/core": "^6.0.1-alpha.32",
19+
"@ydbjs/query": "^6.0.1-alpha.32"
2020
},
2121
"publishConfig": {
2222
"access": "restricted"

package-lock.json

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

packages/abortable/CHANGELOG.md

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

3+
## 6.0.1-alpha.32
4+
5+
### Patch Changes
6+
7+
- Small refactoring and TopicWriter2 (ot top of xstate)
8+
9+
## 6.0.1-alpha.31
10+
311
## 6.0.1-alpha.30
412

513
### Patch Changes

packages/abortable/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ydbjs/abortable",
3-
"version": "6.0.1-alpha.30",
3+
"version": "6.0.1-alpha.32",
44
"description": "Utilities for working with AbortController and AbortSignal in YDB operations.",
55
"keywords": [
66
"ydb",

packages/api/CHANGELOG.md

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

3+
## 6.0.1-alpha.32
4+
5+
### Patch Changes
6+
7+
- Small refactoring and TopicWriter2 (ot top of xstate)
8+
9+
## 6.0.1-alpha.31
10+
11+
### Patch Changes
12+
13+
- Explicitly define grpc-js as dep
14+
315
## 6.0.1-alpha.30
416

517
### Patch Changes

0 commit comments

Comments
 (0)