Skip to content

Commit e370630

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

File tree

11 files changed

+63
-47
lines changed

11 files changed

+63
-47
lines changed

.changeset/many-rings-matter.md

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

.changeset/metal-birds-punch.md

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

packages/react/CHANGELOG.md

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

3+
## 0.12.9
4+
5+
### Patch Changes
6+
7+
- [#3074](https://github.com/reactive/data-client/pull/3074) [`1f1f66a`](https://github.com/reactive/data-client/commit/1f1f66a54219d65019f8c3cea380e627b317bbef) Thanks [@ntucker](https://github.com/ntucker)! - Compatibility with server/client component build rules
8+
9+
- Updated dependencies [[`1f1f66a`](https://github.com/reactive/data-client/commit/1f1f66a54219d65019f8c3cea380e627b317bbef)]:
10+
- @data-client/use-enhanced-reducer@0.1.9
11+
312
## 0.12.8
413

514
### 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.12.8",
3+
"version": "0.12.9",
44
"description": "High performance mutable data rendering in React.",
55
"homepage": "https://dataclient.io",
66
"repository": {
@@ -129,7 +129,7 @@
129129
"dependencies": {
130130
"@babel/runtime": "^7.17.0",
131131
"@data-client/core": "^0.12.5",
132-
"@data-client/use-enhanced-reducer": "^0.1.8"
132+
"@data-client/use-enhanced-reducer": "^0.1.9"
133133
},
134134
"peerDependencies": {
135135
"@react-navigation/native": "^6.0.0",

packages/redux/CHANGELOG.md

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

3+
## 0.12.9
4+
5+
### Patch Changes
6+
7+
- [#3074](https://github.com/reactive/data-client/pull/3074) [`1f1f66a`](https://github.com/reactive/data-client/commit/1f1f66a54219d65019f8c3cea380e627b317bbef) Thanks [@ntucker](https://github.com/ntucker)! - Compatibility with server/client component build rules
8+
39
## 0.12.8
410

511
### Patch Changes

packages/redux/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/redux",
3-
"version": "0.12.8",
3+
"version": "0.12.9",
44
"description": "Asynchronous data framework for React",
55
"homepage": "https://dataclient.io",
66
"repository": {

packages/ssr/CHANGELOG.md

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

3+
## 0.12.9
4+
5+
### Patch Changes
6+
7+
- [#3074](https://github.com/reactive/data-client/pull/3074) [`1f1f66a`](https://github.com/reactive/data-client/commit/1f1f66a54219d65019f8c3cea380e627b317bbef) Thanks [@ntucker](https://github.com/ntucker)! - Add DataProvider export to /nextjs namespace.
8+
9+
This provides 'App Router' compatibility. Simply add it to the root layout, ensuring
10+
`children` is rendered as a descendent.
11+
12+
<details open>
13+
<summary><b>app/layout.tsx</b></summary>
14+
15+
```tsx
16+
import { DataProvider } from '@data-client/react/nextjs';
17+
import { AsyncBoundary } from '@data-client/react';
18+
19+
export default function RootLayout({ children }) {
20+
return (
21+
<html>
22+
<body>
23+
<DataProvider>
24+
<header>Title</header>
25+
<AsyncBoundary>{children}</AsyncBoundary>
26+
<footer></footer>
27+
</DataProvider>
28+
</body>
29+
</html>
30+
);
31+
}
32+
```
33+
34+
</details>
35+
36+
- [#3074](https://github.com/reactive/data-client/pull/3074) [`1f1f66a`](https://github.com/reactive/data-client/commit/1f1f66a54219d65019f8c3cea380e627b317bbef) Thanks [@ntucker](https://github.com/ntucker)! - Compatibility with server/client component build rules
37+
338
## 0.12.8
439

540
### Patch Changes

packages/ssr/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/ssr",
3-
"version": "0.12.8",
3+
"version": "0.12.9",
44
"description": "Server Side Rendering helpers for Data Client",
55
"homepage": "https://dataclient.io/docs/guides/ssr",
66
"repository": {

packages/use-enhanced-reducer/CHANGELOG.md

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

3+
## 0.1.9
4+
5+
### Patch Changes
6+
7+
- [#3074](https://github.com/reactive/data-client/pull/3074) [`1f1f66a`](https://github.com/reactive/data-client/commit/1f1f66a54219d65019f8c3cea380e627b317bbef) Thanks [@ntucker](https://github.com/ntucker)! - Compatibility with server/client component build rules
8+
39
## 0.1.8
410

511
### Patch Changes

packages/use-enhanced-reducer/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/use-enhanced-reducer",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"description": "Add powerful orchestration to hooks-based Flux stores",
55
"homepage": "https://github.com/reactive/data-client/tree/master/packages/use-enhanced-reducer#readme",
66
"repository": {

0 commit comments

Comments
 (0)