Skip to content

Commit dff39de

Browse files
Version Packages (rc)
1 parent f87899b commit dff39de

File tree

8 files changed

+30
-7
lines changed

8 files changed

+30
-7
lines changed

.changeset/pre.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
"bright-dolls-dance",
1717
"bright-parents-flow",
1818
"cold-teams-buy",
19+
"cruel-papers-film",
20+
"few-mails-sing",
1921
"five-squids-sin",
2022
"gentle-rockets-go",
2123
"icy-pianos-say",
@@ -24,6 +26,8 @@
2426
"metal-lamps-appear",
2527
"proud-chairs-study",
2628
"salty-geese-own",
29+
"seven-coats-hang",
30+
"seven-forks-join",
2731
"soft-islands-warn",
2832
"stale-wasps-smell",
2933
"strong-falcons-design",

examples/codesandbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@types/react": "^18.3.11",
1818
"@types/react-dom": "^18.3.0",
1919
"@vitejs/plugin-react": "^4.3.3",
20-
"@primer/react": "38.0.0-rc.1",
20+
"@primer/react": "38.0.0-rc.2",
2121
"styled-components": "5.x",
2222
"typescript": "^5.9.2",
2323
"vite": "^7.1.3"

examples/nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type-check": "tsc --noEmit"
1111
},
1212
"dependencies": {
13-
"@primer/react": "38.0.0-rc.1",
13+
"@primer/react": "38.0.0-rc.2",
1414
"next": "^15.2.3",
1515
"react": "18.3.1",
1616
"react-dom": "18.3.1",

examples/theming/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@primer/octicons-react": "^19.14.0",
14-
"@primer/react": "38.0.0-rc.1",
14+
"@primer/react": "38.0.0-rc.2",
1515
"clsx": "^2.1.1",
1616
"next": "^15.2.3",
1717
"react": "18.3.1",

packages/react/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @primer/react
22

3+
## 38.0.0-rc.2
4+
5+
### Major Changes
6+
7+
- [#6634](https://github.com/primer/react/pull/6634) [`d883432`](https://github.com/primer/react/commit/d883432010274cf87691a9affb0e012764b2cdae) Thanks [@TylerJDev](https://github.com/TylerJDev)! - CircleOcticon: Remove component `CircleOcticon`
8+
9+
- [#6652](https://github.com/primer/react/pull/6652) [`c6d923f`](https://github.com/primer/react/commit/c6d923f93c0cb40453f1a9dab9209a9caeb87bce) Thanks [@llastflowers](https://github.com/llastflowers)! - Update AvatarStack component to no longer support sx
10+
11+
- [#6682](https://github.com/primer/react/pull/6682) [`5bbaae7`](https://github.com/primer/react/commit/5bbaae78f732df2470c1ea7933863ef8a3f9681c) Thanks [@llastflowers](https://github.com/llastflowers)! - Update LabelGroup component to no longer support sx
12+
313
## 38.0.0-rc.1
414

515
### Major Changes

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@primer/react",
3-
"version": "38.0.0-rc.1",
3+
"version": "38.0.0-rc.2",
44
"description": "An implementation of GitHub's Primer Design System using React",
55
"main": "lib/index.js",
66
"module": "lib-esm/index.js",

packages/styled-react/CHANGELOG.md

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

3+
## 1.0.0-rc.2
4+
5+
### Patch Changes
6+
7+
- [#6703](https://github.com/primer/react/pull/6703) [`f87899b`](https://github.com/primer/react/commit/f87899b766648ba6837af8efb8b6fdb44b79159a) Thanks [@siddharthkp](https://github.com/siddharthkp)! - Export theming utilities from styled-react
8+
9+
- Updated dependencies [[`d883432`](https://github.com/primer/react/commit/d883432010274cf87691a9affb0e012764b2cdae), [`c6d923f`](https://github.com/primer/react/commit/c6d923f93c0cb40453f1a9dab9209a9caeb87bce), [`5bbaae7`](https://github.com/primer/react/commit/5bbaae78f732df2470c1ea7933863ef8a3f9681c)]:
10+
- @primer/react@38.0.0-rc.2
11+
312
## 1.0.0-rc.1
413

514
### Minor Changes

packages/styled-react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@primer/styled-react",
3-
"version": "1.0.0-rc.1",
3+
"version": "1.0.0-rc.2",
44
"type": "module",
55
"exports": {
66
".": {
@@ -28,7 +28,7 @@
2828
},
2929
"devDependencies": {
3030
"@babel/preset-typescript": "^7.27.1",
31-
"@primer/react": "^38.0.0-rc.1",
31+
"@primer/react": "^38.0.0-rc.2",
3232
"@rollup/plugin-babel": "^6.0.4",
3333
"@types/react": "18.3.11",
3434
"@types/react-dom": "18.3.1",
@@ -43,7 +43,7 @@
4343
"typescript": "^5.9.2"
4444
},
4545
"peerDependencies": {
46-
"@primer/react": "38.0.0-rc.1",
46+
"@primer/react": "38.0.0-rc.2",
4747
"@types/react": "18.x || 19.x",
4848
"@types/react-dom": "18.x || 19.x",
4949
"@types/react-is": "18.x || 19.x",

0 commit comments

Comments
 (0)