Skip to content

Commit 601cf09

Browse files
internal: Publish beta version (#3648)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ff2853c commit 601cf09

File tree

12 files changed

+47
-33
lines changed

12 files changed

+47
-33
lines changed

.changeset/lucky-paws-jog.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.changeset/thirty-dolls-wear.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tiny-wolves-thank.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

examples/coin-app/CHANGELOG.md

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

3+
## 0.0.10-beta-20251201012906-ff2853c5a0da93a503b2b606c8fc724625b79308
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`63ee107`](https://github.com/reactive/data-client/commit/63ee107be9d559e6ccbcb2f9c6fd7bf83165e551)]:
8+
- @data-client/rest@0.15.1-beta-20251201012906-ff2853c5a0da93a503b2b606c8fc724625b79308
9+
310
## 0.0.10-beta-20251116224907-3174fe59b114d2037762a6458f5576d23e483ba4
411

512
### Patch Changes

examples/coin-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coinbase-lite",
3-
"version": "0.0.10-beta-20251116224907-3174fe59b114d2037762a6458f5576d23e483ba4",
3+
"version": "0.0.10-beta-20251201012906-ff2853c5a0da93a503b2b606c8fc724625b79308",
44
"packageManager": "[email protected]",
55
"description": "Coin App",
66
"scripts": {
@@ -46,7 +46,7 @@
4646
"@babel/runtime-corejs3": "7.28.4",
4747
"@data-client/img": "0.15.1-beta-20251110151417-8913a49d898f6c7d69e1964d68f19daf68565bef",
4848
"@data-client/react": "0.15.0-beta-20251022142546-a457d1596871fb28f1a91f2531cc259db4d55a9c",
49-
"@data-client/rest": "0.15.1-beta-20251116224907-3174fe59b114d2037762a6458f5576d23e483ba4",
49+
"@data-client/rest": "0.15.1-beta-20251201012906-ff2853c5a0da93a503b2b606c8fc724625b79308",
5050
"core-js": "3.47.0",
5151
"d3": "7.9.0",
5252
"history": "*",

examples/test-bundlesize/CHANGELOG.md

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

3+
## 0.1.1-beta-20251201012906-ff2853c5a0da93a503b2b606c8fc724625b79308
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`63ee107`](https://github.com/reactive/data-client/commit/63ee107be9d559e6ccbcb2f9c6fd7bf83165e551)]:
8+
- @data-client/rest@0.15.1-beta-20251201012906-ff2853c5a0da93a503b2b606c8fc724625b79308
9+
- @data-client/react@0.15.0-beta-20251022142546-a457d1596871fb28f1a91f2531cc259db4d55a9c
10+
311
## 0.1.1-beta-20251116224907-3174fe59b114d2037762a6458f5576d23e483ba4
412

513
### Patch Changes

examples/test-bundlesize/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "test-bundlesize",
3-
"version": "0.1.1-beta-20251116224907-3174fe59b114d2037762a6458f5576d23e483ba4",
3+
"version": "0.1.1-beta-20251201012906-ff2853c5a0da93a503b2b606c8fc724625b79308",
44
"packageManager": "[email protected]",
55
"description": "Testing Bundled Size",
66
"scripts": {

packages/rest/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @data-client/rest
22

3+
## 0.15.1-beta-20251201012906-ff2853c5a0da93a503b2b606c8fc724625b79308
4+
5+
### Patch Changes
6+
7+
- [#3635](https://github.com/reactive/data-client/pull/3635) [`63ee107`](https://github.com/reactive/data-client/commit/63ee107be9d559e6ccbcb2f9c6fd7bf83165e551) Thanks [@ntucker](https://github.com/ntucker)! - Fix `getPage` types when paginationField is in body
8+
9+
```ts
10+
const ep = new RestEndpoint({
11+
path: '/rpc',
12+
method: 'POST',
13+
body: {} as { page?: number; method: string },
14+
paginationField: 'page',
15+
});
16+
// Before: ep.getPage({ page: 2 }, { method: 'get' }) ❌
17+
// After: ep.getPage({ page: 2, method: 'get' }) ✓
18+
```
19+
320
## 0.15.1-beta-20251116224907-3174fe59b114d2037762a6458f5576d23e483ba4
421

522
### Patch Changes

packages/rest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@data-client/rest",
3-
"version": "0.15.1-beta-20251116224907-3174fe59b114d2037762a6458f5576d23e483ba4",
3+
"version": "0.15.1-beta-20251201012906-ff2853c5a0da93a503b2b606c8fc724625b79308",
44
"description": "Quickly define typed REST resources and endpoints",
55
"homepage": "https://dataclient.io/rest",
66
"repository": {

packages/vue/CHANGELOG.md

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

3+
## 0.3.2-beta-20251201012906-ff2853c5a0da93a503b2b606c8fc724625b79308
4+
5+
### Patch Changes
6+
7+
- [`1c945bb`](https://github.com/reactive/data-client/commit/1c945bbc4cd290a186914f16b9afd9e7501198ed) Thanks [@ntucker](https://github.com/ntucker)! - Update README with MockPlugin
8+
9+
- [`b03fa99`](https://github.com/reactive/data-client/commit/b03fa99f1327e91ffad840b90d4ac5ef05a358d3) Thanks [@ntucker](https://github.com/ntucker)! - Improve dependency injection console message
10+
311
## 0.3.2-beta-20251116224907-3174fe59b114d2037762a6458f5576d23e483ba4
412

513
### Patch Changes

0 commit comments

Comments
 (0)