From 3726e90111943a84a7a6e29e3c3b0f102252ba04 Mon Sep 17 00:00:00 2001 From: "@dhis2-bot" Date: Tue, 31 Aug 2021 06:40:04 +0000 Subject: [PATCH] chore(release): cut 7.6.0-alpha.1 [skip ci] # [7.6.0-alpha.1](https://github.com/dhis2/app-platform/compare/v7.5.1...v7.6.0-alpha.1) (2021-08-31) ### Bug Fixes * catch errors in completeRecording ([e67ae82](https://github.com/dhis2/app-platform/commit/e67ae821b33990435f3846f3ce933362105520bb)) * check whole URL against filter patterns ([5468114](https://github.com/dhis2/app-platform/commit/5468114e8631610d4e70f6c54a288a62cc7f28c2)) * only return sections with cached data from getCachedSections ([f6242d1](https://github.com/dhis2/app-platform/commit/f6242d1b6b25268f3a0c441060264d584d023afe)) * reopen indexedDB if global state resets ([0aded68](https://github.com/dhis2/app-platform/commit/0aded6846b1f9abc567e44144006cb516516e8b3)) * return true if either cache or idb entry is removed ([43d8001](https://github.com/dhis2/app-platform/commit/43d8001ab2aa6077bb0dc3fbaecb2228399a26e4)) * simplify message payload to be compatible with firefox ([5e5a633](https://github.com/dhis2/app-platform/commit/5e5a633440e1b103669dae3d0b1e8786cde9f96b)) ### Features * add service worker and pwa capabilities ([#550](https://github.com/dhis2/app-platform/issues/550)) ([225069e](https://github.com/dhis2/app-platform/commit/225069e11d924734c5ac2e257af7d5e9185c612a)), closes [#580](https://github.com/dhis2/app-platform/issues/580) [#582](https://github.com/dhis2/app-platform/issues/582) [#592](https://github.com/dhis2/app-platform/issues/592) * allow RegEx for filter patterns in d2.config.js ([9699330](https://github.com/dhis2/app-platform/commit/96993301f1d3ba4eec719bd2ecf93b72995653ba)) * use new headerbar with online status indicator ([#626](https://github.com/dhis2/app-platform/issues/626)) ([3bd7d37](https://github.com/dhis2/app-platform/commit/3bd7d37d0776dfd44ab583a95ad47734c1302f84)) --- CHANGELOG.md | 19 +++++++++++++++++++ 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, 34 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ba72df97..ccba64b0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# [7.6.0-alpha.1](https://github.com/dhis2/app-platform/compare/v7.5.1...v7.6.0-alpha.1) (2021-08-31) + + +### Bug Fixes + +* catch errors in completeRecording ([e67ae82](https://github.com/dhis2/app-platform/commit/e67ae821b33990435f3846f3ce933362105520bb)) +* check whole URL against filter patterns ([5468114](https://github.com/dhis2/app-platform/commit/5468114e8631610d4e70f6c54a288a62cc7f28c2)) +* only return sections with cached data from getCachedSections ([f6242d1](https://github.com/dhis2/app-platform/commit/f6242d1b6b25268f3a0c441060264d584d023afe)) +* reopen indexedDB if global state resets ([0aded68](https://github.com/dhis2/app-platform/commit/0aded6846b1f9abc567e44144006cb516516e8b3)) +* return true if either cache or idb entry is removed ([43d8001](https://github.com/dhis2/app-platform/commit/43d8001ab2aa6077bb0dc3fbaecb2228399a26e4)) +* simplify message payload to be compatible with firefox ([5e5a633](https://github.com/dhis2/app-platform/commit/5e5a633440e1b103669dae3d0b1e8786cde9f96b)) + + +### Features + +* add service worker and pwa capabilities ([#550](https://github.com/dhis2/app-platform/issues/550)) ([225069e](https://github.com/dhis2/app-platform/commit/225069e11d924734c5ac2e257af7d5e9185c612a)), closes [#580](https://github.com/dhis2/app-platform/issues/580) [#582](https://github.com/dhis2/app-platform/issues/582) [#592](https://github.com/dhis2/app-platform/issues/592) +* allow RegEx for filter patterns in d2.config.js ([9699330](https://github.com/dhis2/app-platform/commit/96993301f1d3ba4eec719bd2ecf93b72995653ba)) +* use new headerbar with online status indicator ([#626](https://github.com/dhis2/app-platform/issues/626)) ([3bd7d37](https://github.com/dhis2/app-platform/commit/3bd7d37d0776dfd44ab583a95ad47734c1302f84)) + ## [7.5.1](https://github.com/dhis2/app-platform/compare/v7.5.0...v7.5.1) (2021-08-25) diff --git a/adapter/package.json b/adapter/package.json index 6ff30c4c7..7afa2bed5 100644 --- a/adapter/package.json +++ b/adapter/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/app-adapter", - "version": "7.3.0-alpha.4", + "version": "7.6.0-alpha.1", "repository": { "type": "git", "url": "https://github.com/amcgee/dhis2-app-platform", @@ -21,11 +21,11 @@ "build" ], "dependencies": { - "@dhis2/pwa": "7.3.0-alpha.4", + "@dhis2/pwa": "7.6.0-alpha.1", "moment": "^2.24.0" }, "devDependencies": { - "@dhis2/cli-app-scripts": "7.3.0-alpha.4", + "@dhis2/cli-app-scripts": "7.6.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 fbe158caf..3907913f1 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/cli-app-scripts", - "version": "7.3.0-alpha.4", + "version": "7.6.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.3.0-alpha.4", + "@dhis2/app-shell": "7.6.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 685aa72ec..e685109fb 100644 --- a/examples/pwa-app/package.json +++ b/examples/pwa-app/package.json @@ -1,6 +1,6 @@ { "name": "pwa-app", - "version": "7.3.0-alpha.4", + "version": "7.6.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.3.0-alpha.4", + "@dhis2/cli-app-scripts": "7.6.0-alpha.1", "serve": "^12.0.0" }, "peerDependencies": { diff --git a/examples/simple-app/package.json b/examples/simple-app/package.json index 287a35a05..62b115f37 100644 --- a/examples/simple-app/package.json +++ b/examples/simple-app/package.json @@ -1,12 +1,12 @@ { "name": "simple-app", - "version": "7.3.0-alpha.4", + "version": "7.6.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.3.0-alpha.4" + "@dhis2/cli-app-scripts": "7.6.0-alpha.1" }, "scripts": { "start": "d2-app-scripts start", diff --git a/package.json b/package.json index 8d1c269e5..de29ec2a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "root", - "version": "7.3.0-alpha.4", + "version": "7.6.0-alpha.1", "private": true, "repository": { "type": "git", diff --git a/pwa/package.json b/pwa/package.json index 16b1a8f68..4601a696f 100644 --- a/pwa/package.json +++ b/pwa/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/pwa", - "version": "7.3.0-alpha.4", + "version": "7.6.0-alpha.1", "description": "", "license": "BSD-3-Clause", "publishConfig": { @@ -13,7 +13,7 @@ "deploy": "d2-app-scripts deploy" }, "devDependencies": { - "@dhis2/cli-app-scripts": "7.3.0-alpha.4" + "@dhis2/cli-app-scripts": "7.6.0-alpha.1" }, "dependencies": { "idb": "^6.0.0", diff --git a/shell/package.json b/shell/package.json index 196f02ec1..00b44111a 100644 --- a/shell/package.json +++ b/shell/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/app-shell", - "version": "7.3.0-alpha.4", + "version": "7.6.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.3.0-alpha.4", + "@dhis2/app-adapter": "7.6.0-alpha.1", "@dhis2/app-runtime": "^2.10.0-pwa.3", "@dhis2/d2-i18n": "^1.1.0", - "@dhis2/pwa": "7.3.0-alpha.4", + "@dhis2/pwa": "7.6.0-alpha.1", "@dhis2/ui": "^6.19.0", "classnames": "^2.2.6", "moment": "^2.29.1",