Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d05c572
feat: add scheduled upstream sync action
MendixMobile Mar 9, 2026
238ba19
chore: use commit hash for action
MendixMobile Mar 10, 2026
152eef6
Merge pull request #5 from MendixMobile/add-upstream-sync-action
MendixMobile Mar 10, 2026
db8e10e
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 11, 2026
e38fbb3
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 12, 2026
f1b618b
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 13, 2026
ef4db31
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 14, 2026
43d515a
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 17, 2026
08f3ee6
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 18, 2026
e5554e5
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 19, 2026
64943f3
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 20, 2026
619c7aa
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 21, 2026
1ffc09b
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 24, 2026
dd3c03b
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 25, 2026
0c29934
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 26, 2026
290a793
Merge branch 'mendix:development' into development
MendixMobile Mar 26, 2026
04d20ec
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 27, 2026
4d8d623
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Mar 31, 2026
edfcda3
fix: add scoped PAT to fix sync-workflow permission issue (#6)
MendixMobile Apr 1, 2026
2ba6975
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Apr 1, 2026
4d439cc
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Apr 3, 2026
76fe9c7
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Apr 4, 2026
6c51f3e
Merge remote-tracking branch 'upstream/development' into development
github-actions[bot] Apr 8, 2026
9c4eeec
docs: update mobile release notes for v18.0.1
MendixMobile Apr 8, 2026
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
39 changes: 39 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -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 }}
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down