Skip to content

Commit c8d3f17

Browse files
committed
chore: update sp min version
1 parent 3ff6f9b commit c8d3f17

File tree

2 files changed

+33
-29
lines changed

2 files changed

+33
-29
lines changed

packages/modules/web-actions/CHANGELOG.md

Lines changed: 23 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,98 +6,102 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Changed
10+
11+
- We updated studio pro minimum version to 10.21 to support Mendix 11.
12+
913
## [2.10.0] - 2024-01-29
1014

1115
### Changed
1216

13-
- We updated styling so that they follow content security policy.
17+
- We updated styling so that they follow content security policy.
1418

15-
- The recommended minimum atlas-core version is now version 3
19+
- The recommended minimum atlas-core version is now version 3
1620

1721
## [2.9.0] - 2023-10-24
1822

1923
### Changed
2024

21-
- We updated actions so that they suggest better names for return variables.
25+
- We updated actions so that they suggest better names for return variables.
2226

2327
## [2.8.0] - 2023-06-06
2428

2529
### Changed
2630

27-
- We updated the light and dark icons and tiles for the actions.
31+
- We updated the light and dark icons and tiles for the actions.
2832

2933
## [2.7.0] - 2023-03-15
3034

3135
### Changed
3236

33-
- Update minimal supported version to Mendix Studio Pro 9.18.4 and above.
37+
- Update minimal supported version to Mendix Studio Pro 9.18.4 and above.
3438

3539
## [2.6.0] - 2022-11-10
3640

3741
### Fixed
3842

39-
- We fixed issue with CRLF line endings.
43+
- We fixed issue with CRLF line endings.
4044

41-
- We fixed errors in SetFavicon action.
45+
- We fixed errors in SetFavicon action.
4246

4347
## [2.5.0] - 2022-08-31
4448

4549
### Added
4650

47-
- We added new actions: SetCookie, ReadCookie, SetFavicon.
51+
- We added new actions: SetCookie, ReadCookie, SetFavicon.
4852

4953
## [2.4.0] - 2022-01-25
5054

5155
### Added
5256

53-
- We added icons for dark mode.
57+
- We added icons for dark mode.
5458

5559
### Removed
5660

57-
- We removed icon collections from the module.
61+
- We removed icon collections from the module.
5862

5963
### Changed
6064

61-
- We changed the javascript actions to be exclusive for Web platform.
65+
- We changed the javascript actions to be exclusive for Web platform.
6266

6367
## [2.3.0] - 2021-09-28
6468

6569
### Added
6670

67-
- Added tile images for all the actions.
71+
- Added tile images for all the actions.
6872

6973
## [2.2.0] - 2021-08-11
7074

7175
### Added
7276

73-
- Added the possibility to customize the picture quality from the "Take a picture" action.
77+
- Added the possibility to customize the picture quality from the "Take a picture" action.
7478

7579
### Changed
7680

77-
- Changed the confirmation screen to hide the control buttons after confirmation while the picture is loading in the "Take a picture" action.
81+
- Changed the confirmation screen to hide the control buttons after confirmation while the picture is loading in the "Take a picture" action.
7882

79-
- Changed the "Take a picture" action to hide the action buttons after taking a picture while waiting for the picture to be processed.
83+
- Changed the "Take a picture" action to hide the action buttons after taking a picture while waiting for the picture to be processed.
8084

8185
## [2.1.1] - 2021-07-01
8286

8387
### Changed
8488

85-
- We changed the category of 'Take picture' action to 'Web camera'
89+
- We changed the category of 'Take picture' action to 'Web camera'
8690

8791
## [2.1.0] - 2021-05-28
8892

8993
### Added
9094

91-
- We've added a JavaScript action to allow take picture in PWA and web apps
95+
- We've added a JavaScript action to allow take picture in PWA and web apps
9296

9397
## [2.0.0] - 2021-04-20
9498

9599
### Added
96100

97-
- Adding compatibility with Studio Pro 9
101+
- Adding compatibility with Studio Pro 9
98102

99103
## [1.0.0] - 2020-05-22
100104

101105
### Added
102106

103-
- Introducing web actions for accessibility purposes: Focus next, Focus previous, Set focus, Scroll to
107+
- Introducing web actions for accessibility purposes: Focus next, Focus previous, Set focus, Scroll to
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@mendix/web-actions",
33
"moduleName": "Web Actions",
4-
"version": "2.10.0",
5-
"license": "Apache-2.0",
4+
"version": "2.11.0",
65
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
6+
"license": "Apache-2.0",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/mendix/web-widgets.git"
@@ -15,7 +15,7 @@
1515
},
1616
"moduleFolderNameInModeler": "webactions",
1717
"marketplace": {
18-
"minimumMXVersion": "9.24.0.2965",
18+
"minimumMXVersion": "10.21.0.64362",
1919
"appNumber": 114337,
2020
"appName": "Web Actions"
2121
},
@@ -24,20 +24,20 @@
2424
"branchName": "main"
2525
},
2626
"scripts": {
27-
"lint": "eslint --ext .js src/",
28-
"format": "echo 'Skip as actions use special format'",
29-
"verify": "rui-verify-package-format",
30-
"update-changelog": "rui-update-changelog-widget",
3127
"build:module": "ts-node --project scripts/tsconfig.json scripts/build.ts",
3228
"create-gh-release": "rui-create-gh-release",
29+
"format": "echo 'Skip as actions use special format'",
30+
"lint": "eslint --ext .js src/",
31+
"publish-marketplace": "rui-publish-marketplace",
3332
"push-update": "ts-node --project scripts/tsconfig.json scripts/push-update.ts",
3433
"release:module": "ts-node --project scripts/tsconfig.json scripts/release.ts",
35-
"publish-marketplace": "rui-publish-marketplace"
34+
"update-changelog": "rui-update-changelog-widget",
35+
"verify": "rui-verify-package-format"
3636
},
3737
"devDependencies": {
38-
"globals": "^16.0.0",
3938
"@eslint/js": "^9.24.0",
4039
"@mendix/automation-utils": "workspace:*",
41-
"@mendix/prettier-config-web-widgets": "workspace:^"
40+
"@mendix/prettier-config-web-widgets": "workspace:^",
41+
"globals": "^16.0.0"
4242
}
4343
}

0 commit comments

Comments
 (0)