Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions packages/command-tests/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ const LIMIT_TESTS = !!process.env.LIMIT_TESTS;
const PARALLELISM = 4;

const CONFIGS = [
["web", "full", "ts", "8.0"],
["native", "full", "ts", "8.6"],
["web", "full", "ts", "8.6"],
["web", "full", "js", "8.7"],
["web", "full", "ts", "8.9"],
["native", "full", "ts", "8.9"],
// ["web", "full", "ts", "8.0"],
// ["native", "full", "ts", "8.6"],
// ["web", "full", "ts", "8.6"],
// ["web", "full", "js", "8.7"],
// ["web", "full", "ts", "8.9"],
// ["native", "full", "ts", "8.9"],
["web", "full", "js", "latest"],
["web", "full", "ts", "latest"],
["native", "full", "js", "latest"],
Expand Down Expand Up @@ -376,14 +376,15 @@ async function execFailedAsync(command, workDir) {
function fixPackageJson(json) {
const devDependencies = {
"@types/jest": "^29.0.0",
"@types/react": "~18.2.0",
"@types/react-native": "~0.72.0",
"@types/react-dom": "~18.2.0",
"@types/react": "^19.0.0",
"@types/react-native": "0.78.2",
"@types/react-dom": "^19.0.0",
"@types/react-test-renderer": "~18.0.0"
};
const overrides = {
react: "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "0.78.2"
};

Object.keys(devDependencies)
Expand Down
2 changes: 1 addition & 1 deletion packages/command-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"@prettier/plugin-xml": "^2.2.0",
"@types/jest-image-snapshot": "^4.3.1",
"@types/node": "^16.11.19",
"@types/node": "^18.0.0",
"@types/node-fetch": "2.6.1",
"@types/shelljs": "^0.8.9",
"@types/xml2js": "^0.4.5",
Expand Down
4 changes: 4 additions & 0 deletions packages/generator-widget/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Changed

- We upgraded React Native to version 0.78.2 for generated widgets.

## [11.3.1] - 2026-02-04

### Changed
Expand Down
2 changes: 1 addition & 1 deletion packages/generator-widget/generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class MxGenerator extends Generator {

install() {
this.log(text.INSTALL_FINISH_MSG);
this.npmInstall(undefined, { legacyPeerDeps: true });
this.npmInstall(undefined, { legacyPeerDeps: false });
}

async end() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,19 @@
"output": "./dist/testresults/TESTS-Jest.xml"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^11.3.1"
"@mendix/pluggable-widgets-tools": "^11.6.0"
},
"dependencies": {

},
"resolutions": {
"react": "^18.2.0",
"react-native": "0.77.3"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
},
"overrides": {
"react": "^18.2.0",
"react-native": "0.77.3"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,19 @@
"release": "pluggable-widgets-tools release:native"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^11.3.1"
"@mendix/pluggable-widgets-tools": "^11.6.0"
},
"dependencies": {

},
"resolutions": {
"react": "^18.2.0",
"react-native": "0.77.3"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
},
"overrides": {
"react": "^18.2.0",
"react-native": "0.77.3"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,25 @@
"output": "./dist/testresults/TESTS-Jest.xml"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^11.3.1",
"@mendix/pluggable-widgets-tools": "^11.6.0",
"@types/big.js": "^6.0.2",
"@types/jest": "^29.0.0"
},
"dependencies": {

},
"resolutions": {
"react": "^18.2.0",
"@types/react": "^18.2.0",
"react-native": "0.77.3"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react-native": "~0.78.2"
},
"overrides": {
"react": "^18.2.0",
"@types/react": "^18.2.0",
"react-native": "0.77.3"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react-native": "~0.78.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,24 @@
"release": "pluggable-widgets-tools release:native"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^11.3.1",
"@mendix/pluggable-widgets-tools": "^11.6.0",
"@types/big.js": "^6.0.2"
},
"dependencies": {

},
"resolutions": {
"react": "^18.2.0",
"@types/react": "^18.2.0",
"react-native": "0.77.3"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react-native": "~0.78.2"
},
"overrides": {
"react": "^18.2.0",
"@types/react": "^18.2.0",
"react-native": "0.77.3"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react-native": "~0.78.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@
"release": "pluggable-widgets-tools release:web"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^11.3.1",
"@mendix/pluggable-widgets-tools": "^11.6.0",
"cypress": "^10.10.0"
},
"dependencies": {
"classnames": "^2.2.6"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@
"release": "pluggable-widgets-tools release:web"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^11.3.1",
"@mendix/pluggable-widgets-tools": "^11.6.0",
"cypress": "^10.10.0"
},
"dependencies": {
"classnames": "^2.2.6"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@
"release": "pluggable-widgets-tools release:web"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^11.3.1"
"@mendix/pluggable-widgets-tools": "^11.6.0"
},
"dependencies": {
"classnames": "^2.2.6"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@
"release": "pluggable-widgets-tools release:web"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^11.3.1"
"@mendix/pluggable-widgets-tools": "^11.6.0"
},
"dependencies": {
"classnames": "^2.2.6"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "~0.78.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"release": "pluggable-widgets-tools release:web"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^11.3.1",
"@mendix/pluggable-widgets-tools": "^11.6.0",
"@types/big.js": "^6.0.2",
"@types/jasmine": "^3.6.9",
"cypress": "^10.10.0"
Expand All @@ -35,17 +35,17 @@
"classnames": "^2.2.6"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"@types/react": "^18.2.0",
"@types/react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react-native": "~0.78.2"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"@types/react": "^18.2.0",
"@types/react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react-native": "~0.78.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"release": "pluggable-widgets-tools release:web"
},
"devDependencies": {
"@mendix/pluggable-widgets-tools": "^11.3.1",
"@mendix/pluggable-widgets-tools": "^11.6.0",
"@types/big.js": "^6.0.2",
"@types/jasmine": "^3.6.9",
"@types/jest": "^29.0.0",
Expand All @@ -38,17 +38,17 @@
"classnames": "^2.2.6"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"@types/react": "^18.2.0",
"@types/react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react-native": "~0.78.2"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"@types/react": "^18.2.0",
"@types/react-dom": "18.2.0",
"react-native": "0.72.7"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react-native": "~0.78.2"
}
}
Loading
Loading