Skip to content

Commit 9b6c7f4

Browse files
internal: Publish new version (#3846)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 14095fe commit 9b6c7f4

10 files changed

Lines changed: 51 additions & 27 deletions

File tree

.changeset/fix-pathargs-any-subclass.md

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

examples/benchmark-react/CHANGELOG.md

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

3+
## 0.1.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`14095fe`](https://github.com/reactive/data-client/commit/14095fe768625cf11ce3d80d3493571029cf5b67)]:
8+
- @data-client/rest@0.16.1
9+
- @data-client/react@0.16.0
10+
311
## 0.1.1
412

513
### Patch Changes

examples/benchmark-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-benchmark-react",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"private": true,
55
"description": "React rendering benchmark comparing @data-client/react against other data libraries",
66
"scripts": {

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.17
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`14095fe`](https://github.com/reactive/data-client/commit/14095fe768625cf11ce3d80d3493571029cf5b67)]:
8+
- @data-client/rest@0.16.1
9+
310
## 0.0.16
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.16",
3+
"version": "0.0.17",
44
"packageManager": "yarn@4.13.0",
55
"description": "Coin App",
66
"scripts": {
@@ -46,7 +46,7 @@
4646
"@babel/runtime-corejs3": "7.29.2",
4747
"@data-client/img": "0.16.0",
4848
"@data-client/react": "0.16.0",
49-
"@data-client/rest": "0.16.0",
49+
"@data-client/rest": "0.16.1",
5050
"core-js": "3.49.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.9
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`14095fe`](https://github.com/reactive/data-client/commit/14095fe768625cf11ce3d80d3493571029cf5b67)]:
8+
- @data-client/rest@0.16.1
9+
- @data-client/react@0.16.0
10+
311
## 0.1.8
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.8",
3+
"version": "0.1.9",
44
"packageManager": "yarn@4.13.0",
55
"description": "Testing Bundled Size",
66
"scripts": {

packages/rest/CHANGELOG.md

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

3+
## 0.16.1
4+
5+
### Patch Changes
6+
7+
- [#3845](https://github.com/reactive/data-client/pull/3845) [`14095fe`](https://github.com/reactive/data-client/commit/14095fe768625cf11ce3d80d3493571029cf5b67) - Fix type errors when using concrete body types with subclassed RestEndpoint
8+
9+
Subclassing RestEndpoint (the standard pattern for adding auth headers, custom
10+
serialization, etc.) could produce type errors when specifying concrete body types.
11+
12+
```ts
13+
// Before: type error on body ❌
14+
class AuthdEndpoint<O extends RestGenerics = any> extends RestEndpoint<O> {}
15+
new AuthdEndpoint({
16+
method: 'PUT',
17+
path: '/users/:id',
18+
body: {} as { username: string; email: string },
19+
});
20+
21+
// After: works correctly ✓
22+
```
23+
324
## 0.16.0
425

526
### Minor 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.16.0",
3+
"version": "0.16.1",
44
"description": "Quickly define typed REST resources and endpoints",
55
"homepage": "https://dataclient.io/rest",
66
"repository": {

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3352,7 +3352,7 @@ __metadata:
33523352
languageName: unknown
33533353
linkType: soft
33543354

3355-
"@data-client/rest@npm:0.16.0, @data-client/rest@workspace:*, @data-client/rest@workspace:packages/rest":
3355+
"@data-client/rest@npm:0.16.1, @data-client/rest@workspace:*, @data-client/rest@workspace:packages/rest":
33563356
version: 0.0.0-use.local
33573357
resolution: "@data-client/rest@workspace:packages/rest"
33583358
dependencies:
@@ -11464,7 +11464,7 @@ __metadata:
1146411464
"@babel/runtime-corejs3": "npm:7.29.2"
1146511465
"@data-client/img": "npm:0.16.0"
1146611466
"@data-client/react": "npm:0.16.0"
11467-
"@data-client/rest": "npm:0.16.0"
11467+
"@data-client/rest": "npm:0.16.1"
1146811468
"@linaria/core": "npm:*"
1146911469
"@linaria/react": "npm:*"
1147011470
"@linaria/shaker": "npm:*"

0 commit comments

Comments
 (0)