-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1091 from nasa/develop
Merge develop to master for v12.0.0
- Loading branch information
Showing
49 changed files
with
37,982 additions
and
13,916 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -7,30 +7,48 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. | |
|
||
## [Unreleased] | ||
|
||
## [v11.0.0] - 2022-04-19 | ||
## [v12.0.0] - 2023-01-23 | ||
|
||
## Breaking Changes | ||
|
||
This version of the dashboard requires Cumulus API v11.1.0 | ||
This version of the dashboard requires Cumulus API >= v14.0.0 | ||
|
||
### Added | ||
|
||
- **CUMULUS-2704** | ||
- Added option to create ORCA Reconciliation Report to dashboard | ||
|
||
- **CUMULUS-2748** | ||
- Added ORCA Reconciliation Report display to dashboard | ||
- **CUMULUS-2717** | ||
- Added `Show/Hide Recovery Status` button to granule detail page | ||
- **CUMULUS-2915** | ||
- Added download button to execution pages | ||
- Updated dashboard to use alpha version `@cumulus/[email protected]` for testing | ||
- Used npm 8.6.0 | ||
- Upgraded localstack to 0.12.13 to work with latest Cumulus | ||
- Added action to list pages to refresh cumulus db connection | ||
- Updated `git+ssh://git@` to `git+https://` for npm 8.6.0 generated package-lock.json, | ||
and this is an [known issue](https://github.com/npm/cli/issues/2610) with npm 8.6.0 | ||
|
||
### Changed | ||
|
||
- **CUMULUS-2903** | ||
- Bumped Node version from 12.18.0 to 14.19.1 to match Core | ||
- **CUMULUS-2763** | ||
- Replaces disabled button interaction with hidden buttons for bulk actions. | ||
- **CUMULUS-2960** | ||
- Fixed the following Axe accessibility issues: | ||
+ Specified title, level-one heading, and modal as main landmark on `/auth` | ||
+ Increased link-background contrast in the header | ||
+ Slight color adjustments for accessibility | ||
- Updated dependencies with severe security vulnerabilities: | ||
+ `@cumulus/api` to `13.1.0` | ||
+ `moment` to `2.29.4` | ||
+ `terser-webpack-plugin` to `5.3.3` | ||
- **CUMULUS-3001** | ||
- Removed `precss` dependency | ||
- **Snyk Security Fix** | ||
- Upgraded jsonwebtoken from 8.5.1 to 9.0.0 | ||
|
||
## [v10.0.0] - 2022-02-25 | ||
## [v11.0.0] - 2022-04-19 | ||
|
||
## Breaking Changes | ||
|
||
This version of the dashboard requires Cumulus API v10.1.1 | ||
This version of the dashboard requires Cumulus API v11.1.0 | ||
|
||
- **CUMULUS-2728** | ||
- Removes kibana links and Metrics integration. To get this functionality, | ||
|
@@ -47,10 +65,30 @@ This version of the dashboard requires Cumulus API v10.1.1 | |
+ `SHOW_DISTRIBUTION_API_METRICS` | ||
+ `SHOW_TEA_METRICS` | ||
|
||
### Added | ||
|
||
- **CUMULUS-2704** | ||
- Added option to create ORCA Reconciliation Report to dashboard | ||
|
||
- **CUMULUS-2748** | ||
- Added ORCA Reconciliation Report display to dashboard | ||
|
||
### Changed | ||
|
||
- **CUMULUS-NONE** | ||
- Updates Cumulus development dependencies to v10.1.1 and upgrades localstack to 0.11.5 to work with latest Cumulus. | ||
|
||
- **CUMULUS-2903** | ||
- Bumped Node version from 12.18.0 to 14.19.1 to match Core | ||
|
||
## [v10.0.0] - 2022-02-25 | ||
|
||
## Breaking Changes | ||
|
||
This version of the dashboard requires Cumulus API v10.1.1 | ||
|
||
### Changed | ||
|
||
- **CUMULUS-2843** | ||
- Create provider and create rule modals now dislpay the provider [rule] | ||
schema title directly as read from the Cumulus API. | ||
|
@@ -1275,7 +1313,8 @@ Fix for serving the dashboard through the Cumulus API. | |
### Added | ||
|
||
- Versioning and changelog [CUMULUS-197] by @kkelly51 | ||
[Unreleased]: https://github.com/nasa/cumulus-dashboard/compare/v11.0.0...HEAD | ||
[Unreleased]: https://github.com/nasa/cumulus-dashboard/compare/v12.0.0...HEAD | ||
[v12.0.0]: https://github.com/nasa/cumulus-dashboard/compare/v11.0.0...v12.0.0 | ||
[v11.0.0]: https://github.com/nasa/cumulus-dashboard/compare/v10.0.0...v11.0.0 | ||
[v10.0.0]: https://github.com/nasa/cumulus-dashboard/compare/v9.0.0...v10.0.0 | ||
[v9.0.0]: https://github.com/nasa/cumulus-dashboard/compare/v8.0.0...v9.0.0 | ||
|
This file contains 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 |
---|---|---|
|
@@ -99,7 +99,7 @@ In this example, the dashboard would be available at `http://localhost:3000/` in | |
The dashboard uses node v14.19.1. To build/run the dashboard on your local machine, install [nvm](https://github.com/creationix/nvm) and run `nvm install v14.19.1`. | ||
|
||
#### install requirements | ||
We use npm for local package management, to install the requirements: | ||
We use npm for local package management, run `npm install -g [email protected]` to install npm 8.6.0. To install the requirements: | ||
```bash | ||
$ nvm use | ||
$ npm ci | ||
|
This file contains 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 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 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 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 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 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 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 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 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 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
Oops, something went wrong.