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

Upgrade React Native to 0.74.2 #46

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
77 changes: 73 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,74 @@
node_modules
/lib/
coverage
yarn-error.log
# OSX
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
**/.xcode.env.local

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
*.hprof
.cxx/
*.keystore
!debug.keystore

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/

**/fastlane/report.xml
**/fastlane/Preview.html
**/fastlane/screenshots
**/fastlane/test_output

# Bundle artifact
*.jsbundle

# Ruby / CocoaPods
**/Pods/
/vendor/bundle/

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*

# testing
/coverage

# Yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
2 changes: 0 additions & 2 deletions .npmrc

This file was deleted.

541 changes: 541 additions & 0 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Large diffs are not rendered by default.

874 changes: 874 additions & 0 deletions .yarn/releases/yarn-3.6.4.cjs

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
nodeLinker: node-modules

npmScopes:
fortawesome:
npmAlwaysAuth: true
npmAuthToken: "${FONTAWESOME_NPM_AUTH_TOKEN}"
npmRegistryServer: "https://npm.fontawesome.com/"

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-3.6.4.cjs
63 changes: 32 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"name": "@observation.org/react-native-components",
"version": "1.35.0",
"version": "1.36.0",
"main": "src/index.ts",
"repository": "[email protected]:observation/react-native-components.git",
"author": "Observation.org",
"license": "MIT",
"devDependencies": {
"@react-native/eslint-config": "^0.73.0",
"@react-native/metro-config": "^0.73.0",
"@react-native/typescript-config": "0.73.1",
"@react-navigation/native": "^6.0.8",
"@rnx-kit/align-deps": "^2.3.4",
"@testing-library/react-native": "^12.1.2",
"@types/color": "^3.0.3",
"@types/jest": "^29.5.2",
"@react-native/eslint-config": "0.74.84",
"@react-native/metro-config": "0.74.84",
"@react-native/typescript-config": "0.74.84",
"@react-navigation/native": "^6.1.17",
"@rnx-kit/align-deps": "^2.5.0",
"@testing-library/react-native": "^12.5.1",
"@types/color": "^3.0.6",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.6",
"eslint": "^8.19.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-observation": "https://github.com/observation/eslint-rules.git",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^29.2.1",
"prettier": "^3.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"react": "18.2.0",
"react-native": "^0.73.0",
"react-native-render-html": "^6.1.0",
"react-native": "0.74.2",
"react-native-render-html": "^6.3.4",
"react-test-renderer": "18.2.0",
"ts-jest": "^29.1.0",
"ts-jest": "^29.1.4",
"typescript": "5.0.4"
},
"react-native": "src/index.ts",
Expand All @@ -45,30 +45,31 @@
"peerDependencies": {
"@react-navigation/native": "^6.0.8",
"react": "18.2.0",
"react-native": "^0.73.0",
"react-native": "^0.74.0",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deze nog veranderen naar "0.74.2"?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Denk het niet. Dit geeft aan welke versie van RN gebruikers van deze library moeten hebben, minimaal 0.74.0 klopt wel.

"react-native-render-html": "^6.1.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/pro-light-svg-icons": "^6.3.0",
"@fortawesome/pro-solid-svg-icons": "^6.3.0",
"@fortawesome/react-native-fontawesome": "^0.3.1",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/pro-light-svg-icons": "^6.5.2",
"@fortawesome/pro-solid-svg-icons": "^6.5.2",
"@fortawesome/react-native-fontawesome": "^0.3.2",
"@observation.org/react-native-image-viewing": "https://github.com/observation/react-native-image-viewing",
"@react-native-community/blur": "^4.2.0",
"accordion-collapse-react-native": "^1.0.0",
"@react-native-community/blur": "^4.4.0",
"accordion-collapse-react-native": "^1.1.1",
"color": "^4.2.3",
"react-native-logs": "^5.0.1",
"react-native-logs": "^5.1.0",
"react-native-scalable-image": "^1.1.0"
},
"packageManager": "[email protected]",
"rnx-kit": {
"kitType": "library",
"alignDeps": {
"requirements": {
"development": [
"react-native@0.73"
"react-native@0.74"
],
"production": [
"react-native@>=0.73"
"react-native@>=0.74"
]
},
"capabilities": [
Expand Down
Loading
Loading