Skip to content

Commit 99a82ff

Browse files
authored
October release notes (#5164)
1 parent a3ba67a commit 99a82ff

File tree

1 file changed

+280
-0
lines changed

1 file changed

+280
-0
lines changed
Lines changed: 280 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,280 @@
1+
{/* Copyright 2023 Adobe. All rights reserved.
2+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
3+
you may not use this file except in compliance with the License. You may obtain a copy
4+
of the License at http://www.apache.org/licenses/LICENSE-2.0
5+
Unless required by applicable law or agreed to in writing, software distributed under
6+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
7+
OF ANY KIND, either express or implied. See the License for the specific language
8+
governing permissions and limitations under the License. */}
9+
10+
import {BlogPostLayout, Hero} from '@react-spectrum/docs';
11+
export default BlogPostLayout;
12+
13+
---
14+
description: In this release, we've added support for native links across all collection components in React Spectrum and React Aria! Now you can add links to components such as Menu, Breadcrumbs, Tabs and more. To streamline integration with client-side routers, we've introduced the RouterProvider component, allowing you to seamlessly incorporate client-side routers. See the client-side routing guide to learn how it set it up in your app. Since its beta release, we have made a number of improvements and bug fixes to React Aria Components. We have also added a new advanced customization guide that describes how to use contexts and hooks to build your own custom patterns using React Aria Components. React Spectrum has new additions, including DropZone and isPending prop to Button.
15+
16+
date: 2023-10-02
17+
---
18+
19+
# October 02, 2023 Release
20+
21+
In this release, we've added support for native links across all collection components in React Spectrum and React Aria! Now you can add links to components such as `Menu`, `Breadcrumbs`, `Tabs` and more. To streamline integration with client-side routers, we've introduced the `RouterProvider` component, allowing you to seamlessly incorporate client-side routers. See the [client-side routing guide](../react-aria/routing.html) to learn how it set it up in your app.
22+
23+
Since its beta release, we have made a number of improvements and bug fixes to [React Aria Components](../react-aria/react-aria-components.html). We have also added a new [advanced customization guide](../react-aria/advanced.html) that describes how to use contexts and hooks to build your own custom patterns using React Aria Components.
24+
25+
For React Spectrum we have some new additions, including [DropZone](../react-spectrum/DropZone.html), static color support for [ProgressCircle](../react-spectrum/ProgressCircle.html#static-color) and [ProgressBar](../react-spectrum/ProgressBar.html#static-color), and support for [isPending](../react-spectrum/Button.html#pending) in `Button`.
26+
27+
As always, huge thanks to everyone in our community for their feedback and contributions to make this release possible!
28+
29+
### FileTrigger API update
30+
31+
This beta release of FileTrigger includes an API change. If you were using a previous version, you will need to update your code. See below for details.
32+
- The `onChange` prop has been replaced with `onSelect`.
33+
34+
### Spectrum class name changes
35+
36+
This release includes an important update to our build infrastructure that results in changes to the format of the CSS class names used by React Spectrum. If your app or tests are relying on CSS selectors such as `[class^="spectrum-Button"]`, you'll need to make updates. The simplest short-term solution is to change from `^=` (starts with) to `*=` (contains), but as a reminder, Spectrum class names are considered implementation details that may change at any time so you should not rely on them. Instead, we recommend using attributes like `role` or `data-testid` to query for elements in tests, and `ref` to access elements in components. See the [Testing](../react-spectrum/testing.html) guide to learn more.
37+
38+
## Enhancements
39+
40+
- Add `staticColor` prop to `ProgressCircle` and `ProgressBar` - [@iamwillpowell](https://github.com/iamwillpowell) - [PR](https://github.com/adobe/react-spectrum/pull/5108)
41+
- Add support for 'none' in `BorderSizeValue` to hide border - [@pr7prashant](https://github.com/pr7prashant) - [PR](https://github.com/adobe/react-spectrum/pull/5012)
42+
- Support links in collection components - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/4993)
43+
- Cover all plural forms in `NumberParser` - [@jbovenschen](https://github.com/jbovenschen) - [PR](https://github.com/adobe/react-spectrum/pull/5134)
44+
- Add TypeScript StrictMode to React Stately utils - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/3926)
45+
46+
## Fixes
47+
48+
- Update `Toast` placement to bottom center - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5107)
49+
- Update Unavailable `MenuItem` types - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/5153)
50+
- Fix `Popover` placement for start/end - [@reidbarber](https://github.com/reidbarber) - [PR](https://github.com/adobe/react-spectrum/pull/5137)
51+
- Fix `NumberField` form submission - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/4300)
52+
- Update Express Breadcrumb icon - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/5059)
53+
- Resolve i18n circular dependency - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/5087)
54+
- Improve WHCM support in `ProgressBar` - [@iamwillpowell](https://github.com/iamwillpowell) - [PR](https://github.com/adobe/react-spectrum/pull/5125)
55+
- Fix SSR when first Table column is not a row header - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5160)
56+
- Fix Unavailable `MenuItem` props - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/5153)
57+
- Fix `useViewportSize` in SSR environments - [@yarastqt](https://github.com/yarastqt) - [PR](https://github.com/adobe/react-spectrum/pull/5163)
58+
- Fix `aria-expanded` in `useDatePicker` - [@ryo-manba](https://github.com/ryo-manba) - [PR](https://github.com/adobe/react-spectrum/pull/5166)
59+
60+
## Docs
61+
62+
- Update keyboard pattern links in docs - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/5055)
63+
- Add docs for links in collections and routing guide - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5078)
64+
- Move React Aria dnd introduction to concepts section - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5088)
65+
66+
## Under construction
67+
68+
Fixes to pre-released components are listed below. Please feel free to try them out, and report any issues you encounter.
69+
70+
**React Aria Components** (Beta)
71+
- Allow FileTrigger to accept the same file twice - [@yihuiliao](https://github.com/yihuiliao) - [PR](https://github.com/adobe/react-spectrum/pull/5045)
72+
- Update Link API - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5074)
73+
- Use `PressResponder` in RAC overlays and document MenuTrigger long press - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5065)
74+
- Filter data attributes - [@iamwillpowell](https://github.com/iamwillpowell) - [PR](https://github.com/adobe/react-spectrum/pull/5008)
75+
- Fix typeahead in ListBox - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5146)
76+
- Advanced customization guide - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5066)
77+
- Minor doc improvements - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5101)
78+
- Fix specificity of Tailwind generated selectors - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5147)
79+
- Refactor internal contexts to expose state publicly - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5052)
80+
- Update Breadcrumb Link section in docs - [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/5083)
81+
- Add missing DatePicker states - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5158)
82+
- Add docs for the Group component - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/5060)
83+
- Add translations - [@rgeraghty](https://github.com/rgeraghty) - [PR](https://github.com/adobe/react-spectrum/pull/5124)
84+
85+
**React Spectrum DropZone** (Alpha)
86+
- React Spectrum `DropZone` docs - [@yihuiliao](https://github.com/yihuiliao) - [PR](https://github.com/adobe/react-spectrum/pull/5076)
87+
88+
**React Spectrum Pending Button** (Beta)
89+
- Add isPending to Button docs - [@iamwillpowell](https://github.com/iamwillpowell) - [PR](https://github.com/adobe/react-spectrum/pull/5150)
90+
91+
92+
## Released packages
93+
94+
```
95+
- @adobe/react-spectrum@3.31.0
96+
- @internationalized/number@3.3.0
97+
- @react-aria/accordion@3.0.0-alpha.22
98+
- @react-aria/actiongroup@3.6.3
99+
- @react-aria/aria-modal-polyfill@3.7.6
100+
- @react-aria/autocomplete@3.0.0-alpha.21
101+
- @react-aria/breadcrumbs@3.5.6
102+
- @react-aria/button@3.8.3
103+
- @react-aria/calendar@3.5.1
104+
- @react-aria/checkbox@3.11.1
105+
- @react-aria/color@3.0.0-beta.25
106+
- @react-aria/combobox@3.7.0
107+
- @react-aria/datepicker@3.8.0
108+
- @react-aria/dialog@3.5.6
109+
- @react-aria/dnd@3.4.2
110+
- @react-aria/focus@3.14.2
111+
- @react-aria/grid@3.8.3
112+
- @react-aria/gridlist@3.7.0
113+
- @react-aria/i18n@3.8.3
114+
- @react-aria/interactions@3.19.0
115+
- @react-aria/label@3.7.1
116+
- @react-aria/landmark@3.0.0-beta.5
117+
- @react-aria/link@3.6.0
118+
- @react-aria/listbox@3.11.0
119+
- @react-aria/menu@3.11.0
120+
- @react-aria/meter@3.4.6
121+
- @react-aria/numberfield@3.9.0
122+
- @react-aria/overlays@3.18.0
123+
- @react-aria/progress@3.4.6
124+
- @react-aria/radio@3.8.1
125+
- @react-aria/searchfield@3.5.6
126+
- @react-aria/select@3.13.0
127+
- @react-aria/selection@3.17.0
128+
- @react-aria/separator@3.3.6
129+
- @react-aria/slider@3.7.1
130+
- @react-aria/spinbutton@3.5.3
131+
- @react-aria/switch@3.5.5
132+
- @react-aria/table@3.13.0
133+
- @react-aria/tabs@3.8.0
134+
- @react-aria/tag@3.2.0
135+
- @react-aria/textfield@3.12.1
136+
- @react-aria/toast@3.0.0-beta.5
137+
- @react-aria/toggle@3.8.1
138+
- @react-aria/tooltip@3.6.3
139+
- @react-aria/utils@3.21.0
140+
- @react-aria/virtualizer@3.9.3
141+
- @react-aria/visually-hidden@3.8.5
142+
- @react-spectrum/accordion@3.0.0-alpha.24
143+
- @react-spectrum/actionbar@3.3.0
144+
- @react-spectrum/actiongroup@3.9.3
145+
- @react-spectrum/autocomplete@3.0.0-alpha.22
146+
- @react-spectrum/avatar@3.0.5
147+
- @react-spectrum/badge@3.1.6
148+
- @react-spectrum/breadcrumbs@3.9.0
149+
- @react-spectrum/button@3.14.0
150+
- @react-spectrum/buttongroup@3.6.6
151+
- @react-spectrum/calendar@3.4.1
152+
- @react-spectrum/card@3.0.0-alpha.23
153+
- @react-spectrum/checkbox@3.8.1
154+
- @react-spectrum/color@3.0.0-beta.26
155+
- @react-spectrum/combobox@3.10.2
156+
- @react-spectrum/contextualhelp@3.6.3
157+
- @react-spectrum/datepicker@3.8.0
158+
- @react-spectrum/dialog@3.8.3
159+
- @react-spectrum/divider@3.5.6
160+
- @react-spectrum/dnd@3.3.3
161+
- @react-spectrum/form@3.6.6
162+
- @react-spectrum/icon@3.7.6
163+
- @react-spectrum/illustratedmessage@3.4.6
164+
- @react-spectrum/image@3.4.6
165+
- @react-spectrum/inlinealert@3.1.1
166+
- @react-spectrum/label@3.15.0
167+
- @react-spectrum/labeledvalue@3.1.6
168+
- @react-spectrum/layout@3.5.6
169+
- @react-spectrum/link@3.6.0
170+
- @react-spectrum/list@3.7.0
171+
- @react-spectrum/listbox@3.12.0
172+
- @react-spectrum/menu@3.15.0
173+
- @react-spectrum/meter@3.4.6
174+
- @react-spectrum/numberfield@3.7.2
175+
- @react-spectrum/overlays@5.5.0
176+
- @react-spectrum/picker@3.12.1
177+
- @react-spectrum/progress@3.7.0
178+
- @react-spectrum/provider@3.9.0
179+
- @react-spectrum/radio@3.6.1
180+
- @react-spectrum/searchfield@3.7.6
181+
- @react-spectrum/slider@3.6.2
182+
- @react-spectrum/statuslight@3.5.6
183+
- @react-spectrum/switch@3.4.6
184+
- @react-spectrum/table@3.12.0
185+
- @react-spectrum/tabs@3.8.0
186+
- @react-spectrum/tag@3.1.3
187+
- @react-spectrum/text@3.4.6
188+
- @react-spectrum/textfield@3.10.6
189+
- @react-spectrum/theme-dark@3.5.6
190+
- @react-spectrum/theme-default@3.5.6
191+
- @react-spectrum/theme-express@3.0.0-alpha.8
192+
- @react-spectrum/theme-light@3.4.6
193+
- @react-spectrum/toast@3.0.0-beta.5
194+
- @react-spectrum/tooltip@3.6.0
195+
- @react-spectrum/utils@3.11.0
196+
- @react-spectrum/view@3.6.3
197+
- @react-spectrum/well@3.4.6
198+
- @react-stately/calendar@3.4.1
199+
- @react-stately/checkbox@3.5.1
200+
- @react-stately/collections@3.10.2
201+
- @react-stately/color@3.4.3
202+
- @react-stately/combobox@3.7.1
203+
- @react-stately/data@3.10.3
204+
- @react-stately/datepicker@3.8.0
205+
- @react-stately/dnd@3.2.5
206+
- @react-stately/grid@3.8.2
207+
- @react-stately/layout@3.13.2
208+
- @react-stately/list@3.10.0
209+
- @react-stately/menu@3.5.6
210+
- @react-stately/numberfield@3.6.2
211+
- @react-stately/overlays@3.6.3
212+
- @react-stately/radio@3.9.1
213+
- @react-stately/searchfield@3.4.6
214+
- @react-stately/select@3.5.5
215+
- @react-stately/selection@3.14.0
216+
- @react-stately/slider@3.4.3
217+
- @react-stately/table@3.11.2
218+
- @react-stately/tabs@3.6.1
219+
- @react-stately/toggle@3.6.3
220+
- @react-stately/tooltip@3.4.5
221+
- @react-stately/tree@3.7.3
222+
- @react-stately/utils@3.8.0
223+
- @react-stately/virtualizer@3.6.3
224+
- @react-types/accordion@3.0.0-alpha.17
225+
- @react-types/actionbar@3.1.3
226+
- @react-types/actiongroup@3.4.5
227+
- @react-types/autocomplete@3.0.0-alpha.17
228+
- @react-types/avatar@3.0.3
229+
- @react-types/badge@3.1.5
230+
- @react-types/breadcrumbs@3.7.0
231+
- @react-types/button@3.9.0
232+
- @react-types/buttongroup@3.3.5
233+
- @react-types/calendar@3.4.1
234+
- @react-types/card@3.0.0-alpha.19
235+
- @react-types/checkbox@3.5.2
236+
- @react-types/color@3.0.0-beta.20
237+
- @react-types/combobox@3.8.1
238+
- @react-types/contextualhelp@3.2.6
239+
- @react-types/datepicker@3.6.1
240+
- @react-types/dialog@3.5.6
241+
- @react-types/divider@3.3.5
242+
- @react-types/form@3.5.4
243+
- @react-types/grid@3.2.2
244+
- @react-types/illustratedmessage@3.3.5
245+
- @react-types/image@3.3.5
246+
- @react-types/label@3.8.1
247+
- @react-types/layout@3.3.11
248+
- @react-types/link@3.5.0
249+
- @react-types/list@3.2.7
250+
- @react-types/listbox@3.4.5
251+
- @react-types/menu@3.9.5
252+
- @react-types/meter@3.3.5
253+
- @react-types/numberfield@3.6.1
254+
- @react-types/overlays@3.8.3
255+
- @react-types/progress@3.5.0
256+
- @react-types/provider@3.7.0
257+
- @react-types/radio@3.5.2
258+
- @react-types/searchfield@3.5.1
259+
- @react-types/select@3.8.4
260+
- @react-types/shared@3.21.0
261+
- @react-types/slider@3.6.2
262+
- @react-types/statuslight@3.3.5
263+
- @react-types/switch@3.4.2
264+
- @react-types/table@3.9.0
265+
- @react-types/tabs@3.3.3
266+
- @react-types/text@3.3.5
267+
- @react-types/textfield@3.8.1
268+
- @react-types/tooltip@3.4.5
269+
- @react-types/view@3.4.5
270+
- @react-types/well@3.3.5
271+
- @spectrum-icons/color@3.5.6
272+
- @spectrum-icons/express@3.0.0-alpha.10
273+
- @spectrum-icons/illustrations@3.6.6
274+
- @spectrum-icons/ui@3.6.0
275+
- @spectrum-icons/workflow@4.2.5
276+
- react-aria@3.29.0
277+
- react-aria-components@1.0.0-beta.1
278+
- react-stately@3.27.0
279+
- tailwindcss-react-aria-components@1.0.0-beta.1
280+
```

0 commit comments

Comments
 (0)