diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f772f65..0c4212b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# [3.10.0-alpha.8](https://github.com/dhis2/app-runtime/compare/v3.10.0-alpha.7...v3.10.0-alpha.8) (2023-12-20) + + +### Bug Fixes + +* plugin experimental docs ([be215b2](https://github.com/dhis2/app-runtime/commit/be215b2c292e451662b72043f20921d42bf36d33)) + + +### Features + +* experimental plugin release ([f5cca86](https://github.com/dhis2/app-runtime/commit/f5cca86924afa995d916aab2a1b58348b6dcaee7)) +* plugin experimental export ([25f02a6](https://github.com/dhis2/app-runtime/commit/25f02a6c97733b79ff1aed5e8c4c1726c16144fe)) + # [3.10.0-alpha.7](https://github.com/dhis2/app-runtime/compare/v3.10.0-alpha.6...v3.10.0-alpha.7) (2023-12-20) diff --git a/package.json b/package.json index 1343d232..cb6be44a 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "3.10.0-alpha.7", + "version": "3.10.0-alpha.8", "description": "A singular runtime dependency for applications on the DHIS2 platform", "repository": "https://github.com/dhis2/app-runtime.git", "author": "Austin McGee ", diff --git a/runtime/package.json b/runtime/package.json index b1c4f9ab..f7bcb69e 100644 --- a/runtime/package.json +++ b/runtime/package.json @@ -1,7 +1,7 @@ { "name": "@dhis2/app-runtime", "description": "A singular runtime dependency for applications on the DHIS2 platform", - "version": "3.10.0-alpha.7", + "version": "3.10.0-alpha.8", "main": "./build/cjs/index.js", "module": "./build/es/index.js", "types": "./build/types/index.d.ts", @@ -29,11 +29,11 @@ "build/**" ], "dependencies": { - "@dhis2/app-service-config": "3.10.0-alpha.7", - "@dhis2/app-service-data": "3.10.0-alpha.7", - "@dhis2/app-service-alerts": "3.10.0-alpha.7", - "@dhis2/app-service-offline": "3.10.0-alpha.7", - "@dhis2/app-service-plugin": "3.10.0-alpha.7" + "@dhis2/app-service-config": "3.10.0-alpha.8", + "@dhis2/app-service-data": "3.10.0-alpha.8", + "@dhis2/app-service-alerts": "3.10.0-alpha.8", + "@dhis2/app-service-offline": "3.10.0-alpha.8", + "@dhis2/app-service-plugin": "3.10.0-alpha.8" }, "peerDependencies": { "prop-types": "^15.7.2", diff --git a/services/alerts/package.json b/services/alerts/package.json index 0ac41063..82e3b895 100644 --- a/services/alerts/package.json +++ b/services/alerts/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/app-service-alerts", - "version": "3.10.0-alpha.7", + "version": "3.10.0-alpha.8", "main": "./build/cjs/index.js", "module": "./build/es/index.js", "types": "./build/types/index.d.ts", diff --git a/services/config/package.json b/services/config/package.json index 97a48a36..c52050f7 100644 --- a/services/config/package.json +++ b/services/config/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/app-service-config", - "version": "3.10.0-alpha.7", + "version": "3.10.0-alpha.8", "main": "./build/cjs/index.js", "module": "./build/es/index.js", "types": "build/types/index.d.ts", diff --git a/services/data/package.json b/services/data/package.json index d981e645..76334010 100644 --- a/services/data/package.json +++ b/services/data/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/app-service-data", - "version": "3.10.0-alpha.7", + "version": "3.10.0-alpha.8", "main": "./build/cjs/index.js", "module": "./build/es/index.js", "types": "build/types/index.d.ts", @@ -22,7 +22,7 @@ "build/**" ], "peerDependencies": { - "@dhis2/app-service-config": "3.10.0-alpha.7", + "@dhis2/app-service-config": "3.10.0-alpha.8", "@dhis2/cli-app-scripts": "^7.1.1", "prop-types": "^15.7.2", "react": "^16.8", diff --git a/services/offline/package.json b/services/offline/package.json index 478f598e..0f407181 100644 --- a/services/offline/package.json +++ b/services/offline/package.json @@ -1,7 +1,7 @@ { "name": "@dhis2/app-service-offline", "description": "A runtime service for online/offline detection and offline caching", - "version": "3.10.0-alpha.7", + "version": "3.10.0-alpha.8", "main": "./build/cjs/index.js", "module": "./build/es/index.js", "types": "build/types/index.d.ts", @@ -33,7 +33,7 @@ "coverage": "yarn test --coverage" }, "peerDependencies": { - "@dhis2/app-service-config": "3.10.0-alpha.7", + "@dhis2/app-service-config": "3.10.0-alpha.8", "prop-types": "^15.7.2", "react": "^16.8.6", "react-dom": "^16.8.6" diff --git a/services/plugin/package.json b/services/plugin/package.json index a168dacb..01319dc0 100644 --- a/services/plugin/package.json +++ b/services/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@dhis2/app-service-plugin", - "version": "3.10.0-alpha.7", + "version": "3.10.0-alpha.8", "main": "./build/cjs/index.js", "module": "./build/es/index.js", "types": "build/types/index.d.ts", @@ -28,8 +28,8 @@ "prop-types": "^15.7.2", "react": "^16.8.6", "react-dom": "^16.8.6", - "@dhis2/app-service-alerts": "3.10.0-alpha.7", - "@dhis2/app-service-data": "3.10.0-alpha.7" + "@dhis2/app-service-alerts": "3.10.0-alpha.8", + "@dhis2/app-service-data": "3.10.0-alpha.8" }, "devDependencies": { "@types/post-robot": "^10.0.3"