Skip to content

Commit 494c345

Browse files
committed
Merge branch 'stable' into develop
2 parents d70d526 + 283b2e1 commit 494c345

File tree

8 files changed

+119
-15
lines changed

8 files changed

+119
-15
lines changed

.all-contributorsrc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
"code",
3636
"doc",
3737
"test",
38-
"review"
38+
"review",
39+
"example"
3940
]
4041
},
4142
{
@@ -1180,6 +1181,16 @@
11801181
"contributions": [
11811182
"doc"
11821183
]
1184+
},
1185+
{
1186+
"login": "dev-cj",
1187+
"name": "CJ",
1188+
"avatar_url": "https://avatars.githubusercontent.com/u/47112778?v=4",
1189+
"profile": "https://devcj.in/",
1190+
"contributions": [
1191+
"doc",
1192+
"code"
1193+
]
11831194
}
11841195
]
11851196
}

CHANGELOG.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,71 @@
1+
# v0.16.1 (Thu Sep 07 2023)
2+
3+
#### 🐛 Bug Fix
4+
5+
- fix: ThemeProvider warning message ([@hasparus](https://github.com/hasparus))
6+
7+
#### 👨‍💻 Minor changes
8+
9+
- Add missing migration notes on 0.16 to docs ([@hasparus](https://github.com/hasparus))
10+
11+
#### Authors: 1
12+
13+
- Piotr Monwid-Olechnowicz ([@hasparus](https://github.com/hasparus))
14+
15+
---
16+
17+
# v0.16.0 (Thu Jun 15 2023)
18+
19+
### Release Notes
20+
21+
#### Deps bumps for 0.16.0 ([#2432](https://github.com/system-ui/theme-ui/pull/2432))
22+
23+
`@theme-ui/sidenav` package was removed due to low usage and breaking changes in `@types/react`.
24+
25+
---
26+
27+
#### 🚀 Enhancement
28+
29+
- Deps bumps for 0.16.0 [#2432](https://github.com/system-ui/theme-ui/pull/2432) ([@hasparus](https://github.com/hasparus))
30+
- Deprecate/rename ThemeProvider to ThemeUIProvider [#2360](https://github.com/system-ui/theme-ui/pull/2360) ([@lachlanjc](https://github.com/lachlanjc) [@hasparus](https://github.com/hasparus))
31+
32+
#### 👨‍💻 Minor changes
33+
34+
- Trigger release again ([@hasparus](https://github.com/hasparus))
35+
- Trigger release ([@hasparus](https://github.com/hasparus))
36+
- Update lockfile ([@hasparus](https://github.com/hasparus))
37+
- Update Browserlist ([@hasparus](https://github.com/hasparus))
38+
- Update pnpm-lock.yaml ([@hasparus](https://github.com/hasparus))
39+
40+
#### Authors: 2
41+
42+
- Lachlan Campbell ([@lachlanjc](https://github.com/lachlanjc))
43+
- Piotr Monwid-Olechnowicz ([@hasparus](https://github.com/hasparus))
44+
45+
---
46+
47+
# v0.15.8 (Sat Apr 29 2023)
48+
49+
:tada: This release contains work from a new contributor! :tada:
50+
51+
Thank you, CJ ([@dev-cj](https://github.com/dev-cj)), for all your work!
52+
53+
#### 🐛 Bug Fix
54+
55+
- fix(theme-ui): add transitive peer dependency on `@emotion/react` [#2421](https://github.com/system-ui/theme-ui/pull/2421) ([@hasparus](https://github.com/hasparus))
56+
57+
#### 🏠 Internal
58+
59+
- components: Added indeterminate checkbox [#2419](https://github.com/system-ui/theme-ui/pull/2419) ([@dev-cj](https://github.com/dev-cj))
60+
- docs: Fix typo in "switch" [#2420](https://github.com/system-ui/theme-ui/pull/2420) ([@dev-cj](https://github.com/dev-cj))
61+
62+
#### Authors: 2
63+
64+
- CJ ([@dev-cj](https://github.com/dev-cj))
65+
- Piotr Monwid-Olechnowicz ([@hasparus](https://github.com/hasparus))
66+
67+
---
68+
169
# v0.15.7 (Thu Mar 30 2023)
270

371

MIGRATING.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Migration Guides
22

3+
## v0.16
4+
5+
**🔥 Breaking:** Theme UI now supports and **depends on** TypeScript newer than
6+
5.1.2 (because of breaking changes to JSX types, see
7+
https://github.com/system-ui/theme-ui/issues/2430#issuecomment-1586197881).
8+
9+
- Update `@types/react` to a version published after June 1, 2023.
10+
- JSX Automatic Runtime is highly encouraged to minimize the friction and ensure
11+
you don't get weird type errors.
12+
13+
**`@theme-ui/sidenav` package was removed due to low usage and breaking changes
14+
in `@types/react`.**
15+
16+
- Deps bumps for 0.16.0, support only new React and TypeScript to avoid type
17+
errors [#2432](https://github.com/system-ui/theme-ui/pull/2432)
18+
([@hasparus](https://github.com/hasparus))
19+
20+
**`ThemeProvider` was renamed to `ThemeUIProvider`**
21+
22+
- Deprecate/rename ThemeProvider to ThemeUIProvider
23+
[#2360](https://github.com/system-ui/theme-ui/pull/2360)
24+
([@lachlanjc](https://github.com/lachlanjc)
25+
[@hasparus](https://github.com/hasparus))
26+
327
## v0.15
428

529
**MDX is now opt-in.**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@theme-ui/monorepo",
3-
"version": "0.15.7",
3+
"version": "0.16.1",
44
"private": true,
55
"scripts": {
66
"build": "preconstruct build",

packages/sidenav/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/theme-provider/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export const ThemeProvider: React.FC<ThemeProviderProps> = ({
6565
React.useEffect(() => {
6666
if (process.env.NODE_ENV !== 'production') {
6767
console.warn(
68-
'[theme-ui] The export ThemeUIProvider is deprecated and is now called ThemeProvider to reduce confusion with Emotion. Please update your import; ThemeUIProvider will be removed in a future version.'
68+
'[theme-ui] The export ThemeProvider is deprecated and is now called ThemeUIProvider to reduce confusion with Emotion. Please update your import; ThemeProvider will be removed in a future version.'
6969
)
7070
}
7171
}, [])

packages/theme-ui/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ Thanks goes to these wonderful people
237237
<table>
238238
<tr>
239239
<td align="center"><a href="https://jxnblk.com/"><img src="https://avatars.githubusercontent.com/u/3451712?v=4?s=63" width="63px;" alt=""/><br /><sub><b>Brent Jackson</b></sub></a><br /><a href="#ideas-jxnblk" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/system-ui/theme-ui/commits?author=jxnblk" title="Code">💻</a> <a href="#design-jxnblk" title="Design">🎨</a> <a href="https://github.com/system-ui/theme-ui/commits?author=jxnblk" title="Documentation">📖</a> <a href="#example-jxnblk" title="Examples">💡</a> <a href="https://github.com/system-ui/theme-ui/commits?author=jxnblk" title="Tests">⚠️</a> <a href="https://github.com/system-ui/theme-ui/pulls?q=is%3Apr+reviewed-by%3Ajxnblk" title="Reviewed Pull Requests">👀</a></td>
240-
<td align="center"><a href="https://haspar.us/"><img src="https://avatars.githubusercontent.com/u/15332326?v=4?s=63" width="63px;" alt=""/><br /><sub><b>Piotr Monwid-Olechnowicz</b></sub></a><br /><a href="https://github.com/system-ui/theme-ui/commits?author=hasparus" title="Code">💻</a> <a href="https://github.com/system-ui/theme-ui/commits?author=hasparus" title="Documentation">📖</a> <a href="https://github.com/system-ui/theme-ui/commits?author=hasparus" title="Tests">⚠️</a> <a href="https://github.com/system-ui/theme-ui/pulls?q=is%3Apr+reviewed-by%3Ahasparus" title="Reviewed Pull Requests">👀</a></td>
240+
<td align="center"><a href="https://haspar.us/"><img src="https://avatars.githubusercontent.com/u/15332326?v=4?s=63" width="63px;" alt=""/><br /><sub><b>Piotr Monwid-Olechnowicz</b></sub></a><br /><a href="https://github.com/system-ui/theme-ui/commits?author=hasparus" title="Code">💻</a> <a href="https://github.com/system-ui/theme-ui/commits?author=hasparus" title="Documentation">📖</a> <a href="https://github.com/system-ui/theme-ui/commits?author=hasparus" title="Tests">⚠️</a> <a href="https://github.com/system-ui/theme-ui/pulls?q=is%3Apr+reviewed-by%3Ahasparus" title="Reviewed Pull Requests">👀</a> <a href="#example-hasparus" title="Examples">💡</a></td>
241241
<td align="center"><a href="https://github.com/dcastil"><img src="https://avatars.githubusercontent.com/u/31006608?v=4?s=63" width="63px;" alt=""/><br /><sub><b>Dany Castillo</b></sub></a><br /><a href="https://github.com/system-ui/theme-ui/commits?author=dcastil" title="Code">💻</a> <a href="https://github.com/system-ui/theme-ui/commits?author=dcastil" title="Documentation">📖</a> <a href="#example-dcastil" title="Examples">💡</a> <a href="https://github.com/system-ui/theme-ui/commits?author=dcastil" title="Tests">⚠️</a></td>
242242
<td align="center"><a href="https://jordanoverbye.com/"><img src="https://avatars.githubusercontent.com/u/6265154?v=4?s=63" width="63px;" alt=""/><br /><sub><b>Jordan Overbye</b></sub></a><br /><a href="https://github.com/system-ui/theme-ui/commits?author=jordanoverbye" title="Code">💻</a> <a href="#example-jordanoverbye" title="Examples">💡</a> <a href="https://github.com/system-ui/theme-ui/commits?author=jordanoverbye" title="Tests">⚠️</a></td>
243243
<td align="center"><a href="https://lachlanjc.com/"><img src="https://avatars.githubusercontent.com/u/5074763?v=4?s=63" width="63px;" alt=""/><br /><sub><b>Lachlan Campbell</b></sub></a><br /><a href="https://github.com/system-ui/theme-ui/commits?author=lachlanjc" title="Code">💻</a> <a href="#example-lachlanjc" title="Examples">💡</a> <a href="https://github.com/system-ui/theme-ui/commits?author=lachlanjc" title="Tests">⚠️</a> <a href="https://github.com/system-ui/theme-ui/pulls?q=is%3Apr+reviewed-by%3Alachlanjc" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/system-ui/theme-ui/commits?author=lachlanjc" title="Documentation">📖</a> <a href="#question-lachlanjc" title="Answering Questions">💬</a></td>
@@ -385,6 +385,9 @@ Thanks goes to these wonderful people
385385
<td align="center"><a href="https://github.com/wahidrahim"><img src="https://avatars.githubusercontent.com/u/7417976?v=4?s=63" width="63px;" alt=""/><br /><sub><b>Wahid Rahim</b></sub></a><br /><a href="https://github.com/system-ui/theme-ui/commits?author=wahidrahim" title="Documentation">📖</a> <a href="#example-wahidrahim" title="Examples">💡</a> <a href="https://github.com/system-ui/theme-ui/commits?author=wahidrahim" title="Code">💻</a></td>
386386
<td align="center"><a href="https://github.com/JustinotherGitter"><img src="https://avatars.githubusercontent.com/u/49234323?v=4?s=63" width="63px;" alt=""/><br /><sub><b>Justin Cooper</b></sub></a><br /><a href="https://github.com/system-ui/theme-ui/commits?author=JustinotherGitter" title="Documentation">📖</a></td>
387387
</tr>
388+
<tr>
389+
<td align="center"><a href="https://devcj.in/"><img src="https://avatars.githubusercontent.com/u/47112778?v=4?s=63" width="63px;" alt=""/><br /><sub><b>CJ</b></sub></a><br /><a href="https://github.com/system-ui/theme-ui/commits?author=dev-cj" title="Documentation">📖</a> <a href="https://github.com/system-ui/theme-ui/commits?author=dev-cj" title="Code">💻</a></td>
390+
</tr>
388391
</table>
389392

390393
<!-- markdownlint-restore -->

pnpm-lock.yaml

Lines changed: 9 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)