diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml new file mode 100644 index 00000000000..a50a2818bdb --- /dev/null +++ b/.github/workflows/sync.yml @@ -0,0 +1,39 @@ +name: Sync Docs Fork with Upstream + +on: + schedule: + # Daily at midnight (UTC). + - cron: '0 0 * * *' + workflow_dispatch: # Allow manual trigger from the GitHub UI. + +jobs: + sync: + runs-on: ubuntu-latest + + env: + DEFAULT_BRANCH: development + UPSTREAM_REPO_URL: https://github.com/mendix/docs.git + + steps: + - name: Checkout repository + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 + with: + fetch-depth: 0 + ref: ${{ env.DEFAULT_BRANCH }} + token: ${{ secrets.SYNC_DOCS_TOKEN }} + + - name: Configure Git + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + + - name: Add upstream remote and fetch + run: | + git remote add upstream ${{ env.UPSTREAM_REPO_URL }} + git fetch upstream + + - name: Merge upstream changes into default branch + run: | + git checkout ${{ env.DEFAULT_BRANCH }} + git merge upstream/${{ env.DEFAULT_BRANCH }} --no-edit + git push origin ${{ env.DEFAULT_BRANCH }} diff --git a/content/en/docs/releasenotes/mobile/native-template/nt-studio-pro-11-parent/nt-17-rn.md b/content/en/docs/releasenotes/mobile/native-template/nt-studio-pro-11-parent/nt-17-rn.md index ae1adcd470b..6be3616c4f5 100644 --- a/content/en/docs/releasenotes/mobile/native-template/nt-studio-pro-11-parent/nt-17-rn.md +++ b/content/en/docs/releasenotes/mobile/native-template/nt-studio-pro-11-parent/nt-17-rn.md @@ -5,6 +5,14 @@ weight: 8 description: "Native Template 17" --- +## 18.0.1 + +**Release date: Apr 8, 2026** + +- We updated `.gitignore` to more precisely exclude `node_modules` directories in specific locations. +- We added a new dependency for `@shopify/flash-list` to support the migration from FlatList to FlashList. +- Fix the iOS builds crashing when building with Xcode 26. + ## 17.0.2 {#1702} **Release date: January 12, 2026**