From c74a0a96cffa836725298a99ef61739301621a30 Mon Sep 17 00:00:00 2001 From: "@dhis2-bot" Date: Wed, 8 Sep 2021 09:55:36 +0000 Subject: [PATCH] chore(release): cut 8.0.0-alpha.1 [skip ci] # [8.0.0-alpha.1](https://github.com/dhis2/app-platform/compare/v7.6.2...v8.0.0-alpha.1) (2021-09-08) ### Bug Fixes * **dependencies:** update app-runtime to v3 ([8777699](https://github.com/dhis2/app-platform/commit/8777699b5e11684a943c0db84fa01c3989dd83c9)) ### BREAKING CHANGES * **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. --- CHANGELOG.md | 14 ++++++++++++++ adapter/package.json | 6 +++--- cli/package.json | 4 ++-- examples/pwa-app/package.json | 4 ++-- examples/simple-app/package.json | 4 ++-- package.json | 2 +- pwa/package.json | 4 ++-- shell/package.json | 6 +++--- 8 files changed, 29 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cda51e368..559490ec5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [8.0.0-alpha.1](https://github.com/dhis2/app-platform/compare/v7.6.2...v8.0.0-alpha.1) (2021-09-08) + + +### Bug Fixes + +* **dependencies:** update app-runtime to v3 ([8777699](https://github.com/dhis2/app-platform/commit/8777699b5e11684a943c0db84fa01c3989dd83c9)) + + +### BREAKING CHANGES + +* **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. + ## [7.6.2](https://github.com/dhis2/app-platform/compare/v7.6.1...v7.6.2) (2021-09-02) diff --git a/adapter/package.json b/adapter/package.json index c01fdabe0..2c5e85b4d 100644 --- a/adapter/package.json +++ b/adapter/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/app-adapter", - "version": "7.6.2", + "version": "8.0.0-alpha.1", "repository": { "type": "git", "url": "https://github.com/amcgee/dhis2-app-platform", @@ -21,11 +21,11 @@ "build" ], "dependencies": { - "@dhis2/pwa": "7.6.2", + "@dhis2/pwa": "8.0.0-alpha.1", "moment": "^2.24.0" }, "devDependencies": { - "@dhis2/cli-app-scripts": "7.6.2", + "@dhis2/cli-app-scripts": "8.0.0-alpha.1", "enzyme": "^3.11.0", "enzyme-adapter-react-16": "^1.15.5", "react": "^16.8", diff --git a/cli/package.json b/cli/package.json index 663916b58..0d9c08f4d 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/cli-app-scripts", - "version": "7.6.2", + "version": "8.0.0-alpha.1", "engines": { "node": ">=12" }, @@ -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": "7.6.2", + "@dhis2/app-shell": "8.0.0-alpha.1", "@dhis2/cli-helpers-engine": "^3.0.0", "archiver": "^3.1.1", "axios": "^0.20.0", diff --git a/examples/pwa-app/package.json b/examples/pwa-app/package.json index 6abffa529..787aa10e9 100644 --- a/examples/pwa-app/package.json +++ b/examples/pwa-app/package.json @@ -1,6 +1,6 @@ { "name": "pwa-app", - "version": "7.6.2", + "version": "8.0.0-alpha.1", "description": "", "license": "BSD-3-Clause", "private": true, @@ -13,7 +13,7 @@ "demo": "yarn build --force --debug && yarn serve" }, "devDependencies": { - "@dhis2/cli-app-scripts": "7.6.2", + "@dhis2/cli-app-scripts": "8.0.0-alpha.1", "serve": "^12.0.0" }, "peerDependencies": { diff --git a/examples/simple-app/package.json b/examples/simple-app/package.json index d69b8a4ee..7d1ab2dea 100644 --- a/examples/simple-app/package.json +++ b/examples/simple-app/package.json @@ -1,12 +1,12 @@ { "name": "simple-app", - "version": "7.6.2", + "version": "8.0.0-alpha.1", "repository": "https://github.com/amcgee/dhis2-app-platform", "author": "Austin McGee ", "license": "BSD-3-Clause", "private": true, "devDependencies": { - "@dhis2/cli-app-scripts": "7.6.2" + "@dhis2/cli-app-scripts": "8.0.0-alpha.1" }, "scripts": { "start": "d2-app-scripts start", diff --git a/package.json b/package.json index 61476e4ad..3b26f1fc4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "root", - "version": "7.6.2", + "version": "8.0.0-alpha.1", "private": true, "repository": { "type": "git", diff --git a/pwa/package.json b/pwa/package.json index 957c4b207..1b0a9992d 100644 --- a/pwa/package.json +++ b/pwa/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/pwa", - "version": "7.6.2", + "version": "8.0.0-alpha.1", "description": "", "license": "BSD-3-Clause", "publishConfig": { @@ -13,7 +13,7 @@ "deploy": "d2-app-scripts deploy" }, "devDependencies": { - "@dhis2/cli-app-scripts": "7.6.2" + "@dhis2/cli-app-scripts": "8.0.0-alpha.1" }, "dependencies": { "idb": "^6.0.0", diff --git a/shell/package.json b/shell/package.json index 1058f191f..0e889fdf3 100644 --- a/shell/package.json +++ b/shell/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/app-shell", - "version": "7.6.2", + "version": "8.0.0-alpha.1", "repository": { "type": "git", "url": "https://github.com/amcgee/dhis2-app-platform", @@ -12,10 +12,10 @@ "access": "public" }, "dependencies": { - "@dhis2/app-adapter": "7.6.4", + "@dhis2/app-adapter": "8.0.0-alpha.1", "@dhis2/app-runtime": "^3.0.0", "@dhis2/d2-i18n": "^1.1.0", - "@dhis2/pwa": "7.6.2", + "@dhis2/pwa": "8.0.0-alpha.1", "@dhis2/ui": "^6.19.0", "classnames": "^2.2.6", "moment": "^2.29.1",