Skip to content

Commit af92c10

Browse files
committed
Release v3 stable
1 parent a722fdb commit af92c10

18 files changed

+136
-134
lines changed

.changeset/dirty-boats-add.md

-6
This file was deleted.

.changeset/eight-rabbits-fetch.md

-42
This file was deleted.

.changeset/empty-kids-lay.md

-6
This file was deleted.

.changeset/happy-icons-reflect.md

-6
This file was deleted.

.changeset/happy-nails-repeat.md

-6
This file was deleted.

.changeset/pink-phones-travel.md

-8
This file was deleted.

.changeset/pre.json

-19
This file was deleted.

.changeset/twelve-planes-learn.md

-6
This file was deleted.

.changeset/twenty-cougars-tease.md

-6
This file was deleted.

.changeset/warm-carrots-rule.md

-6
This file was deleted.

.changeset/wet-tools-pump.md

-6
This file was deleted.

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: CI
22
on: [push, pull_request]
3+
34
jobs:
45
run:
56
name: Run

.github/workflows/release.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: Release
33
on:
44
push:
55
branches:
6-
- master
7-
- next
6+
- main
87

98
jobs:
109
release:

packages/json-react-layouts-data-loader/CHANGELOG.md

+71
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,76 @@
11
# json-react-layouts-data-loader
22

3+
## 4.0.0
4+
5+
### Major Changes
6+
7+
- 53cc7ae: Restructured public API slightly to reduce bundle size and type complexity
8+
9+
### Minor Changes
10+
11+
- c3d964b: Switched typescript-log to use debug package, see readme for how to enable debug logging
12+
- 9a6621d: Upgraded dependencies
13+
- 9f335c8: Add ability for a composition to provide additional props to all components rendered inside it
14+
15+
This opens up the possibility of compositions to pass width ratio information down to children, enabling sorta container queries
16+
17+
### Patch Changes
18+
19+
- 5bda5b9: Each component and composition must be wrapped in a layout.component() or layout.composition()
20+
21+
This is because TypeScript does not yet support variadic types, meaning we can't accurately enforce the types on a ...rest style function.
22+
23+
Before:
24+
25+
```
26+
{
27+
type: 'test-composition',
28+
contentAreas: {
29+
main: [
30+
{
31+
type: 'test-with-data',
32+
props: { dataDefinitionArgs: { dataArg: 'Foo' } },
33+
},
34+
],
35+
},
36+
props: {},
37+
}
38+
```
39+
40+
After:
41+
42+
```
43+
layout.composition({
44+
type: 'test-composition',
45+
contentAreas: {
46+
main: [
47+
layout.component({
48+
type: 'test-with-data',
49+
props: { dataDefinitionArgs: { dataArg: 'Foo' } },
50+
}),
51+
],
52+
},
53+
props: {},
54+
})
55+
```
56+
57+
- 2d4f44c: Fixed crash when using hooks inside useRuntimeParams
58+
- fac39be: Simplified types further
59+
- 97beb57: Fixed issue where middleware is violating the rules of hooks
60+
- cee52d7: Restore default generic param for DataDefinition type
61+
- b16bdac: Allow checked composition to be used as a nested composition
62+
- Updated dependencies [c3d964b]
63+
- Updated dependencies [5bda5b9]
64+
- Updated dependencies [2d4f44c]
65+
- Updated dependencies [9a6621d]
66+
- Updated dependencies [53cc7ae]
67+
- Updated dependencies [9f335c8]
68+
- Updated dependencies [fac39be]
69+
- Updated dependencies [97beb57]
70+
- Updated dependencies [cee52d7]
71+
- Updated dependencies [b16bdac]
72+
73+
374
## 4.0.0-beta.8
475
576
### Patch Changes

packages/json-react-layouts-data-loader/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-react-layouts-data-loader",
3-
"version": "4.0.0-beta.8",
3+
"version": "4.0.0",
44
"repository": "github:sevenwestmedia-labs/json-react-layouts",
55
"author": "Seven West Media WA",
66
"license": "MIT",
@@ -9,7 +9,7 @@
99
"module": "dist/esm/index.js",
1010
"devDependencies": {},
1111
"dependencies": {
12-
"json-react-layouts": "^3.0.0-beta.8"
12+
"json-react-layouts": "^3.0.0"
1313
},
1414
"peerDependencies": {
1515
"react-ssr-data-loader": "^2.0.0-next.3"

packages/json-react-layouts/CHANGELOG.md

+60
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,65 @@
11
# json-react-layouts
22

3+
## 3.0.0
4+
5+
### Major Changes
6+
7+
- 53cc7ae: Restructured public API slightly to reduce bundle size and type complexity
8+
9+
### Minor Changes
10+
11+
- c3d964b: Switched typescript-log to use debug package, see readme for how to enable debug logging
12+
- 9a6621d: Upgraded dependencies
13+
- 9f335c8: Add ability for a composition to provide additional props to all components rendered inside it
14+
15+
This opens up the possibility of compositions to pass width ratio information down to children, enabling sorta container queries
16+
17+
### Patch Changes
18+
19+
- 5bda5b9: Each component and composition must be wrapped in a layout.component() or layout.composition()
20+
21+
This is because TypeScript does not yet support variadic types, meaning we can't accurately enforce the types on a ...rest style function.
22+
23+
Before:
24+
25+
```
26+
{
27+
type: 'test-composition',
28+
contentAreas: {
29+
main: [
30+
{
31+
type: 'test-with-data',
32+
props: { dataDefinitionArgs: { dataArg: 'Foo' } },
33+
},
34+
],
35+
},
36+
props: {},
37+
}
38+
```
39+
40+
After:
41+
42+
```
43+
layout.composition({
44+
type: 'test-composition',
45+
contentAreas: {
46+
main: [
47+
layout.component({
48+
type: 'test-with-data',
49+
props: { dataDefinitionArgs: { dataArg: 'Foo' } },
50+
}),
51+
],
52+
},
53+
props: {},
54+
})
55+
```
56+
57+
- 2d4f44c: Fixed crash when using hooks inside useRuntimeParams
58+
- fac39be: Simplified types further
59+
- 97beb57: Fixed issue where middleware is violating the rules of hooks
60+
- cee52d7: Restore default generic param for DataDefinition type
61+
- b16bdac: Allow checked composition to be used as a nested composition
62+
363
## 3.0.0-beta.8
464
565
### Patch Changes

packages/json-react-layouts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-react-layouts",
3-
"version": "3.0.0-beta.8",
3+
"version": "3.0.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"sideEffects": false,

yarn.lock

-12
Original file line numberDiff line numberDiff line change
@@ -2003,18 +2003,6 @@ eslint-config-prettier@^8.3.0:
20032003
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a"
20042004
integrity sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==
20052005

2006-
eslint-config-wanews-base@^2.2.0:
2007-
version "2.2.0"
2008-
resolved "https://registry.yarnpkg.com/eslint-config-wanews-base/-/eslint-config-wanews-base-2.2.0.tgz#77508ae63a71329467609b82fd27108305e6f7c9"
2009-
integrity sha512-S8ebnWiWMAeAr0YdgG+iIYqni+YTM/tfab4eo2E/oXvL8VrOFjk/1fnOOY46XC1ODqeVX3htvgz1O3Q19bRarw==
2010-
2011-
eslint-config-wanews@^2.2.0:
2012-
version "2.2.0"
2013-
resolved "https://registry.yarnpkg.com/eslint-config-wanews/-/eslint-config-wanews-2.2.0.tgz#8afaa9d31cf8a180179b98e1ed5ccfa3feaf5071"
2014-
integrity sha512-q6eDY8O0HAiag6pd35qX6ne3axoV5XW8GNq4PAhN0RuqAyT8XjdQL0FHpK2+zoJKX03LtwxkKdOEoRFS9bjp8w==
2015-
dependencies:
2016-
eslint-config-wanews-base "^2.2.0"
2017-
20182006
eslint-formatter-pretty@^4.0.0:
20192007
version "4.1.0"
20202008
resolved "https://registry.yarnpkg.com/eslint-formatter-pretty/-/eslint-formatter-pretty-4.1.0.tgz#7a6877c14ffe2672066c853587d89603e97c7708"

0 commit comments

Comments
 (0)