-
Notifications
You must be signed in to change notification settings - Fork 1.3k
docs: july release notes #8555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
docs: july release notes #8555
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
12d66a7
docs: july release notes
yihuiliao b89d03e
add commits
yihuiliao cf2ae61
add more commits
yihuiliao 29eeded
Merge branch 'main' into jul-release-notes
yihuiliao 83d0f2a
add commits
yihuiliao 3ab51bb
Merge branch 'main' of github.com:adobe/react-spectrum into jul-relea…
devongovett 74e43aa
add commits
yihuiliao 29ebc61
update date
yihuiliao 5845818
update date pt 2
yihuiliao d989ff2
Merge branch 'jul-release-notes' of github.com:adobe/react-spectrum i…
devongovett 997b9eb
add intro and update some commit messages
devongovett bb62e42
Update tree dnd badge to rc
devongovett 2486d16
remove line
yihuiliao a9fa833
Merge branch 'main' of github.com:adobe/react-spectrum into jul-relea…
devongovett 304029a
small edits
yihuiliao 7ff1025
Add blurb about S2 font update
devongovett 975895d
Merge branch 'jul-release-notes' of github.com:adobe/react-spectrum i…
devongovett 2bf0ed8
edits
yihuiliao 4a1e8d2
Merge branch 'main' of github.com:adobe/react-spectrum into jul-relea…
devongovett f1612fc
Add versions
devongovett 4dbec73
Merge branch 'main' into jul-release-notes
devongovett d644ea6
Merge branch 'main' into jul-release-notes
devongovett File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,327 @@ | ||
{/* Copyright 2025 Adobe. All rights reserved. | ||
This file is licensed to you under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. You may obtain a copy | ||
of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under | ||
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS | ||
OF ANY KIND, either express or implied. See the License for the specific language | ||
governing permissions and limitations under the License. */} | ||
|
||
import {BlogPostLayout, Hero, Image} from '@react-spectrum/docs'; | ||
export default BlogPostLayout; | ||
|
||
--- | ||
description: Happy summer! This release adds support for async loading and infinite scrolling, improves form integration and drag and drop interactions, and adds support for additional DOM events and attributes. | ||
|
||
date: 2025-07-22 | ||
--- | ||
|
||
# July 22, 2025 Release | ||
|
||
Happy summer! This release adds support for async loading and infinite scrolling, improves form integration and drag and drop interactions, and adds support for additional DOM events and attributes. | ||
|
||
The new LoadMoreItem components supported in [ListBox](../react-aria/ListBox.html#asynchronous-loading), [GridList](../react-aria/GridList.html#asynchronous-loading), [Table](../react-aria/Table.html#asynchronous-loading), and [Tree](../react-aria/Tree.html#asynchronous-loading) enables infinite scrolling. These trigger the loading of additional pages of items and display a loading spinner. Multiple LoadMoreItems can be rendered within a collection too, enabling loading multiple levels of a tree or sections of data from different APIs. | ||
devongovett marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
We've also opened up the React Aria Components API to pass through more DOM events and attributes. This improves integration with other libraries, for example making it possible to use another library's menu with a React Aria button. | ||
|
||
As always, thanks so much to everyone who contributed to this release! | ||
|
||
## Enhancements | ||
|
||
* AlertDialog | ||
* Add default `data-testid` to Spectrum AlertDialog buttons - [@snow893](https://github.com/snow893) - [PR](https://github.com/adobe/react-spectrum/pull/8370) | ||
* Drag and Drop | ||
* Add support for custom drag preview pointer offset - [@reidbarber](https://github.com/reidbarber) - [PR](https://github.com/adobe/react-spectrum/pull/8445) | ||
* Forms | ||
* Add support for form autocomplete to React Aria DateField and DatePicker - [@yihuiliao](https://github.com/yihuiliao) - [PR](https://github.com/adobe/react-spectrum/pull/7773) | ||
* Add support for automatic reset after React 19 form actions - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/8444) | ||
* Support associating components with external forms - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/8411) | ||
* Select | ||
* Add `hiddenSelectProps` to `useSelect` - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8490) | ||
* Tag | ||
* Add `escapeKeyBehavior` prop to React Aria TagGroup - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8399) | ||
* TextField | ||
* Provide `GroupContext` in React Aria TextField - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/8415) | ||
* Add proper ARIA labeling to Spectrum validation icon - [@razvanborsan](https://github.com/razvanborsan) - [PR](https://github.com/adobe/react-spectrum/pull/8429), [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/8435) | ||
* Toast | ||
* Add default `data-testid` to Spectrum `Toast` buttons - [@snow893](https://github.com/snow893) - [PR](https://github.com/adobe/react-spectrum/pull/8408) | ||
* Tree | ||
* Support multi-level asynchronous loading - [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/8349) | ||
* Miscellaneous | ||
* Pass through more DOM events and attributes - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/8327), [PR](https://github.com/adobe/react-spectrum/pull/8525) | ||
* Use `inert` instead of `aria-hidden` in `ariaHideOutside` - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/8372), [PR](https://github.com/adobe/react-spectrum/pull/8560) - [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/8581) | ||
* Pass `crossOrigin` prop in Spectrum Image - [@mofojed](https://github.com/mofojed) - [PR](https://github.com/adobe/react-spectrum/pull/8532) | ||
|
||
## Fixes | ||
|
||
* CardView | ||
* Fix A11y warning on Spectrum CardView - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8496) | ||
* Drag and Drop | ||
* Fix React 19 StrictMode drag and drop bug - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/8562) | ||
* Date/Time | ||
* Disallow focus of calendar cells outside the month - [@Persists](https://github.com/Persists) - [PR](https://github.com/adobe/react-spectrum/pull/8129) | ||
* Fix `setValue` to work when DateField is empty - [@reidbarber](https://github.com/reidbarber) - [PR](https://github.com/adobe/react-spectrum/pull/8417) | ||
* Ignore typing leading zeros in DateField segments - [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/8447), [PR](https://github.com/adobe/react-spectrum/pull/8549) | ||
* FileTrigger | ||
* `acceptedFileTypes` accepts a readonly array in FileTrigger - [@lixiaoyan](https://github.com/lixiaoyan) - [PR](https://github.com/adobe/react-spectrum/pull/8477) | ||
* ListView | ||
* Fix Badge text color inside Spectrum ListView - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8449) | ||
* Menu | ||
* Fix text alignment for Spectrum Keyboard component - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8486) | ||
* Modals | ||
* Warn users of correct state usage for modals - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8495) | ||
* NumberField | ||
* Support full width characters in NumberField (e.g. Japanese IME) - [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/8418) | ||
* Ensure NumberField validation displays correct errors in React 19 - [@chirokas](https://github.com/chirokas) - [PR](https://github.com/adobe/react-spectrum/pull/8491) | ||
* Round to correct precision when step uses exponential notation - [@lucasweng](https://github.com/lucasweng) - [PR](https://github.com/adobe/react-spectrum/pull/8290) | ||
* RadioGroup | ||
* Fix `RadioGroup` keyboard navigation in `FocusScope` - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8488) | ||
* Select/Picker | ||
* Allow `selectedKey={null}` to clear value in `HiddenSelect` - [@chirokas](https://github.com/chirokas) - [PR](https://github.com/adobe/react-spectrum/pull/8330) | ||
* Fix `HiddenSelect` causing page scrolling - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/8579) | ||
* Fix keyboard selection in `Select` typeahead when options include spaces - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8497) | ||
* Prevent form submission when required `Select` has more than 300 options - [@lucasweng](https://github.com/lucasweng) - [PR](https://github.com/adobe/react-spectrum/pull/8280) | ||
* Tabs | ||
* Fix wrapping with vertical `TabList` - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8602) | ||
* Match id type in `Tab` and `TabPanel` - [@kidonng](https://github.com/kidonng) - [PR](https://github.com/adobe/react-spectrum/pull/8423) | ||
* TableView | ||
* Ensure the `renderEmptyState` in Spectrum `IllustratedMessage` is properly displayed in `TableView` - [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/8416) | ||
* Prevent `TableView` from jumping to the top during asynchronous load - [@obreitwi](https://github.com/obreitwi) - [PR](https://github.com/adobe/react-spectrum/pull/8133) | ||
* Miscellaneous | ||
* Include missing `page.css.map` in published npm package - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8414) | ||
* Check user agent brands - [@reidbarber](https://github.com/reidbarber) - [PR](https://github.com/adobe/react-spectrum/pull/8458) | ||
* Fix `Rect` intersection check so that users don't need to provide Virtualizer mocks for tests - [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/8396) | ||
* Fix `createLeafComponent` ref typing - [@snowystinger](https://github.com/snowystinger) - [PR](https://github.com/adobe/react-spectrum/pull/8507) | ||
* Add permission element to focusable elements list - [@gabrielchl](https://github.com/gabrielchl) - [PR](https://github.com/adobe/react-spectrum/pull/8356) | ||
* Minimize unnecessary global events in `useHover` - [@qmhc](https://github.com/qmhc) - [PR](https://github.com/adobe/react-spectrum/pull/8483) | ||
* Do not dispatch `loadMore` if hook is still in loading state - [@jluyau](https://github.com/jluyau) = [PR](https://github.com/adobe/react-spectrum/pull/8571) | ||
|
||
## Docs | ||
|
||
* Remove duplicate "color" in `ColorWheelRenderProps` comment - [@GuiEpi](https://github.com/GuiEpi) - [PR](https://github.com/adobe/react-spectrum/pull/8465) | ||
* Fix `Calendar` example - [@chirokas](https://github.com/chirokas) - [PR](https://github.com/adobe/react-spectrum/pull/8529) | ||
* Use `lucide-react` for React Aria example's icons - [@reidbarber](https://github.com/reidbarber) - [PR](https://github.com/adobe/react-spectrum/pull/8516) | ||
* Fix TanStack Router example - [@brmzkw](https://github.com/brmzkw) - [PR](https://github.com/adobe/react-spectrum/pull/8404) | ||
* Fix checkbox in dark mode in the Tailwind Starter - [@tomer-yechiel](https://github.com/tomer-yechiel) - [PR](https://github.com/adobe/react-spectrum/pull/8379) | ||
|
||
## Under Construction | ||
|
||
* Autocomplete | ||
* Clear Autocomplete virtualFocus upon paste/undo/redo and other focus fixes - [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/8438) | ||
* Tree: | ||
* Support virtualized Tree drag and drop - [@reidbarber](https://github.com/reidbarber) - [PR](https://github.com/adobe/react-spectrum/pull/8526), [PR](https://github.com/adobe/react-spectrum/pull/8550), [PR](https://github.com/adobe/react-spectrum/pull/8427) | ||
* Fix dragging a root item after itself - [@chirokas](https://github.com/chirokas) - [PR](https://github.com/adobe/react-spectrum/pull/8436) | ||
* Fix reordering top-level items via drag and drop - [@reidbarber](https://github.com/reidbarber) - [PR](https://github.com/adobe/react-spectrum/pull/8563) | ||
|
||
|
||
## Released packages | ||
|
||
``` | ||
- @adobe/[email protected] | ||
- @internationalized/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-stately/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @react-types/[email protected] | ||
- @spectrum-icons/[email protected] | ||
- @spectrum-icons/[email protected] | ||
- @spectrum-icons/[email protected] | ||
- @spectrum-icons/[email protected] | ||
- @spectrum-icons/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-aria/[email protected] | ||
- @react-spectrum/[email protected] | ||
- @react-spectrum/[email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to talk about the form and DnD work in more depth below or is this call out enought?