Skip to content

Commit 287f94f

Browse files
committed
Merge remote-tracking branch 'upstream/master' into pc_server
2 parents 1c3b57b + 8687cb8 commit 287f94f

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-sdk-flutter",
3-
"version": "10.2.0",
3+
"version": "9.3.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/parse-community/Parse-SDK-Flutter.git"

packages/dart/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [9.3.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-9.2.0...dart-9.3.0) (2025-11-29)
2+
3+
4+
### Features
5+
6+
* Bump mime from 1.0.6 to 2.0.0 in /packages/dart ([#1066](https://github.com/parse-community/Parse-SDK-Flutter/issues/1066)) ([2e143bf](https://github.com/parse-community/Parse-SDK-Flutter/commit/2e143bf08c71b768f922fbf33d1c6308e6667397))
7+
18
# [9.2.0](https://github.com/parse-community/Parse-SDK-Flutter/compare/dart-9.1.0...dart-9.2.0) (2025-11-29)
29

310

packages/dart/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: parse_server_sdk
22
description: The Dart SDK to connect to Parse Server. Build your apps faster with Parse Platform, the complete application stack.
3-
version: 9.2.0
3+
version: 9.3.0
44
homepage: https://parseplatform.org
55
repository: https://github.com/parse-community/Parse-SDK-Flutter
66
issue_tracker: https://github.com/parse-community/Parse-SDK-Flutter/issues
@@ -34,8 +34,8 @@ dependencies:
3434
# Utils
3535
uuid: ^4.5.1
3636
meta: ^1.16.0
37-
path: ^1.9.1
38-
mime: ^2.0.0
37+
path: ^1.9.0
38+
mime: ">=1.0.0 <3.0.0"
3939
timezone: ">=0.9.4 <0.11.0"
4040
universal_io: ^2.2.2
4141
xxtea: ^2.1.0

release.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ async function config() {
8383
noteKeywords: [ 'BREAKING CHANGE', 'BREAKING CHANGES', 'BREAKING' ],
8484
},
8585
}],
86+
['@semantic-release/exec', {
87+
verifyConditionsCmd: packageName !== 'root'
88+
? `bash -c 'LAST_TAG=$(git describe --tags --abbrev=0 --match="${packageName}-*" 2>/dev/null || echo ""); if [ -n "$LAST_TAG" ]; then git diff --name-only $LAST_TAG HEAD | grep -q "^packages/${packageName}/"; else git log --all --name-only --pretty=format: | grep -q "^packages/${packageName}/"; fi || (echo "No changes in packages/${packageName}, skipping release" && exit 1)'`
89+
: 'echo "Root package always runs"',
90+
}],
8691
['@semantic-release/release-notes-generator', {
8792
preset: 'angular',
8893
parserOpts: {

0 commit comments

Comments
 (0)