Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Release May 8 #385

Merged
merged 3 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,319 changes: 362 additions & 957 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions packages/terra-application-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

## Unreleased

## 3.2.0 - (May 8, 2024)

* Changed
* Set minimum Node version to 14.
* Updated docs to utilize the new terra-application imports.

*Note: Some of the changes in this release are considered breaking changes. However, these changes are passive in nature as terra-application-docs v3.x has not been deployed to production yet.*

## 3.1.0 - (June 22, 2022)

* Changed
Expand Down
4 changes: 2 additions & 2 deletions packages/terra-application-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cerner/terra-application-docs",
"version": "3.1.0",
"version": "3.2.0",
"description": "Contains documentation for packages in the terra-application monorepo",
"author": "Cerner Corporation",
"repository": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"src"
],
"dependencies": {
"@cerner/terra-dev-site": "8",
"@cerner/terra-dev-site": "^8.2.0",
"@cerner/terra-docs": "1",
"classnames": "2",
"prop-types": "15",
Expand Down
8 changes: 5 additions & 3 deletions packages/terra-application/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

## Unreleased

## 2.2.0 - (May 8, 2024)

* Breaking Changes:
* Added subpath exports for terra-application submodules. This replaces the old exports that utilize the exact path.
* Removed default `ApplicationBase` import. `ApplicationBase` will now need to be imported from `terra-application/application-base`.
* Dropped support for Node 8, 10 & 12. Node 14 is now the minimum required version.

* Changed
* Dropped support for Node 8, 10 & 12. Node 14 is now the minimum required version.
* Locked `intl-locales-supported` to `1.8.11`.
* Updated size explanations for ModalManager managed by DisclosureManagerContext.

Expand All @@ -16,8 +18,8 @@
* Added user action utility button.
* Locked `uuid` dependency to `3.4.0`.
* Updated `getBrowserLocale` method for IE.
* Updated jest snapshots for terra-icon and terra-button changes.
* Updated size explanations for ModalManager managed by DisclosureManagerContext.

*Note: Some of the changes in this release are considered breaking changes. However, these changes are passive in nature as terra-application v2.x has not been deployed to production yet.*

## 2.1.0 - (June 22, 2022)

Expand Down
2 changes: 1 addition & 1 deletion packages/terra-application/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terra-application",
"version": "2.1.0",
"version": "2.2.0",
"description": "A framework to support application development with Terra components",
"author": "Cerner Corporation",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ exports[`ModalManager Snapshots should render with optional props 1`] = `
}
shouldTrapFocus={false}
withDisclosureContainer={[Function]}
zIndex="6000"
>
<TestChild />
</ModalManager>
Expand All @@ -20,6 +21,7 @@ exports[`ModalManager Snapshots should render with required props 1`] = `
closeOnOutsideClick={false}
shouldTrapFocus={false}
withDisclosureContainer={[Function]}
zIndex="6000"
>
<TestChild />
</ModalManager>
Expand Down
12 changes: 7 additions & 5 deletions packages/terra-dev-site/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@

## Unreleased

* Added
* Added new config option `useDefaultWebpackResolver` to utilize the built-in webpack path resolver instead of the custom resolver.
## 8.2.0 - (May 8, 2024)

* Changed
* Breaking Changes
* Dropped support for Node 10 & 12. Node 14 is now the minimum required version.
* Dropped support for `enhanced-resolve v4` as a dependency.
* Dropped support for `webpack v4` as a peerDependency.

* Added
* Added new config option `useDefaultWebpackResolver` to utilize the built-in webpack path resolver instead of the custom resolver.

* The following changes from v7 are added:
* Fixed clipping issue of test pages on dev-site.
* Fixed scroll issue of doc pages with longer content.
* Locked `uuid` dependency to `3.4.0`.
* Updated jest snapshot for terra-icon and terra-button changes.
* Updated wdio snapshot to fix build.

*Note: Some of the changes in this release are considered breaking changes. However, these changes are passive in nature as terra-dev-site v8.x has not been deployed to production yet.*

## 8.1.0 - (June 22, 2022)

Expand Down
4 changes: 2 additions & 2 deletions packages/terra-dev-site/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cerner/terra-dev-site",
"version": "8.1.0",
"version": "8.2.0",
"description": "Dynamically builds a react-hash-routed site based on site configuration, navigation configuration and component configuration.",
"author": "Cerner Corporation",
"repository": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"translations"
],
"dependencies": {
"@cerner/terra-polyfill": "^1.3.0",
"@cerner/terra-polyfill": "^1.4.0",
"@jsdevtools/rehype-url-inspector": "2",
"@mdx-js/loader": "1",
"@mdx-js/mdx": "1",
Expand Down
Loading