Skip to content

Commit cbd4c04

Browse files
committed
Merge remote-tracking branch 'upstream/master' into pc_server
2 parents 24ee249 + b897213 commit cbd4c04

File tree

13 files changed

+72
-50
lines changed

13 files changed

+72
-50
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ updates:
66
schedule:
77
interval: "daily"
88
open-pull-requests-limit: 10
9-
labels:
10-
- "dart"
119
commit-message:
1210
prefix: "feat"
1311

@@ -17,8 +15,6 @@ updates:
1715
schedule:
1816
interval: "daily"
1917
open-pull-requests-limit: 10
20-
labels:
21-
- "flutter"
2218
commit-message:
2319
prefix: "feat"
2420

@@ -28,7 +24,5 @@ updates:
2824
schedule:
2925
interval: "weekly"
3026
open-pull-requests-limit: 5
31-
labels:
32-
- "ci"
3327
commit-message:
3428
prefix: "refactor"

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
name: Test ${{ matrix.name }}
3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v6
4040
- name: Configure git for line endings (Windows)
4141
if: matrix.os == 'windows-latest'
4242
run: |
@@ -101,7 +101,7 @@ jobs:
101101
name: Test ${{ matrix.name }}
102102
steps:
103103
- name: Checkout code
104-
uses: actions/checkout@v4
104+
uses: actions/checkout@v6
105105
- name: Setup flutter (beta)
106106
if: ${{ matrix.sdk == 'beta' }}
107107
uses: subosito/flutter-action@v2
@@ -147,7 +147,7 @@ jobs:
147147
name: Auto-Release Dry Run
148148
steps:
149149
- name: Checkout code
150-
uses: actions/checkout@v4
150+
uses: actions/checkout@v6
151151
with:
152152
fetch-depth: 0 # Required for semantic-release to analyze commit history
153153
- name: Setup Node.js

.github/workflows/dependency-audit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Setup Dart
2222
uses: dart-lang/setup-dart@v1
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v6
5252

5353
- name: Setup Flutter
5454
uses: subosito/flutter-action@v2

.github/workflows/release-automated.yml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,32 +26,30 @@ jobs:
2626
pull-requests: write
2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 0
32-
persist-credentials: false
32+
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
3333
- name: Setup Node.js
3434
uses: actions/setup-node@v4
3535
with:
3636
node-version: 24
3737
cache: 'npm'
3838
- name: Install dependencies
3939
run: npm ci
40-
- name: Run semantic-release for dart package
40+
- name: Configure git credentials
4141
run: |
42-
npx semantic-release || EXIT_CODE=$?
43-
if [ ${EXIT_CODE:-0} -ne 0 ] && [ ${EXIT_CODE:-0} -ne 69 ]; then
44-
exit $EXIT_CODE
45-
fi
42+
git config --global user.name "github-actions[bot]"
43+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
44+
- name: Run semantic-release for dart package
45+
run: npx semantic-release
46+
working-directory: packages/dart
4647
env:
4748
GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
4849
PKG_NAME: dart
4950
- name: Run semantic-release for flutter package
50-
run: |
51-
npx semantic-release || EXIT_CODE=$?
52-
if [ ${EXIT_CODE:-0} -ne 0 ] && [ ${EXIT_CODE:-0} -ne 69 ]; then
53-
exit $EXIT_CODE
54-
fi
51+
run: npx semantic-release
52+
working-directory: packages/flutter
5553
env:
5654
GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
5755
PKG_NAME: flutter

.github/workflows/release-manual-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
timeout-minutes: 15
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v6
2222
with:
2323
ref: ${{ github.event.inputs.tag }}
2424
- name: Setup dart

.github/workflows/release-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id-token: write
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
ref: ${{ github.ref_name }}
2121
- name: Setup dart
@@ -43,7 +43,7 @@ jobs:
4343
id-token: write
4444
steps:
4545
- name: Checkout code
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v6
4747
with:
4848
ref: ${{ github.ref_name }}
4949
- name: Setup dart
@@ -78,7 +78,7 @@ jobs:
7878
timeout-minutes: 15
7979
steps:
8080
- name: Checkout code
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v6
8282
with:
8383
ref: ${{ github.ref_name }}
8484
- name: Setup dart
@@ -101,7 +101,7 @@ jobs:
101101
timeout-minutes: 15
102102
steps:
103103
- name: Checkout code
104-
uses: actions/checkout@v4
104+
uses: actions/checkout@v6
105105
with:
106106
ref: ${{ github.ref_name }}
107107
- name: Setup dart

packages/dart/.releaserc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require('../../release.config.js');

packages/dart/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "dart",
3+
"private": true,
4+
"version": "0.0.0-development"
5+
}

packages/flutter/.releaserc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require('../../release.config.js');

packages/flutter/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# [flutter-v10.4.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-10.3.0...flutter-10.4.0) (2025-11-30)
2+
3+
4+
### Features
5+
6+
* Bump parse_server_sdk from 6.4.0 to 8.0.2 in /packages/flutter ([#1059](https://github.com/parse-community/Parse-SDK-Flutter/issues/1059)) ([d183e96](https://github.com/parse-community/Parse-SDK-Flutter/commit/d183e96008011e1b1384a96226228e08a726b78b))
7+
8+
# [flutter-v10.3.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-10.2.0...flutter-10.3.0) (2025-11-30)
9+
10+
11+
### Features
12+
13+
* Bump package_info_plus from 5.0.1 to 9.0.0 in /packages/flutter ([#1060](https://github.com/parse-community/Parse-SDK-Flutter/issues/1060)) ([2b3e63c](https://github.com/parse-community/Parse-SDK-Flutter/commit/2b3e63cdb5ddb3b5de5dfb830db8c72ccfffdb84))
14+
15+
# [10.3.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-10.2.0...flutter-10.3.0) (2025-11-30)
16+
17+
18+
### Features
19+
20+
* Bump package_info_plus from 5.0.1 to 9.0.0 in /packages/flutter ([#1060](https://github.com/parse-community/Parse-SDK-Flutter/issues/1060)) ([2b3e63c](https://github.com/parse-community/Parse-SDK-Flutter/commit/2b3e63cdb5ddb3b5de5dfb830db8c72ccfffdb84))
21+
22+
123
# [10.2.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/flutter-10.1.0...flutter-10.2.0) (2025-11-29)
224

325

0 commit comments

Comments
 (0)