Skip to content

Commit af07e7a

Browse files
internal: Publish new version (#3322)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 1112651 commit af07e7a

File tree

12 files changed

+62
-47
lines changed

12 files changed

+62
-47
lines changed

.changeset/cold-bugs-shave.md

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

.changeset/itchy-guests-argue.md

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

.changeset/perfect-walls-admire.md

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

examples/benchmark/CHANGELOG.md

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

3+
## 0.4.67
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`3906fc2`](https://github.com/reactive/data-client/commit/3906fc2fec2b958a44d718934919b524e851f298)]:
8+
- @data-client/core@0.14.18
9+
- @data-client/endpoint@0.14.17
10+
311
## 0.4.66
412

513
### Patch Changes

examples/benchmark/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",
3-
"version": "0.4.66",
3+
"version": "0.4.67",
44
"description": "Benchmark for normalizr",
55
"main": "index.js",
66
"author": "Nathaniel Tucker",

packages/core/CHANGELOG.md

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

3+
## 0.14.18
4+
5+
### Patch Changes
6+
7+
- [`3906fc2`](https://github.com/reactive/data-client/commit/3906fc2fec2b958a44d718934919b524e851f298) Thanks [@ntucker](https://github.com/ntucker)! - SUBSCRIBE action field ordering consistent with other actions
8+
39
## 0.14.16
410

511
### Patch Changes

packages/core/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/core",
3-
"version": "0.14.16",
3+
"version": "0.14.18",
44
"description": "Async State Management without the Management. REST, GraphQL, SSE, Websockets, Fetch",
55
"sideEffects": false,
66
"main": "dist/index.js",

packages/react/CHANGELOG.md

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

3+
## 0.14.18
4+
5+
### Patch Changes
6+
7+
- [`3906fc2`](https://github.com/reactive/data-client/commit/3906fc2fec2b958a44d718934919b524e851f298) Thanks [@ntucker](https://github.com/ntucker)! - SUBSCRIBE action field ordering consistent with other actions
8+
9+
- [`19d4669`](https://github.com/reactive/data-client/commit/19d46699fa9c50ab56b1f4e2c5bafc390ffe6331) Thanks [@ntucker](https://github.com/ntucker)! - Fix pnp compatibility
10+
11+
Change import from @data-client/normalizr -> @data-client/core
12+
as `core` is explicit dependency
13+
14+
- Updated dependencies [[`3906fc2`](https://github.com/reactive/data-client/commit/3906fc2fec2b958a44d718934919b524e851f298)]:
15+
- @data-client/core@0.14.18
16+
317
## 0.14.17
418

519
### Patch Changes

packages/react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@data-client/react",
3-
"version": "0.14.17",
3+
"version": "0.14.18",
44
"description": "Async State Management without the Management. REST, GraphQL, SSE, Websockets, Fetch",
55
"homepage": "https://dataclient.io",
66
"repository": {
@@ -169,7 +169,7 @@
169169
"license": "Apache-2.0",
170170
"dependencies": {
171171
"@babel/runtime": "^7.17.0",
172-
"@data-client/core": "^0.14.16",
172+
"@data-client/core": "^0.14.18",
173173
"@data-client/use-enhanced-reducer": "^0.1.11"
174174
},
175175
"peerDependencies": {

packages/rest/CHANGELOG.md

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

3+
## 0.14.18
4+
5+
### Patch Changes
6+
7+
- [#3333](https://github.com/reactive/data-client/pull/3333) [`1777546`](https://github.com/reactive/data-client/commit/17775462d236bf714f518b861a63d5ae9f1f6357) Thanks [@renovate](https://github.com/apps/renovate)! - Resource.extend() compatibility with TypeScript 5
8+
9+
Previously [extending existing members](https://dataclient.io/rest/api/resource#extend-override) with no
10+
typed overrides (like [path](https://dataclient.io/rest/api/resource#path)) would not work starting with
11+
TypeScript 5.7.
12+
13+
```ts
14+
const UserResource = UserResourceBase.extend({
15+
partialUpdate: {
16+
getOptimisticResponse(snap, params, body) {
17+
params.id;
18+
params.group;
19+
// @ts-expect-error
20+
params.nothere;
21+
return {
22+
id: params.id,
23+
...body,
24+
};
25+
},
26+
},
27+
});
28+
```
29+
330
## 0.14.17
431

532
### Patch Changes

0 commit comments

Comments
 (0)