Skip to content

Commit bfe91ba

Browse files
author
Ahmed Elsayed
committed
fix(mobile-resources-native): update changelog
1 parent 3a245fe commit bfe91ba

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

packages/jsActions/mobile-resources-native/CHANGELOG.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9-
### Changed
9+
## [6.0.2] Native Mobile Resources - 2024-03-29
10+
11+
### Fixed
12+
13+
- Fixed an Android issue in Download file action with encrypted files enabled projects.
14+
15+
## [6.0.1] Native Mobile Resources - 2024-02-02
16+
17+
[2.2.1] - Accordion
18+
19+
### Fixed
20+
21+
- Fixed a bug where the accordion state was not updating correctly when the "Collapsed" attribute was selected.
22+
23+
- Resolved an issue where the accordion's dynamic content was not updating its height after the initial render.
24+
25+
## [1.0.3] - Gallery
26+
27+
### Fixed
1028

11-
- fixed an Android issue in Download file action.
29+
- We've resolved an issue where the loading indicator was triggered when pulling down the list, even in the absence of a pull-down event.
1230

1331
## [6.0.0] Native Mobile Resources - 2024-01-24
1432

packages/jsActions/mobile-resources-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mobile-resources-native",
33
"moduleName": "Native Mobile Resources",
4-
"version": "6.0.0",
4+
"version": "6.0.2",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2022. All rights reserved.",
77
"repository": {

scripts/widget/buildWidgets.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const runYarnBuild = () => {
7676
}
7777
log.info("Running 'yarn build'...");
7878

79-
const buildProcess = spawn("yarn", ["build"], { stdio: "pipe", shell: true });
79+
const buildProcess = spawn("yarn", ["release"], { stdio: "pipe", shell: true });
8080

8181
buildProcess.stdout.on("data", data => {
8282
process.stdout.write(`\r${colors.yellow}Building widgets... ${data.toString().trim()}${colors.reset}`);

0 commit comments

Comments
 (0)