Skip to content

Commit aa8e43a

Browse files
committed
[UIA-1285] Release module v10.0.5
1 parent 8db4fb5 commit aa8e43a

11 files changed

Lines changed: 22 additions & 84 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [10.0.5] - 2025-10-13
10+
11+
### Fixed:
12+
- We increased the length of the ‘Name’ and ‘DisplayName’ attributes in the UnitTest entity, the ‘Module’ attribute in the TestSuite entity, and the ‘TestName’ attribute in the UnitTestContext entity to align with the maximum allowed lengths for module and microflow names in the platform. (#259822)
13+
914
## [10.0.4] - 2025-08-14
1015

1116
### Added:

dist/UnitTesting_10.0.5.mpk

3.42 MB
Binary file not shown.

src/UnitTesting.mpr

4 KB
Binary file not shown.

src/javasource/system/UserActionsRegistrar.java

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 0 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +0,0 @@
1-
// This file was generated by Mendix Studio Pro.
2-
//
3-
// WARNING: Only the following code will be retained when actions are regenerated:
4-
// - the import list
5-
// - the code between BEGIN USER CODE and END USER CODE
6-
// - the code between BEGIN EXTRA CODE and END EXTRA CODE
7-
// Other code you write will be lost the next time you deploy the project.
8-
// Special characters, e.g., é, ö, à, etc. are supported in comments.
9-
10-
package system.actions;
11-
12-
import com.mendix.core.Core;
13-
import com.mendix.systemwideinterfaces.core.IUser;
14-
import com.mendix.systemwideinterfaces.core.IContext;
15-
import com.mendix.systemwideinterfaces.core.UserAction;
16-
17-
/**
18-
* Verifies that the specified user name/password combination is valid.
19-
*/
20-
public class VerifyPassword extends UserAction<java.lang.Boolean>
21-
{
22-
private final java.lang.String userName;
23-
private final java.lang.String password;
24-
25-
public VerifyPassword(
26-
IContext context,
27-
java.lang.String _userName,
28-
java.lang.String _password
29-
)
30-
{
31-
super(context);
32-
this.userName = _userName;
33-
this.password = _password;
34-
}
35-
36-
@java.lang.Override
37-
public java.lang.Boolean executeAction() throws Exception
38-
{
39-
// BEGIN USER CODE
40-
IUser user = Core.getUser(getContext(), userName);
41-
return user != null && Core.authenticate(getContext(), user, password);
42-
// END USER CODE
43-
}
44-
45-
/**
46-
* Returns a string representation of this action
47-
* @return a string representation of this action
48-
*/
49-
@java.lang.Override
50-
public java.lang.String toString()
51-
{
52-
return "VerifyPassword";
53-
}
54-
55-
// BEGIN EXTRA CODE
56-
// END EXTRA CODE
57-
}

src/project-settings.user.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
"suppressedRecommendations": [],
1515
"hasShownRecommendationsNotificationForThisApp": true,
1616
"type": "Mendix.Modeler.MxAssist.PerformanceBot.Serialization.Configuration.PerformanceBotConfiguration, Mendix.Modeler.MxAssist.PerformanceBot.Serialization, Version=10.21.0.0, Culture=neutral, PublicKeyToken=null"
17+
},
18+
{
19+
"antivirusExcludedProjectDirectory": "",
20+
"type": "Mendix.Modeler.ProjectHandling.View.ProjectDirectory.ProjectDirectoryConfiguration, Mendix.Modeler.ProjectHandling.View, Version=10.21.0.0, Culture=neutral, PublicKeyToken=null"
1721
}
1822
]
1923
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import * as variables from "../../../theme/native/custom-variables";
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
3+
}

0 commit comments

Comments
 (0)