Skip to content

Commit c657665

Browse files
Merge branch 'main' into moo/moo-1800/dependency-update
2 parents d5914aa + 3e2203d commit c657665

File tree

9 files changed

+683
-630
lines changed

9 files changed

+683
-630
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"@actions/core": "^1.6.0",
4444
"@commitlint/cli": "^18.6.1",
4545
"@commitlint/config-conventional": "^18.6.3",
46-
"@react-native/babel-preset": "0.75.4",
46+
"@react-native/babel-preset": "0.77.3",
4747
"@testing-library/jest-native": "^5.4.3",
4848
"@testing-library/react-native": "^12.9.0",
4949
"@types/big.js": "^6.2.2",
@@ -89,7 +89,7 @@
8989
"@types/react": "^18",
9090
"react": "18.2.0",
9191
"react-dom": "18.2.0",
92-
"react-native": "0.75.4",
92+
"react-native": "0.77.3",
9393
"@prettier/plugin-xml": "2.2.0",
9494
"@types/react-native": "0.73.0",
9595
"cheerio": "1.0.0-rc.12",

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

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

77
## [Unreleased]
88

9+
910
- We updated react-native-permissions to 5.4.2.
1011

1112
- We removed react-native-schedule-exact-alarm-permission since it's no longer required.
1213

14+
- Updated react-native from version 0.75.4 to 0.77.3.
15+
16+
1317
## [10.0.0] Native Mobile Resources - 2025-3-31
1418

1519
- We migrated from react-native-inappbrowser-reborn to @swan-io/react-native-browser to prevent issues for next rn upgrade.

packages/pluggableWidgets/animation-native/src/__tests__/__snapshots__/Animation.spec.tsx.snap

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
exports[`Animation renders 1`] = `
44
<View
55
collapsable={false}
6-
style={{}}
6+
style={
7+
[
8+
{},
9+
{},
10+
{},
11+
]
12+
}
713
testID="animation-test"
814
>
915
<Text>

packages/pluggableWidgets/popup-menu-native/src/__tests__/__snapshots__/PopupMenu.spec.tsx.snap

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,12 @@ exports[`Popup menu renders 1`] = `
110110
<View
111111
collapsable={false}
112112
style={
113-
{
114-
"overflow": "hidden",
115-
}
113+
[
114+
{
115+
"overflow": "hidden",
116+
},
117+
false,
118+
]
116119
}
117120
>
118121
<View
@@ -313,9 +316,12 @@ exports[`Popup menu renders custom items 1`] = `
313316
<View
314317
collapsable={false}
315318
style={
316-
{
317-
"overflow": "hidden",
318-
}
319+
[
320+
{
321+
"overflow": "hidden",
322+
},
323+
false,
324+
]
319325
}
320326
>
321327
<View

packages/pluggableWidgets/progress-circle-native/src/__tests__/__snapshots__/ProgressCircle.spec.tsx.snap

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ exports[`ProgressCircle renders 1`] = `
3030
"backgroundColor": "transparent",
3131
"borderWidth": 0,
3232
},
33-
{},
3433
{
3534
"flex": 0,
3635
"height": 100,

packages/pluggableWidgets/video-player-native/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [6.2.0] - 2025-08-18
10+
11+
### Changed
12+
13+
- We have updated `react-native-video` version to 6.10.0
14+
915
## [6.1.0] - 2024-12-3
1016

1117
### Changed

packages/pluggableWidgets/video-player-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "video-player-native",
33
"widgetName": "VideoPlayer",
4-
"version": "6.1.0",
4+
"version": "6.2.0",
55
"license": "Apache-2.0",
66
"repository": {
77
"type": "git",
@@ -23,7 +23,7 @@
2323
"deprecated-react-native-prop-types": "^4.0.0",
2424
"react-native-system-navigation-bar": "2.6.3",
2525
"react-native-vector-icons": "10.2.0",
26-
"react-native-video": "6.4.5"
26+
"react-native-video": "6.10.0"
2727
},
2828
"devDependencies": {
2929
"@mendix/piw-utils-internal": "1.0.0",

packages/pluggableWidgets/video-player-native/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="VideoPlayer" version="6.1.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="VideoPlayer" version="6.2.0" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="VideoPlayer.xml" />
66
</widgetFiles>

pnpm-lock.yaml

Lines changed: 649 additions & 617 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)