Skip to content

Commit 4cbf822

Browse files
authored
Merge branch 'version/mx/10' into chore/update-firebase
2 parents 570e32d + c005c36 commit 4cbf822

File tree

5 files changed

+65
-0
lines changed

5 files changed

+65
-0
lines changed

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

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

1313
- Updated the react-native-firebase to v20.1.0. Ensure that the Native Template and Native Builder are updated accordingly.
1414

15+
## [10.1.6] Native Mobile Resources - 2025-10-17
16+
17+
18+
## [2.0.1] Gallery
19+
### Fixed
20+
21+
- We've fixed an issue where the Gallery widget would not properly load more items when scrolling down quickly.
22+
23+
## [6.1.2] VideoPlayer
24+
- We have updated `react-native-video` version to 6.10.2.
25+
- We have fixed an issue where videos were muted in iOS silent mode. The video player now plays sound even when the device is set to silent.
26+
27+
## [10.1.5] Native Mobile Resources - 2025-10-6
28+
29+
- Updated the react-native-firebase to v20.1.0. Ensure that the Native Template and Native Builder are updated accordingly.
30+
1531
## [10.1.5] Native Mobile Resources - 2025-10-6
1632

1733
## [5.0.1] BottomSheet

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.1] - 2025-10-17
10+
911
### Fixed
1012

1113
- We've fixed an issue where the Gallery widget would not properly load more items when scrolling down quickly.

packages/pluggableWidgets/video-player-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+
## [6.1.2] - 2025-10-17
10+
911
- We have updated `react-native-video` version to 6.10.2.
1012
- We have fixed an issue where videos were muted in iOS silent mode. The video player now plays sound even when the device is set to silent.
1113

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
diff --git a/node_modules/@mendix/pluggable-widgets-tools/configs/rollup.config.native.js b/node_modules/@mendix/pluggable-widgets-tools/configs/rollup.config.native.js
2+
index bb8cc3a..34e0877 100644
3+
--- a/node_modules/@mendix/pluggable-widgets-tools/configs/rollup.config.native.js
4+
+++ b/node_modules/@mendix/pluggable-widgets-tools/configs/rollup.config.native.js
5+
@@ -169,6 +169,17 @@ export default async args => {
6+
return result;
7+
8+
function getCommonPlugins(config) {
9+
+ const hasReanimated = (() => {
10+
+ try {
11+
+ const packageJson = require(join(sourcePath, "package.json"));
12+
+ return !!(
13+
+ (packageJson.dependencies && packageJson.dependencies["react-native-reanimated"]) ||
14+
+ (packageJson.peerDependencies && packageJson.peerDependencies["react-native-reanimated"])
15+
+ );
16+
+ } catch {
17+
+ return false;
18+
+ }
19+
+ })();
20+
return [
21+
nodeResolve({ preferBuiltins: false, mainFields: ["module", "browser", "main"] }),
22+
isTypescript
23+
@@ -223,7 +234,21 @@ export default async args => {
24+
})
25+
: null,
26+
image(),
27+
- production ? terser({ mangle: false }) : null,
28+
+ production ? terser(hasReanimated
29+
+ ? {
30+
+ mangle: false,
31+
+ compress: {
32+
+ defaults: false,
33+
+ inline: false,
34+
+ reduce_funcs: false,
35+
+ side_effects: false,
36+
+ },
37+
+ keep_fnames: true,
38+
+ keep_classnames: true,
39+
+ module: false,
40+
+ format: { comments: false }
41+
+ }
42+
+ : { mangle: false }) : null,
43+
// We need to create .mpk and copy results to test project after bundling is finished.
44+
// In case of a regular build is it is on `writeBundle` of the last config we define
45+
// (since rollup processes configs sequentially). But in watch mode rollup re-bundles only

0 commit comments

Comments
 (0)