Skip to content

Commit e61409b

Browse files
committed
chore(release): cut 3.14.7 [skip ci]
## [3.14.7](v3.14.6...v3.14.7) (2025-12-17) ### Bug Fixes * use content type text/plain for mutations to validationRules/expression/description ([#1420](#1420)) ([da955b3](da955b3))
1 parent da955b3 commit e61409b

File tree

9 files changed

+2830
-2782
lines changed

9 files changed

+2830
-2782
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [3.14.7](https://github.com/dhis2/app-runtime/compare/v3.14.6...v3.14.7) (2025-12-17)
2+
3+
4+
### Bug Fixes
5+
6+
* use content type text/plain for mutations to validationRules/expression/description ([#1420](https://github.com/dhis2/app-runtime/issues/1420)) ([da955b3](https://github.com/dhis2/app-runtime/commit/da955b36be0211e8a0909cf5feac30f43e50671f))
7+
18
## [3.14.6](https://github.com/dhis2/app-runtime/compare/v3.14.5...v3.14.6) (2025-09-30)
29

310

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.14.6",
2+
"version": "3.14.7",
33
"description": "A singular runtime dependency for applications on the DHIS2 platform",
44
"repository": "https://github.com/dhis2/app-runtime.git",
55
"author": "Austin McGee <[email protected]>",

runtime/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dhis2/app-runtime",
33
"description": "A singular runtime dependency for applications on the DHIS2 platform",
4-
"version": "3.14.6",
4+
"version": "3.14.7",
55
"main": "./build/cjs/index.js",
66
"module": "./build/es/index.js",
77
"types": "./build/types/index.d.ts",
@@ -31,11 +31,11 @@
3131
"build/**"
3232
],
3333
"dependencies": {
34-
"@dhis2/app-service-config": "3.14.6",
35-
"@dhis2/app-service-data": "3.14.6",
36-
"@dhis2/app-service-alerts": "3.14.6",
37-
"@dhis2/app-service-offline": "3.14.6",
38-
"@dhis2/app-service-plugin": "3.14.6",
34+
"@dhis2/app-service-config": "3.14.7",
35+
"@dhis2/app-service-data": "3.14.7",
36+
"@dhis2/app-service-alerts": "3.14.7",
37+
"@dhis2/app-service-offline": "3.14.7",
38+
"@dhis2/app-service-plugin": "3.14.7",
3939
"prop-types": "^15.7.2"
4040
},
4141
"peerDependencies": {

services/alerts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dhis2/app-service-alerts",
3-
"version": "3.14.6",
3+
"version": "3.14.7",
44
"main": "./build/cjs/index.js",
55
"module": "./build/es/index.js",
66
"types": "./build/types/index.d.ts",

services/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dhis2/app-service-config",
3-
"version": "3.14.6",
3+
"version": "3.14.7",
44
"main": "./build/cjs/index.js",
55
"module": "./build/es/index.js",
66
"types": "build/types/index.d.ts",

services/data/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dhis2/app-service-data",
3-
"version": "3.14.6",
3+
"version": "3.14.7",
44
"main": "./build/cjs/index.js",
55
"module": "./build/es/index.js",
66
"types": "build/types/index.d.ts",
@@ -37,7 +37,7 @@
3737
"prop-types": "^15.7.2"
3838
},
3939
"peerDependencies": {
40-
"@dhis2/app-service-config": "3.14.6",
40+
"@dhis2/app-service-config": "3.14.7",
4141
"react": "^16.8.6 || ^18",
4242
"react-dom": "^16.8.6 || ^18"
4343
}

services/offline/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dhis2/app-service-offline",
33
"description": "A runtime service for online/offline detection and offline caching",
4-
"version": "3.14.6",
4+
"version": "3.14.7",
55
"main": "./build/cjs/index.js",
66
"module": "./build/es/index.js",
77
"types": "build/types/index.d.ts",
@@ -34,7 +34,7 @@
3434
"coverage": "yarn test --coverage"
3535
},
3636
"peerDependencies": {
37-
"@dhis2/app-service-config": "3.14.6",
37+
"@dhis2/app-service-config": "3.14.7",
3838
"react": "^16.8.6 || ^18",
3939
"react-dom": "^16.8.6 || ^18"
4040
},

services/plugin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dhis2/app-service-plugin",
3-
"version": "3.14.6",
3+
"version": "3.14.7",
44
"main": "./build/cjs/index.js",
55
"module": "./build/es/index.js",
66
"types": "build/types/index.d.ts",
@@ -27,8 +27,8 @@
2727
"prop-types": "^15.7.2"
2828
},
2929
"peerDependencies": {
30-
"@dhis2/app-service-alerts": "3.14.6",
31-
"@dhis2/app-service-data": "3.14.6",
30+
"@dhis2/app-service-alerts": "3.14.7",
31+
"@dhis2/app-service-data": "3.14.7",
3232
"react": "^16.8.6 || ^18",
3333
"react-dom": "^16.8.6 || ^18"
3434
},

yarn.lock

Lines changed: 2807 additions & 2766 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)