Skip to content

Commit

Permalink
chore(release): cut 3.10.0-alpha.1 [skip ci]
Browse files Browse the repository at this point in the history
# [3.10.0-alpha.1](v3.9.0...v3.10.0-alpha.1) (2023-03-13)

### Bug Fixes

* add documentation, clean up ([c537590](c537590))
* clean up, add useless test ([b14952b](b14952b))
* custom error handling ([c72fc6e](c72fc6e))
* dependency resolution ([2480c1c](2480c1c))

### Features

* ideas for plugin wrappers [LIBS-397] ([be38607](be38607))
* implement plugin wrappers (alpha) ([#1332](#1332)) ([56a9a3f](56a9a3f))
* plugin wrappers, errors + alerts ([bda6a43](bda6a43))
* update plugin wrappers ([30c963c](30c963c))
  • Loading branch information
dhis2-bot committed Mar 13, 2023
1 parent 56a9a3f commit b4c499a
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 15 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# [3.10.0-alpha.1](https://github.com/dhis2/app-runtime/compare/v3.9.0...v3.10.0-alpha.1) (2023-03-13)


### Bug Fixes

* add documentation, clean up ([c537590](https://github.com/dhis2/app-runtime/commit/c537590176b2e6aebf278653a87705b3417bcc38))
* clean up, add useless test ([b14952b](https://github.com/dhis2/app-runtime/commit/b14952b137971f625283c8de60afac061176b80e))
* custom error handling ([c72fc6e](https://github.com/dhis2/app-runtime/commit/c72fc6eac576ce043ab706e13030497a0dab3d3a))
* dependency resolution ([2480c1c](https://github.com/dhis2/app-runtime/commit/2480c1c6b82daaeee0ab82ef45962fbcabd0e778))


### Features

* ideas for plugin wrappers [LIBS-397] ([be38607](https://github.com/dhis2/app-runtime/commit/be38607698b12309af5b79259afbbf037e7027bc))
* implement plugin wrappers (alpha) ([#1332](https://github.com/dhis2/app-runtime/issues/1332)) ([56a9a3f](https://github.com/dhis2/app-runtime/commit/56a9a3fb734e07c6c2d8140c6413222b42be82a1))
* plugin wrappers, errors + alerts ([bda6a43](https://github.com/dhis2/app-runtime/commit/bda6a4352fe0ad8a076f55040e3fe702f9d0c4eb))
* update plugin wrappers ([30c963c](https://github.com/dhis2/app-runtime/commit/30c963c112b2865ae824c7e3ce06279ed374983c))

# [3.9.0](https://github.com/dhis2/app-runtime/compare/v3.8.0...v3.9.0) (2023-03-02)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.9.0",
"version": "3.10.0-alpha.1",
"description": "A singular runtime dependency for applications on the DHIS2 platform",
"repository": "https://github.com/dhis2/app-runtime.git",
"author": "Austin McGee <austin@dhis2.org>",
Expand Down
10 changes: 5 additions & 5 deletions runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dhis2/app-runtime",
"description": "A singular runtime dependency for applications on the DHIS2 platform",
"version": "3.9.0",
"version": "3.10.0-alpha.1",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "./build/types/index.d.ts",
Expand All @@ -23,10 +23,10 @@
"build/**"
],
"dependencies": {
"@dhis2/app-service-config": "3.9.0",
"@dhis2/app-service-data": "3.9.0",
"@dhis2/app-service-alerts": "3.9.0",
"@dhis2/app-service-offline": "3.9.0"
"@dhis2/app-service-config": "3.10.0-alpha.1",
"@dhis2/app-service-data": "3.10.0-alpha.1",
"@dhis2/app-service-alerts": "3.10.0-alpha.1",
"@dhis2/app-service-offline": "3.10.0-alpha.1"
},
"peerDependencies": {
"prop-types": "^15.7.2",
Expand Down
2 changes: 1 addition & 1 deletion services/alerts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-service-alerts",
"version": "3.9.0",
"version": "3.10.0-alpha.1",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "./build/types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion services/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-service-config",
"version": "3.9.0",
"version": "3.10.0-alpha.1",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "build/types/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions services/data/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-service-data",
"version": "3.9.0",
"version": "3.10.0-alpha.1",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "build/types/index.d.ts",
Expand All @@ -22,7 +22,7 @@
"build/**"
],
"peerDependencies": {
"@dhis2/app-service-config": "3.9.0",
"@dhis2/app-service-config": "3.10.0-alpha.1",
"@dhis2/cli-app-scripts": "^7.1.1",
"prop-types": "^15.7.2",
"react": "^16.8",
Expand Down
4 changes: 2 additions & 2 deletions services/offline/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dhis2/app-service-offline",
"description": "A runtime service for online/offline detection and offline caching",
"version": "3.9.0",
"version": "3.10.0-alpha.1",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "build/types/index.d.ts",
Expand Down Expand Up @@ -33,7 +33,7 @@
"coverage": "yarn test --coverage"
},
"peerDependencies": {
"@dhis2/app-service-config": "3.9.0",
"@dhis2/app-service-config": "3.10.0-alpha.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
Expand Down
6 changes: 3 additions & 3 deletions services/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhis2/app-service-plugin",
"version": "3.7.0",
"version": "3.10.0-alpha.1",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "build/types/index.d.ts",
Expand Down Expand Up @@ -28,8 +28,8 @@
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"@dhis2/app-service-alerts": "3.7.0",
"@dhis2/app-service-data": "3.7.0"
"@dhis2/app-service-alerts": "3.10.0-alpha.1",
"@dhis2/app-service-data": "3.10.0-alpha.1"
},
"devDependencies": {
"@types/post-robot": "^10.0.3"
Expand Down

0 comments on commit b4c499a

Please sign in to comment.