Skip to content

Commit 7f471c4

Browse files
Native Mobile Resources: Updating changelogs (#452)
2 parents c3aaa2e + 2b51de6 commit 7f471c4

4 files changed

Lines changed: 17 additions & 3 deletions

File tree

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

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

77
## [Unreleased]
88

9+
## [10.1.15] Native Mobile Resources - 2026-3-4
10+
11+
12+
## [2.0.2] Gallery
13+
### Fixed
14+
15+
- We've fixed an issue with a race condition where the Gallery widget would not consistently render items when using virtual scrolling in arbitrary scenarios.
16+
917
## [10.1.14] Native Mobile Resources - 2026-1-22
1018

1119

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

Lines changed: 2 additions & 2 deletions
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": "10.1.14",
4+
"version": "10.1.15",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2022. All rights reserved.",
77
"repository": {
@@ -54,4 +54,4 @@
5454
"rimraf": "^4.4.1",
5555
"rollup": "^2.79.2"
5656
}
57-
}
57+
}

packages/pluggableWidgets/gallery-native/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [2.0.2] - 2026-3-4
10+
911
### Fixed
1012

1113
- We've fixed an issue with a race condition where the Gallery widget would not consistently render items when using virtual scrolling in arbitrary scenarios.

scripts/release/module-automation/commons.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,11 @@ async function githubAuthentication(moduleInfo) {
204204
""
205205
)}`
206206
);
207-
await execShellCommand(`echo "${process.env.GH_PAT}" | gh auth login --with-token`);
207+
// If GH_TOKEN or GITHUB_TOKEN is set, gh CLI uses it automatically - no login needed
208+
// Otherwise, authenticate using GH_PAT
209+
if (!process.env.GH_TOKEN && !process.env.GITHUB_TOKEN) {
210+
await execShellCommand(`echo "${process.env.GH_PAT}" | gh auth login --with-token`);
211+
}
208212
}
209213

210214
async function cloneRepo(githubUrl, localFolder, branchName = "main") {

0 commit comments

Comments
 (0)