design-system
design-system copied to clipboard
chore(Security): bump the react group across 1 directory with 7 updates
Bumps the react group with 7 updates in the / directory:
| Package | From | To |
|---|---|---|
| react | 17.0.2 |
18.3.1 |
| @types/react | 17.0.80 |
18.3.11 |
| react-day-picker | 7.4.10 |
9.1.4 |
| react-merge-refs | 1.1.0 |
2.1.1 |
| @types/react-transition-group | 4.4.10 |
4.4.11 |
| react-dom | 18.2.0 |
18.3.1 |
| @types/react-dom | 18.2.24 |
18.3.1 |
Updates react from 17.0.2 to 18.3.1
Changelog
Sourced from react's changelog.
18.3.1 (April 26, 2024)
- Export
actfromreactf1338f18.3.0 (April 25, 2024)
This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.
Read the React 19 Upgrade Guide for more info.
React
- Allow writing to
this.refsto support string ref codemod 909071- Warn for deprecated
findDOMNodeoutside StrictMode c3b283- Warn for deprecated
test-utilsmethods d4ea75- Warn for deprecated Legacy Context outside StrictMode 415ee0
- Warn for deprecated string refs outside StrictMode #25383
- Warn for deprecated
defaultPropsfor function components #25699- Warn when spreading
key#25697- Warn when using
actfromtest-utilsd4ea75React DOM
- Warn for deprecated
unmountComponentAtNode8a015b- Warn for deprecated
renderToStaticNodeStream#2887418.2.0 (June 14, 2022)
React DOM
- Provide a component stack as a second argument to
onRecoverableError. (@gnoffin #24591)- Fix hydrating into
documentcausing a blank page on mismatch. (@gnoffin #24523)- Fix false positive hydration errors with Suspense. (
@gnoffin #24480 and@acdlitein #24532)- Fix ignored
setStatein Safari when adding an iframe. (@gaearonin #24459)React DOM Server
- Pass information about server errors to the client. (
@salazarmand@gnoffin #24551 and #24591)- Allow to provide a reason when aborting the HTML stream. (
@gnoffin #24680)- Eliminate extraneous text separators in the HTML where possible. (
@gnoffin #24630)- Disallow complex children inside
<title>elements to match the browser constraints. (@gnoffin #24679)- Fix buffering in some worker environments by explicitly setting
highWaterMarkto0. (@jplhomerin #24641)Server Components (Experimental)
18.1.0 (April 26, 2022)
React DOM
... (truncated)
Commits
f1338f8ExportReact.actfrom 18.3d6c42f7Bump to 18.3.173bfaa1Turn on key spread warning in jsx-runtime for everyone (#25697)c2a246eTurn on string ref deprecation warning for everybody (not codemoddable) (#25383)2cfb474Bump version from 18.2 to 18.372b7462Bump local package.json versions for 18.1 release (#24447)22edb9fReactversionfield should match package.json (#24445)4175f05Temporarily feature flag numeric fallback for symbols (#24401)e8f4a66Fix import in examplebb49abeUpdate some READMEs (#24290)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by react-bot, a new releaser for react since your current version.
Updates @types/react from 17.0.80 to 18.3.11
Commits
- See full diff in compare view
Updates react-day-picker from 7.4.10 to 9.1.4
Release notes
Sourced from react-day-picker's releases.
v9.1.4
This release fixes a localization issue and improves export compatibility across various Node.js environments.
What's Changed
- fix: month not being localized with
dropdown-yearscaption layout by@gpblin gpbl/react-day-picker#2497- build: update exports in package.json for better compatibility by
@gpblin gpbl/react-day-picker#2535Full Changelog: https://github.com/gpbl/react-day-picker/compare/v9.1.3...v9.1.4
v9.1.3
This release includes some minor build fixes and documentation updates.
What's Changed
- build: add
tsconfig-base.jsonto package by@luucvanderzeein gpbl/react-day-picker#2492- build(deps): bump
@date-fns/tzto 1.1.2 by@gpblin gpbl/react-day-picker#2494New Contributors
@luucvanderzeemade their first contribution in gpbl/react-day-picker#2492Full Changelog: https://github.com/gpbl/react-day-picker/compare/v9.1.2...v9.1.3
v9.1.2
What's Changed
- fix: validate HTML output by
@gpblin gpbl/react-day-picker#2475- fix: use of
dateLibto work when mocking dates by@gpblin gpbl/react-day-picker#2481- fix(types): Improve
DayPickerContexttype by@gpblin gpbl/react-day-picker#2479- build(deps): update
@date-fs/tzpackage by@gpblin gpbl/react-day-picker#2480Full Changelog: https://github.com/gpbl/react-day-picker/compare/v9.1.1...v9.1.2
v9.1.1
This release improves reliability for controlled mode and adds experimental support for time zones.
Time Zone Support
By integrating the
@date-fns/tzutilities for handling time zones, we have added a new experimentaltimeZoneprop. Please see the updated docs for more details.import { DayPicker, TZDate } from 'react-day-picker'; <DayPicker timeZone="Europe/Athens" // set the time zone disabled={TZDate.tz("Europe/Athens")} // make sure you use `TZDate` to initialize dates />[!NOTE] If you were using the experimental
react-day-picker/utcmodule, you can skip now it. Remove the@date-fns/utcpackage and just passtimeZone="UTC"to<DayPicker />.
... (truncated)
Changelog
Sourced from react-day-picker's changelog.
Changelog
DayPicker follows Semantic Versioning. See the Releases page on Github for the complete list of changes, diffs and contributors, or the list of versions published on npm.
v9
First release: 2024-07-20
This release includes important updates related to accessibility, styles and localization. See the updated docs at https://daypicker.dev and the Upgrading Guide for more details.
Install the Latest Version
npm install react-day-picker@latestWhat’s New
- Moved
date-fnsfrom peer dependencies to dependencies.- Added support for time zones and Jalali Calendar.
- Enhanced accessibility to better comply with WCAG 2.1 recommendations.
- Simplified styles and new CSS variables for easier customization.
- New
excludeDisabledprop for range mode.- New
dropdown-yearsanddropdown-monthscaption layouts.- New
hideWeekdayRowandhideNavigationprops.- Updated for a complete custom components support.
- Improved typings and props for better compatibility in TypeScript
strictmode.Breaking Changes
While we tried to keep the API as stable as possible, some breaking changes were necessary to improve the library:
- The updated ARIA labels could require new translations or updated unit tests selectors.
- Custom CSS styles will likely break, due to the updated CSS classes and simplified styles.
- Custom Components have new API and may break.
- Some typings have been renamed or deprecated.
- The
useInputhook has been removed. See Input fields guide for more details.onWeekNumberClickhas been removed. Use a custom component to handle week number clicks.- Some of the
onDay*events, likeonDayTouchStartoronDayDoubleClickhave been removed. To reimplement them, use a customDayButtoncomponent (example).- The updated build system to ESM and CommonJS could break some custom bundler.
Upgrading Guide
We prepared a Upgrading guide for help upgrading your app to v9. We welcome feedback about the upgrade process, to ensure it's smooth for everyone.
Get Support and Report Issues
Please report any issues or provide feedback on the GitHub repository.
... (truncated)
Commits
- See full diff in compare view
Updates react-merge-refs from 1.1.0 to 2.1.1
Release notes
Sourced from react-merge-refs's releases.
v2.1.1
Problem during the publishing of v2.1.0 on the npm registry. This version is strictly the same as version 2.1.0.
v2.1.0
Features
v2.0.2
Bug Fixes
v2.0.1
Bug Fixes
v2.0.0
Bug Fixes
Features
- ESM only & named export (a928d61)
BREAKING CHANGES
- The package now exports ESM only and a named export.
Before:
import mergeRefs from "react-merge-refs";After:
</tr></table>
... (truncated)
Changelog
Sourced from react-merge-refs's changelog.
2.1.1 (2023-09-28)
2.1.0 (2023-09-28)
Features
2.0.2 (2023-05-09)
Bug Fixes
2.0.1 (2022-06-27)
Bug Fixes
2.0.0 (2022-06-19)
⚠ BREAKING CHANGES
- The package now exports ESM only and a named export.
Before:
import mergeRefs from "react-merge-refs";After:
import { mergeRefs } from "react-merge-refs";Features
- ESM only & named export (a928d61)
Bug Fixes
Commits
f6e755fchore(release): 2.1.0d9079ddfeat: allow a ref to be undefined in the types (#33)93bec3achore: upgrade deps (#32)3a3e6e2chore(release): 2.0.2c91c4e4fix: movetypescondition to the front (#30)812fefachore(release): 2.0.18189083fix(esm): add default export to maximize compate6f5315docs: update CONTRIBUTING.md (#26)87e5ffcdocs(readme): update badges0f6c298chore: upgrade packages- Additional commits viewable in compare view
Updates @types/react-transition-group from 4.4.10 to 4.4.11
Commits
- See full diff in compare view
Updates react-dom from 18.2.0 to 18.3.1
Release notes
Sourced from react-dom's releases.
18.3.1 (April 26, 2024)
- Export
actfromreactf1338f18.3.0 (April 25, 2024)
This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.
Read the React 19 Upgrade Guide for more info.
React
- Allow writing to
this.refsto support string ref codemod 909071- Warn for deprecated
findDOMNodeoutside StrictMode c3b283- Warn for deprecated
test-utilsmethods d4ea75- Warn for deprecated Legacy Context outside StrictMode 415ee0
- Warn for deprecated string refs outside StrictMode #25383
- Warn for deprecated
defaultPropsfor function components #25699- Warn when spreading
key#25697- Warn when using
actfromtest-utilsd4ea75React DOM
Changelog
Sourced from react-dom's changelog.
18.3.1 (April 26, 2024)
- Export
actfromreactf1338f18.3.0 (April 25, 2024)
This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.
Read the React 19 Upgrade Guide for more info.
React
- Allow writing to
this.refsto support string ref codemod 909071- Warn for deprecated
findDOMNodeoutside StrictMode c3b283- Warn for deprecated
test-utilsmethods d4ea75- Warn for deprecated Legacy Context outside StrictMode 415ee0
- Warn for deprecated string refs outside StrictMode #25383
- Warn for deprecated
defaultPropsfor function components #25699- Warn when spreading
key#25697- Warn when using
actfromtest-utilsd4ea75React DOM
Commits
d6c42f7Bump to 18.3.18a015b6Add deprecation warning for unmountComponentAtNodec3b2839Add deprecation warning for findDOMNoded4ea75dReactDOMTestUtils deprecation warnings7548c01DeprecaterenderToStaticNodeStream(#28872) (#28874)5894232Enable warning for defaultProps on function components for everyone (#25699)c2a246eTurn on string ref deprecation warning for everybody (not codemoddable) (#25383)2cfb474Bump version from 18.2 to 18.3- See full diff in compare view
Maintainer changes
This version was pushed to npm by react-bot, a new releaser for react-dom since your current version.
Updates @types/react-dom from 18.2.24 to 18.3.1
Commits
- See full diff in compare view
Most Recent Ignore Conditions Applied to This Pull Request
| Dependency Name | Ignore Conditions |
|---|---|
| react-day-picker | [>= 8.a, < 9] |
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Deploy Preview for storybook-navy-digital-mod-uk failed.
| Name | Link |
|---|---|
| Latest commit | cf7b19c4bddcdac314da3bb95cb7537a7d57d69f |
| Latest deploy log | https://app.netlify.com/sites/storybook-navy-digital-mod-uk/deploys/670f3bdda920180008e9e3e9 |
Looks like these dependencies are updatable in another way, so this is no longer needed.