Skip to content

Commit

Permalink
chore(release): cut 3.11.0-alpha.1 [skip ci]
Browse files Browse the repository at this point in the history
# [3.11.0-alpha.1](v3.10.4-alpha.1...v3.11.0-alpha.1) (2024-11-26)

### Bug Fixes

* **cacheable-section:** synchronously flush recording state for UI consistency ([04bc604](04bc604))
* add endpoint to text plain matchers ([#1390](#1390)) ([de8fbec](de8fbec))
* expand FetchErrorDetails type ([#1389](#1389)) ([78ad0b3](78ad0b3))
* handle alert returned async by parentAlertsAdd [LIBS-695] ([#1388](#1388)) ([bba9c23](bba9c23))
* **cacheable-section:** stable references to avoid loops [LIBS-642] ([#1385](#1385)) ([31562e9](31562e9))
* update plugin sizing definition ([#1383](#1383)) ([38c09b9](38c09b9))
* **deps:** remove cli-app-scripts peer dep [LIBS-587] ([#1379](#1379)) ([9e22e88](9e22e88))
* **deps:** update cli-app-scripts for package/types race condition ([dee6795](dee6795))

### Features

* fixed dimensions efficiency ([#1386](#1386)) ([b56ad2d](b56ad2d))
* upgrade app-runtime React version to v18 ([#1387](#1387)) ([0e4a3d5](0e4a3d5))
  • Loading branch information
dhis2-bot committed Nov 26, 2024
1 parent 222fa20 commit 691bd06
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 16 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# [3.11.0-alpha.1](https://github.com/dhis2/app-runtime/compare/v3.10.4-alpha.1...v3.11.0-alpha.1) (2024-11-26)


### Bug Fixes

* **cacheable-section:** synchronously flush recording state for UI consistency ([04bc604](https://github.com/dhis2/app-runtime/commit/04bc6049e511911ae5b54a498fc2cde0dcbf6e19))
* add endpoint to text plain matchers ([#1390](https://github.com/dhis2/app-runtime/issues/1390)) ([de8fbec](https://github.com/dhis2/app-runtime/commit/de8fbec456c23c6cd40019bd094932036bb0d8c2))
* expand FetchErrorDetails type ([#1389](https://github.com/dhis2/app-runtime/issues/1389)) ([78ad0b3](https://github.com/dhis2/app-runtime/commit/78ad0b33b4e62d663e8ffc2ccffff24bcd27d396))
* handle alert returned async by parentAlertsAdd [LIBS-695] ([#1388](https://github.com/dhis2/app-runtime/issues/1388)) ([bba9c23](https://github.com/dhis2/app-runtime/commit/bba9c2393a1c0bb29d8eb4a376015453769cca2e))
* **cacheable-section:** stable references to avoid loops [LIBS-642] ([#1385](https://github.com/dhis2/app-runtime/issues/1385)) ([31562e9](https://github.com/dhis2/app-runtime/commit/31562e9cbed4d58b5e59a1a016f57bfadf1c4d66))
* update plugin sizing definition ([#1383](https://github.com/dhis2/app-runtime/issues/1383)) ([38c09b9](https://github.com/dhis2/app-runtime/commit/38c09b975787928f4c77091c4f23342ca5a99859))
* **deps:** remove cli-app-scripts peer dep [LIBS-587] ([#1379](https://github.com/dhis2/app-runtime/issues/1379)) ([9e22e88](https://github.com/dhis2/app-runtime/commit/9e22e88da951514d0ca4daaf235220b0f7318943))
* **deps:** update cli-app-scripts for package/types race condition ([dee6795](https://github.com/dhis2/app-runtime/commit/dee679583f5b4388b74287f951cf789ae966bdc1))


### Features

* fixed dimensions efficiency ([#1386](https://github.com/dhis2/app-runtime/issues/1386)) ([b56ad2d](https://github.com/dhis2/app-runtime/commit/b56ad2d359e1ac1c7c57b1c39cba69b7b4dbdac7))
* upgrade app-runtime React version to v18 ([#1387](https://github.com/dhis2/app-runtime/issues/1387)) ([0e4a3d5](https://github.com/dhis2/app-runtime/commit/0e4a3d5c0e9cf8884c1a46f32fa0876234b6d765))

## [3.11.3](https://github.com/dhis2/app-runtime/compare/v3.11.2...v3.11.3) (2024-11-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.11.3",
"version": "3.11.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
12 changes: 6 additions & 6 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.11.3",
"version": "3.11.0-alpha.1",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "./build/types/index.d.ts",
Expand Down Expand Up @@ -29,11 +29,11 @@
"build/**"
],
"dependencies": {
"@dhis2/app-service-config": "3.11.3",
"@dhis2/app-service-data": "3.11.3",
"@dhis2/app-service-alerts": "3.11.3",
"@dhis2/app-service-offline": "3.11.3",
"@dhis2/app-service-plugin": "3.11.3"
"@dhis2/app-service-config": "3.11.0-alpha.1",
"@dhis2/app-service-data": "3.11.0-alpha.1",
"@dhis2/app-service-alerts": "3.11.0-alpha.1",
"@dhis2/app-service-offline": "3.11.0-alpha.1",
"@dhis2/app-service-plugin": "3.11.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.11.3",
"version": "3.11.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.11.3",
"version": "3.11.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.11.3",
"version": "3.11.0-alpha.1",
"main": "./build/cjs/index.js",
"module": "./build/es/index.js",
"types": "build/types/index.d.ts",
Expand Down Expand Up @@ -35,7 +35,7 @@
"react-query": "^3.13.11"
},
"peerDependencies": {
"@dhis2/app-service-config": "3.11.3",
"@dhis2/app-service-config": "3.11.0-alpha.1",
"prop-types": "^15.7.2",
"react": "^16.8 || ^18",
"react-dom": "^16.8 || ^18"
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.11.3",
"version": "3.11.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.11.3",
"@dhis2/app-service-config": "3.11.0-alpha.1",
"prop-types": "^15.7.2",
"react": "^16.8.6 || ^18",
"react-dom": "^16.8.6 || ^18"
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.11.3",
"version": "3.11.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 || ^18",
"react-dom": "^16.8.6 || ^18",
"@dhis2/app-service-alerts": "3.11.3",
"@dhis2/app-service-data": "3.11.3"
"@dhis2/app-service-alerts": "3.11.0-alpha.1",
"@dhis2/app-service-data": "3.11.0-alpha.1"
},
"devDependencies": {
"@types/post-robot": "^10.0.3"
Expand Down

0 comments on commit 691bd06

Please sign in to comment.