Skip to content

Commit

Permalink
chore(release): cut 3.10.0-alpha.3 [skip ci]
Browse files Browse the repository at this point in the history
# [3.10.0-alpha.3](v3.10.0-alpha.2...v3.10.0-alpha.3) (2023-08-22)

### Bug Fixes

* **connection-status:** responsiveness to online events [LIBS-497] ([#1348](#1348)) ([91a3d4d](91a3d4d))
* **types:** add generic result type to oncomplete param ([#1350](#1350)) ([a069603](a069603))
* [DHIS2] Type generic T = QueryResult to useDataQuery ([#1297](#1297)) ([7c5c083](7c5c083))
* account for daylight savings time [LIBS-490] ([06eaa5d](06eaa5d))
* account for daylight savings time [LIBS-490] [#1345](#1345) ([fb00533](fb00533))
* add test for when time zones are the same [LIBS-490] ([7911f8b](7911f8b))
  • Loading branch information
dhis2-bot committed Aug 22, 2023
1 parent b08aa84 commit b02a515
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 15 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# [3.10.0-alpha.3](https://github.com/dhis2/app-runtime/compare/v3.10.0-alpha.2...v3.10.0-alpha.3) (2023-08-22)


### Bug Fixes

* **connection-status:** responsiveness to online events [LIBS-497] ([#1348](https://github.com/dhis2/app-runtime/issues/1348)) ([91a3d4d](https://github.com/dhis2/app-runtime/commit/91a3d4d820e6a87b819334bd72709c1de1a777f5))
* **types:** add generic result type to oncomplete param ([#1350](https://github.com/dhis2/app-runtime/issues/1350)) ([a069603](https://github.com/dhis2/app-runtime/commit/a069603b4f3b2c9caa2158d7b4087e432cf90668))
* [DHIS2] Type generic T = QueryResult to useDataQuery ([#1297](https://github.com/dhis2/app-runtime/issues/1297)) ([7c5c083](https://github.com/dhis2/app-runtime/commit/7c5c08308b919f70acac5cba6c2b851e4a6e50fa))
* account for daylight savings time [LIBS-490] ([06eaa5d](https://github.com/dhis2/app-runtime/commit/06eaa5d5a0d3d4f69f701a3031610310d2d37ccf))
* account for daylight savings time [LIBS-490] [#1345](https://github.com/dhis2/app-runtime/issues/1345) ([fb00533](https://github.com/dhis2/app-runtime/commit/fb00533008e828f7c9fa17f959dcc375fca8b6bd))
* add test for when time zones are the same [LIBS-490] ([7911f8b](https://github.com/dhis2/app-runtime/commit/7911f8b992aabc34a1451144660a34b6b5035286))

## [3.9.4](https://github.com/dhis2/app-runtime/compare/v3.9.3...v3.9.4) (2023-06-19)


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.4",
"version": "3.10.0-alpha.3",
"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.4",
"version": "3.10.0-alpha.3",
"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.4",
"@dhis2/app-service-data": "3.9.4",
"@dhis2/app-service-alerts": "3.9.4",
"@dhis2/app-service-offline": "3.9.4"
"@dhis2/app-service-config": "3.10.0-alpha.3",
"@dhis2/app-service-data": "3.10.0-alpha.3",
"@dhis2/app-service-alerts": "3.10.0-alpha.3",
"@dhis2/app-service-offline": "3.10.0-alpha.3"
},
"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.4",
"version": "3.10.0-alpha.3",
"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.4",
"version": "3.10.0-alpha.3",
"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.4",
"version": "3.10.0-alpha.3",
"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.4",
"@dhis2/app-service-config": "3.10.0-alpha.3",
"@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.4",
"version": "3.10.0-alpha.3",
"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.4",
"@dhis2/app-service-config": "3.10.0-alpha.3",
"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.10.0-alpha.2",
"version": "3.10.0-alpha.3",
"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.10.0-alpha.2",
"@dhis2/app-service-data": "3.10.0-alpha.2"
"@dhis2/app-service-alerts": "3.10.0-alpha.3",
"@dhis2/app-service-data": "3.10.0-alpha.3"
},
"devDependencies": {
"@types/post-robot": "^10.0.3"
Expand Down

0 comments on commit b02a515

Please sign in to comment.