Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b03df51
Migrate the repository to React 19 & React Native 0.78.2
LEGIO-SEXTA-FERRATA Feb 23, 2026
45fa318
Fix GW tests
LEGIO-SEXTA-FERRATA Feb 23, 2026
6dbe1d4
Adjust migration script
LEGIO-SEXTA-FERRATA Feb 23, 2026
7115755
Deprecate the generation tests for Mendix 8
LEGIO-SEXTA-FERRATA Feb 23, 2026
631681f
Remove the now unnecessary createElement import for JSX files
LEGIO-SEXTA-FERRATA Feb 25, 2026
f1615ff
Adjust the migration script to handle the createElement imports that …
LEGIO-SEXTA-FERRATA Feb 25, 2026
4e6f724
Use babel eslint parser
alihcsumer Feb 25, 2026
345cf7d
Activate a repository test line for node 20
LEGIO-SEXTA-FERRATA Feb 26, 2026
c177af5
Adjust dependencies for createElement cleanup routine
LEGIO-SEXTA-FERRATA Feb 26, 2026
2306679
Disable Node 16 test line
LEGIO-SEXTA-FERRATA Feb 26, 2026
67975bd
Remove the deprecated ban-types rule
LEGIO-SEXTA-FERRATA Feb 26, 2026
163844c
Ease the no require rule to a warning
LEGIO-SEXTA-FERRATA Feb 26, 2026
b21f57a
Review: simplify the YAML for PWT command test workflow
LEGIO-SEXTA-FERRATA Mar 3, 2026
6876574
Review: remove leftover version 8th command tests
LEGIO-SEXTA-FERRATA Mar 3, 2026
d9f1ba9
Review: remove React Native dependency from the web generator template
LEGIO-SEXTA-FERRATA Mar 3, 2026
47abaa4
Review: remove the empty line in the generators
LEGIO-SEXTA-FERRATA Mar 3, 2026
c6db3eb
Bump the eslint-plugin to the specifically required 8.53
LEGIO-SEXTA-FERRATA Mar 3, 2026
bff1678
Review: remove the leftover type conversion
LEGIO-SEXTA-FERRATA Mar 3, 2026
c37c71f
Review: reintroduce the no-unused-vars arg
LEGIO-SEXTA-FERRATA Mar 3, 2026
d43cfc6
Review: clear leftover comments
LEGIO-SEXTA-FERRATA Mar 3, 2026
5663c4d
Review: turn no-require-imports rule off
LEGIO-SEXTA-FERRATA Mar 3, 2026
3cd8479
Review: align no-unused-vars rule for TS and JS
LEGIO-SEXTA-FERRATA Mar 3, 2026
2141ba5
Bump Mendix typings dependency to 11.6
LEGIO-SEXTA-FERRATA Mar 3, 2026
8963b3d
Add release notes
LEGIO-SEXTA-FERRATA Mar 3, 2026
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
10 changes: 2 additions & 8 deletions .github/workflows/TestPWTCommands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Script tests

on:
push:
branches:
branches:
- master
paths:
- 'pnpm-lock.yaml'
Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [16, 18]
node: [18, 20]
os: [windows-latest, ubuntu-latest]
steps:
- name: "Checking-out code"
Expand All @@ -34,12 +34,6 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda #v4.1.0
if: matrix.node == 16
with:
version: 8
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda #v4.1.0
if: matrix.node == 18
with:
version: 10

Expand Down
17 changes: 6 additions & 11 deletions packages/command-tests/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ 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", "js", "latest"],
["web", "full", "ts", "latest"],
["native", "full", "js", "latest"],
Expand Down Expand Up @@ -376,14 +370,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

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading