Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: react-native-community/template
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.75.6
Choose a base ref
...
head repository: react-native-community/template
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.75.7
Choose a head ref
  • 5 commits
  • 5 files changed
  • 4 contributors

Commits on Oct 2, 2024

  1. fix release workflow

    Had a typo
    blakef committed Oct 2, 2024
    Copy the full SHA
    c6f570c View commit details
  2. Fix: continue attempting release nothing to commit

    This can happen if npm publish fails
    blakef committed Oct 2, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8a1dda1 View commit details

Commits on Feb 6, 2025

  1. Copy the full SHA
    fe0518c View commit details
  2. Update Gemfile

    cipolleschi authored Feb 6, 2025
    Copy the full SHA
    4af1981 View commit details
  3. Copy the full SHA
    7194b7c View commit details
Showing with 15 additions and 9 deletions.
  1. +5 −1 .github/workflows/release.yaml
  2. +2 −2 package.json
  3. +2 −0 template/Gemfile
  4. +1 −1 template/android/build.gradle
  5. +5 −5 template/package.json
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -48,6 +48,10 @@ jobs:
fi
"${GIT[@]}" config --global user.name 'React Native Bot'
"${GIT[@]}" config --global user.email 'bot@reactnative.dev'
if [ -z "$("${GIT[@]}" status --porcelain)" ]; then
echo "No changes, a previous release might have failed at the publish step. Continue to retry."
exit 0
fi
"${GIT[@]}" commit -am "Bumping template to $VERSION"
"${GIT[@]}" push
"${GIT[@]}" tag $VERSION
@@ -69,4 +73,4 @@ jobs:
npm publish --tag "$GITHUB_REF_NAME" "${args[@]}"
else
npm publish "${args[@]}"
if
fi
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@react-native-community/template",
"version": "0.75.6",
"version": "0.75.7",
"description": "The template used by `npx @react-native-community/cli init` to bootstrap a React Native application.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"version": "0.75.4",
"version": "0.75.5",
"test": "jest"
},
"type": "commonjs",
2 changes: 2 additions & 0 deletions template/Gemfile
Original file line number Diff line number Diff line change
@@ -6,3 +6,5 @@ ruby ">= 2.6.10"
# Exclude problematic versions of cocoapods and activesupport that causes build failures.
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
gem 'xcodeproj', '< 1.26.0'
gem 'concurrent-ruby', '<= 1.3.4'
2 changes: 1 addition & 1 deletion template/android/build.gradle
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ buildscript {
compileSdkVersion = 34
targetSdkVersion = 34
ndkVersion = "26.1.10909125"
kotlinVersion = "1.9.24"
kotlinVersion = "1.9.25"
}
repositories {
google()
10 changes: 5 additions & 5 deletions template/package.json
Original file line number Diff line number Diff line change
@@ -11,16 +11,16 @@
},
"dependencies": {
"react": "18.3.1",
"react-native": "0.75.4"
"react-native": "0.75.5"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.75.4",
"@react-native/eslint-config": "0.75.4",
"@react-native/metro-config": "0.75.4",
"@react-native/typescript-config": "0.75.4",
"@react-native/babel-preset": "0.75.5",
"@react-native/eslint-config": "0.75.5",
"@react-native/metro-config": "0.75.5",
"@react-native/typescript-config": "0.75.5",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",