Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollback to 7.0.9 #738

Merged
merged 4 commits into from
Nov 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Rollback to v7.0.9
UrazAkgultan committed Nov 22, 2023

Verified

This commit was signed with the committer’s verified signature. The key has expired.
foolnotion Bogdan Burlacu
commit b64a389dcef3bf93b68db5bc89bc27471d7f2f85
24 changes: 12 additions & 12 deletions .mx/releases_list.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@
[
{
"id": 130675884,
"tag_name": "v7.0.10",
"name": "Release 7.0.10",
"draft": false,
"prerelease": true,
"body": "* Merge pull request #732 from mendix/moo/update-rn-to-0-70-13 (2092dc5)",
"created_at": "2023-11-21T14:46:24Z",
"published_at": "2023-11-21T14:47:00Z",
"tarball_url": "https://api.github.com/repos/mendix/native-template/tarball/v7.0.10",
"zipball_url": "https://api.github.com/repos/mendix/native-template/zipball/v7.0.10"
},
{
"id": 124993140,
"tag_name": "v7.0.9",
@@ -1198,5 +1186,17 @@
"published_at": "2021-04-06T13:56:25Z",
"tarball_url": "https://api.github.com/repos/mendix/native-template/tarball/v5.1.10",
"zipball_url": "https://api.github.com/repos/mendix/native-template/zipball/v5.1.10"
},
{
"id": 40780276,
"tag_name": "v6.1.4",
"name": "Hotfix for v6.1.3 for Mendix 9",
"draft": false,
"prerelease": false,
"body": "### Hotfix for v6.1.3\r\n\r\n- We fixed an issue that was causing iOS builds to fail with Native Template v6.1.3.\r\n\r\n### Improvements\r\n\r\nThe iOS apps should now use a single window and handle scene switching with view controllers instead. This should result in better compatibility in some edge cases.\r\n\r\n### Fixes \r\n\r\n- We fixed the App Center scripts to fail early when something is wrong.",
"created_at": "2021-03-31T19:14:53Z",
"published_at": "2021-03-31T19:18:06Z",
"tarball_url": "https://api.github.com/repos/mendix/native-template/tarball/v6.1.4",
"zipball_url": "https://api.github.com/repos/mendix/native-template/zipball/v6.1.4"
}
]
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
16
5 changes: 0 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -6,17 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Updated

- We have updated React Native version to 0.70.13 for better performance and stability.

## [7.0.9] - 2023-10-13

### Fixed

- We fixed build errors caused by the recent XCode 15 update.


## [7.0.8] - 2023-09-25

### Fixed
Binary file removed mendix-native-2.1.0.tgz
Binary file not shown.
12,709 changes: 11,077 additions & 1,632 deletions package-lock.json

Large diffs are not rendered by default.

17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "native-template",
"version": "7.0.10",
"version": "7.0.9",
"private": true,
"scripts": {
"postinstall": "node patches/apply-patches.js && jetify",
"configure": "native-mobile-toolkit configure --config-path='./config.json' --verbose"
},
"dependencies": {
"@mendix/native": "./mendix-native-2.1.0.tgz",
"@mendix/native": "~2.0.4",
"@mendix/react-native-sqlite-storage": "5.1.3",
"@react-native-community/async-storage": "1.12.0",
"@react-native-community/async-storage": "1.12.1",
"@react-native-community/cameraroll": "4.0.1",
"@react-native-community/datetimepicker": "3.0.3",
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/push-notification-ios": "1.10.1",
"@react-native-firebase/app": "17.3.0",
"@react-native-firebase/messaging": "17.3.0",
"@react-native-picker/picker": "^2.4.8",
"react-native": "0.70.13",
"react-native": "0.70.7",
"react-native-code-push": "7.0.5",
"react-native-device-info": "10.11.0",
"react-native-device-info": "8.0.1",
"react-native-fast-image": "8.3.2",
"react-native-gesture-handler": "1.10.3",
"react-native-image-picker": "5.0.1",
@@ -38,7 +38,7 @@
"@mendix/native-mobile-toolkit": "latest",
"detox": "19.13.0",
"jetifier": "^1.6.3",
"metro-react-native-babel-preset": "~0.72.4",
"metro-react-native-babel-preset": "~0.72.3",
"patch-package": "^6.2.2"
},
"engines": {
@@ -47,12 +47,11 @@
"overrides": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.70.13",
"@react-native-community/cli-platform-android": "9.3.1"
"react-native": "0.70.7"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.70.13"
"react-native": "0.70.7"
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
diff --git a/node_modules/react-native/Libraries/Image/RCTUIImageViewAnimated.m b/node_modules/react-native/Libraries/Image/RCTUIImageViewAnimated.m
index 9e1cd1e..fb42ae5 100644
index f532ce5..bd46641 100644
--- a/node_modules/react-native/Libraries/Image/RCTUIImageViewAnimated.m
+++ b/node_modules/react-native/Libraries/Image/RCTUIImageViewAnimated.m
@@ -276,6 +276,10 @@ static NSUInteger RCTDeviceFreeMemory() {
@@ -283,6 +283,10 @@ - (void)displayDidRefresh:(CADisplayLink *)displayLink

- (void)displayLayer:(CALayer *)layer
{