Skip to content

Commit

Permalink
chore(release): cut 8.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [8.0.0](v7.6.6...v8.0.0) (2021-09-20)

### Bug Fixes

* **alerts-service:** add tests and align implementation ([dabe477](dabe477))
* **cli:** set test environment to node ([#625](#625)) ([36d311b](36d311b))
* **dependencies:** update app-runtime to v3 ([8777699](8777699))
* set jsdom as default test environment ([#624](#624)) ([2f1ba42](2f1ba42))

### chore

* **deps:** upgrade to 7.0.0 of @dhis2/ui ([b624c9e](b624c9e))
* **deps:** upgrade to styled-jsx 4.x ([8cf9e17](8cf9e17))

### Features

* **app-adapter:** align Alerts component with alerts-service and AlertBar ([bd4564c](bd4564c))
* **cli:** instance proxy server ([#635](#635)) ([9df387e](9df387e))
* bump jest to v27 ([f5015b2](f5015b2))

### BREAKING CHANGES

* **deps:** @dhis2/ui 7.x has dropped support for the deprecated
entrypoints @dhis2/ui-core and @dhis2/ui-widgets.
Please use @dhis2/ui to import components you need in your app.
Everything from core and widgets is available.
* **deps:** Upgrade to styled-jsx 4 requires that the application
uses a compatible version of @dhis2/ui.
* **dependencies:** This updates the app-platform to version 3 of the
app-runtime. That means that this version of the app-platform will only
work with apps that use version 3 of the app-runtime.
* Upgrade Jest to 27.x.
Please see for a list of changes: https://jestjs.io/blog/2021/05/25/jest-27
  • Loading branch information
dhis2-bot committed Sep 20, 2021
1 parent ff45dd3 commit 2f4a2ce
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 13 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
# [8.0.0](https://github.com/dhis2/app-platform/compare/v7.6.6...v8.0.0) (2021-09-20)


### Bug Fixes

* **alerts-service:** add tests and align implementation ([dabe477](https://github.com/dhis2/app-platform/commit/dabe47771a3b79730d0dd42e106ed495908cae83))
* **cli:** set test environment to node ([#625](https://github.com/dhis2/app-platform/issues/625)) ([36d311b](https://github.com/dhis2/app-platform/commit/36d311b4aca74535d551d300a509117a1cb95179))
* **dependencies:** update app-runtime to v3 ([8777699](https://github.com/dhis2/app-platform/commit/8777699b5e11684a943c0db84fa01c3989dd83c9))
* set jsdom as default test environment ([#624](https://github.com/dhis2/app-platform/issues/624)) ([2f1ba42](https://github.com/dhis2/app-platform/commit/2f1ba4228a7a9a6f95a44258e615ba73461537bc))


### chore

* **deps:** upgrade to 7.0.0 of @dhis2/ui ([b624c9e](https://github.com/dhis2/app-platform/commit/b624c9e732a639ee457b90f8264e0fdb21d0dee0))
* **deps:** upgrade to styled-jsx 4.x ([8cf9e17](https://github.com/dhis2/app-platform/commit/8cf9e17c123e55b44a5b68bef0d4af7283622928))


### Features

* **app-adapter:** align Alerts component with alerts-service and AlertBar ([bd4564c](https://github.com/dhis2/app-platform/commit/bd4564c75667b703cabf1b680d97ff8a200f6533))
* **cli:** instance proxy server ([#635](https://github.com/dhis2/app-platform/issues/635)) ([9df387e](https://github.com/dhis2/app-platform/commit/9df387e4e376bcf902e51348649e22e5948e5974))
* bump jest to v27 ([f5015b2](https://github.com/dhis2/app-platform/commit/f5015b2186978a08a2315474de9317423fde9b90))


### BREAKING CHANGES

* **deps:** @dhis2/ui 7.x has dropped support for the deprecated
entrypoints @dhis2/ui-core and @dhis2/ui-widgets.
Please use @dhis2/ui to import components you need in your app.
Everything from core and widgets is available.
* **deps:** Upgrade to styled-jsx 4 requires that the application
uses a compatible version of @dhis2/ui.
* **dependencies:** This updates the app-platform to version 3 of the
app-runtime. That means that this version of the app-platform will only
work with apps that use version 3 of the app-runtime.
* Upgrade Jest to 27.x.
Please see for a list of changes: https://jestjs.io/blog/2021/05/25/jest-27

# [8.0.0-beta.10](https://github.com/dhis2/app-platform/compare/v8.0.0-beta.9...v8.0.0-beta.10) (2021-09-15)


Expand Down
6 changes: 3 additions & 3 deletions adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-adapter",
"version": "8.0.0-beta.10",
"version": "8.0.0",
"repository": {
"type": "git",
"url": "https://github.com/amcgee/dhis2-app-platform",
Expand All @@ -21,11 +21,11 @@
"build"
],
"dependencies": {
"@dhis2/pwa": "8.0.0-beta.10",
"@dhis2/pwa": "8.0.0",
"moment": "^2.24.0"
},
"devDependencies": {
"@dhis2/cli-app-scripts": "8.0.0-beta.10",
"@dhis2/cli-app-scripts": "8.0.0",
"@testing-library/react": "^12.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
Expand Down
4 changes: 2 additions & 2 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/cli-app-scripts",
"version": "8.0.0-beta.10",
"version": "8.0.0",
"engines": {
"node": ">=12"
},
Expand Down Expand Up @@ -28,7 +28,7 @@
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@dhis2/app-shell": "8.0.0-beta.10",
"@dhis2/app-shell": "8.0.0",
"@dhis2/cli-helpers-engine": "^3.0.0",
"@jest/core": "^27.0.6",
"archiver": "^3.1.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/pwa-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pwa-app",
"version": "8.0.0-beta.10",
"version": "8.0.0",
"description": "",
"license": "BSD-3-Clause",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-app",
"version": "8.0.0-beta.10",
"version": "8.0.0",
"repository": "https://github.com/amcgee/dhis2-app-platform",
"author": "Austin McGee <[email protected]>",
"license": "BSD-3-Clause",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "root",
"version": "8.0.0-beta.10",
"version": "8.0.0",
"private": true,
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions pwa/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/pwa",
"version": "8.0.0-beta.10",
"version": "8.0.0",
"description": "",
"license": "BSD-3-Clause",
"publishConfig": {
Expand All @@ -13,7 +13,7 @@
"deploy": "d2-app-scripts deploy"
},
"devDependencies": {
"@dhis2/cli-app-scripts": "8.0.0-beta.10"
"@dhis2/cli-app-scripts": "8.0.0"
},
"dependencies": {
"idb": "^6.0.0",
Expand Down
6 changes: 3 additions & 3 deletions shell/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-shell",
"version": "8.0.0-beta.10",
"version": "8.0.0",
"repository": {
"type": "git",
"url": "https://github.com/amcgee/dhis2-app-platform",
Expand All @@ -12,10 +12,10 @@
"access": "public"
},
"dependencies": {
"@dhis2/app-adapter": "8.0.0-beta.10",
"@dhis2/app-adapter": "8.0.0",
"@dhis2/app-runtime": "^3.2.0",
"@dhis2/d2-i18n": "^1.1.0",
"@dhis2/pwa": "8.0.0-beta.10",
"@dhis2/pwa": "8.0.0",
"@dhis2/ui": "7.1.0",
"classnames": "^2.2.6",
"moment": "^2.29.1",
Expand Down

0 comments on commit 2f4a2ce

Please sign in to comment.