Skip to content

Commit f623194

Browse files
authored
chore: Bumps version to 2.5.0 and updates CHANGELOG. (serverpod#3387)
1 parent 3e870ad commit f623194

File tree

72 files changed

+652
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+652
-120
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 2.5.0
2+
- feat: Enables translations for SignInWithEmailDialog.
3+
- feat: Adds support for `Record` type in Streaming methods.
4+
- feat: Adds support for `Record` type in models.
5+
- feat: Adds support for defining a default value for `Enum` models.
6+
- feat(EXPERIMENTAL): Adds support for attaching custom data to diagnostic events.
7+
- fix: Always drains request bodies to prevent unexpected closed connections in the client.
8+
- fix: Prevents generated model file naming conflicts with framework-generated files.
9+
- fix: Fixes crash when validating Serverpod package version in CLI.
10+
- fix: Preserves stack trace in database query exceptions.
11+
- fix: Fixes crash in update queries for models without fields or when id column is specified.
12+
- fix: Fixes import issue causing WASM incompatibility in client.
13+
- fix: Re-enables support for models named "Record".
14+
- fix: Fixes issue where implicit relations could be dropped during update database operations.
15+
- fix: Fixes issue where implicit relations were not preserved during serialization roundtrips.
16+
- fix: Adds support for non-nullable `Set` in models.
17+
- fix(EXPERIMENTAL): Includes Uri path in diagnostic events.
18+
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
19+
120
## 2.4.0
221

322
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.

SERVERPOD_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.0
1+
2.5.0

examples/auth_example/auth_example_client/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ environment:
88
sdk: '>=3.3.0 <4.0.0'
99

1010
dependencies:
11-
serverpod_client: 2.4.0
12-
serverpod_auth_client: 2.4.0
11+
serverpod_client: 2.5.0
12+
serverpod_auth_client: 2.5.0
1313

1414
dependency_overrides:
1515
serverpod_client:

examples/auth_example/auth_example_flutter/pubspec.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ environment:
2727
dependencies:
2828
flutter:
2929
sdk: flutter
30-
serverpod_flutter: 2.4.0
31-
serverpod_auth_email_flutter: 2.4.0
32-
serverpod_auth_shared_flutter: 2.4.0
33-
serverpod_auth_google_flutter: 2.4.0
34-
serverpod_auth_apple_flutter: 2.4.0
30+
serverpod_flutter: 2.5.0
31+
serverpod_auth_email_flutter: 2.5.0
32+
serverpod_auth_shared_flutter: 2.5.0
33+
serverpod_auth_google_flutter: 2.5.0
34+
serverpod_auth_apple_flutter: 2.5.0
3535
auth_example_client:
3636
path: ../auth_example_client
3737

examples/auth_example/auth_example_server/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ environment:
1111

1212
dependencies:
1313
mailer: ^6.0.1
14-
serverpod: 2.4.0
15-
serverpod_auth_server: 2.4.0
14+
serverpod: 2.5.0
15+
serverpod_auth_server: 2.5.0
1616

1717
dev_dependencies:
1818
lints: '>=3.0.0 <6.0.0'

examples/chat/chat_client/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ environment:
88
sdk: '>=3.3.0 <4.0.0'
99

1010
dependencies:
11-
serverpod_client: 2.4.0
12-
serverpod_auth_client: 2.4.0
13-
serverpod_chat_client: 2.4.0
11+
serverpod_client: 2.5.0
12+
serverpod_auth_client: 2.5.0
13+
serverpod_chat_client: 2.5.0
1414

1515
dependency_overrides:
1616
serverpod_client:

examples/chat/chat_flutter/pubspec.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ dependencies:
2828
flutter:
2929
sdk: flutter
3030
made_with_serverpod: ^1.0.0
31-
serverpod_auth_email_flutter: 2.4.0
32-
serverpod_auth_shared_flutter: 2.4.0
33-
serverpod_chat_flutter: 2.4.0
34-
serverpod_client: 2.4.0
35-
serverpod_flutter: 2.4.0
31+
serverpod_auth_email_flutter: 2.5.0
32+
serverpod_auth_shared_flutter: 2.5.0
33+
serverpod_chat_flutter: 2.5.0
34+
serverpod_client: 2.5.0
35+
serverpod_flutter: 2.5.0
3636
chat_client:
3737
path: ../chat_client
3838

examples/chat/chat_server/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ environment:
88
sdk: '>=3.3.0 <4.0.0'
99

1010
dependencies:
11-
serverpod: 2.4.0
12-
serverpod_auth_server: 2.4.0
13-
serverpod_chat_server: 2.4.0
11+
serverpod: 2.5.0
12+
serverpod_auth_server: 2.5.0
13+
serverpod_chat_server: 2.5.0
1414

1515
dev_dependencies:
1616
lints: '>=3.0.0 <6.0.0'

integrations/serverpod_cloud_storage_gcp/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 2.5.0
2+
- feat: Enables translations for SignInWithEmailDialog.
3+
- feat: Adds support for `Record` type in Streaming methods.
4+
- feat: Adds support for `Record` type in models.
5+
- feat: Adds support for defining a default value for `Enum` models.
6+
- feat(EXPERIMENTAL): Adds support for attaching custom data to diagnostic events.
7+
- fix: Always drains request bodies to prevent unexpected closed connections in the client.
8+
- fix: Prevents generated model file naming conflicts with framework-generated files.
9+
- fix: Fixes crash when validating Serverpod package version in CLI.
10+
- fix: Preserves stack trace in database query exceptions.
11+
- fix: Fixes crash in update queries for models without fields or when id column is specified.
12+
- fix: Fixes import issue causing WASM incompatibility in client.
13+
- fix: Re-enables support for models named "Record".
14+
- fix: Fixes issue where implicit relations could be dropped during update database operations.
15+
- fix: Fixes issue where implicit relations were not preserved during serialization roundtrips.
16+
- fix: Adds support for non-nullable `Set` in models.
17+
- fix(EXPERIMENTAL): Includes Uri path in diagnostic events.
18+
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
19+
120
## 2.4.0
221

322
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.

integrations/serverpod_cloud_storage_gcp/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
name: serverpod_cloud_storage_gcp
55
description: Serverpod integration for Google Cloud Storage
6-
version: 2.4.0
6+
version: 2.5.0
77
repository: https://github.com/serverpod/serverpod
88
homepage: https://serverpod.dev
99
issue_tracker: https://github.com/serverpod/serverpod/issues
@@ -13,7 +13,7 @@ environment:
1313

1414

1515
dependencies:
16-
serverpod: 2.4.0
16+
serverpod: 2.5.0
1717
amazon_cognito_identity_dart_2: ^3.0.0
1818
http: '>=1.0.0 <2.0.0'
1919
built_collection: ^5.1.1

integrations/serverpod_cloud_storage_s3/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 2.5.0
2+
- feat: Enables translations for SignInWithEmailDialog.
3+
- feat: Adds support for `Record` type in Streaming methods.
4+
- feat: Adds support for `Record` type in models.
5+
- feat: Adds support for defining a default value for `Enum` models.
6+
- feat(EXPERIMENTAL): Adds support for attaching custom data to diagnostic events.
7+
- fix: Always drains request bodies to prevent unexpected closed connections in the client.
8+
- fix: Prevents generated model file naming conflicts with framework-generated files.
9+
- fix: Fixes crash when validating Serverpod package version in CLI.
10+
- fix: Preserves stack trace in database query exceptions.
11+
- fix: Fixes crash in update queries for models without fields or when id column is specified.
12+
- fix: Fixes import issue causing WASM incompatibility in client.
13+
- fix: Re-enables support for models named "Record".
14+
- fix: Fixes issue where implicit relations could be dropped during update database operations.
15+
- fix: Fixes issue where implicit relations were not preserved during serialization roundtrips.
16+
- fix: Adds support for non-nullable `Set` in models.
17+
- fix(EXPERIMENTAL): Includes Uri path in diagnostic events.
18+
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
19+
120
## 2.4.0
221

322
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.

integrations/serverpod_cloud_storage_s3/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
name: serverpod_cloud_storage_s3
55
description: Serverpod integration for S3 cloud storage
6-
version: 2.4.0
6+
version: 2.5.0
77
repository: https://github.com/serverpod/serverpod
88
homepage: https://serverpod.dev
99
issue_tracker: https://github.com/serverpod/serverpod/issues
@@ -12,7 +12,7 @@ environment:
1212
sdk: '>=3.3.0 <4.0.0'
1313

1414
dependencies:
15-
serverpod: 2.4.0
15+
serverpod: 2.5.0
1616
amazon_cognito_identity_dart_2: ^3.0.0
1717
http: '>=1.0.0 <2.0.0'
1818
built_collection: ^5.1.1

modules/serverpod_auth/serverpod_auth_apple_flutter/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 2.5.0
2+
- feat: Enables translations for SignInWithEmailDialog.
3+
- feat: Adds support for `Record` type in Streaming methods.
4+
- feat: Adds support for `Record` type in models.
5+
- feat: Adds support for defining a default value for `Enum` models.
6+
- feat(EXPERIMENTAL): Adds support for attaching custom data to diagnostic events.
7+
- fix: Always drains request bodies to prevent unexpected closed connections in the client.
8+
- fix: Prevents generated model file naming conflicts with framework-generated files.
9+
- fix: Fixes crash when validating Serverpod package version in CLI.
10+
- fix: Preserves stack trace in database query exceptions.
11+
- fix: Fixes crash in update queries for models without fields or when id column is specified.
12+
- fix: Fixes import issue causing WASM incompatibility in client.
13+
- fix: Re-enables support for models named "Record".
14+
- fix: Fixes issue where implicit relations could be dropped during update database operations.
15+
- fix: Fixes issue where implicit relations were not preserved during serialization roundtrips.
16+
- fix: Adds support for non-nullable `Set` in models.
17+
- fix(EXPERIMENTAL): Includes Uri path in diagnostic events.
18+
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
19+
120
## 2.4.0
221

322
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.

modules/serverpod_auth/serverpod_auth_apple_flutter/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
name: serverpod_auth_apple_flutter
55
description: Sign in with Apple for the Serverpod auth module.
6-
version: 2.4.0
6+
version: 2.5.0
77
repository: https://github.com/serverpod/serverpod
88
homepage: https://serverpod.dev
99
issue_tracker: https://github.com/serverpod/serverpod/issues
@@ -16,14 +16,14 @@ dependencies:
1616
flutter:
1717
sdk: flutter
1818
material_design_icons_flutter: ">=6.0.0 < 8.0.0"
19-
serverpod_auth_client: 2.4.0
20-
serverpod_auth_shared_flutter: 2.4.0
19+
serverpod_auth_client: 2.5.0
20+
serverpod_auth_shared_flutter: 2.5.0
2121
sign_in_with_apple: '>=5.0.0 <7.0.0'
2222

2323
dev_dependencies:
2424
flutter_test:
2525
sdk: flutter
26-
serverpod_lints: 2.4.0
26+
serverpod_lints: 2.5.0
2727

2828
dependency_overrides:
2929
serverpod_auth_client:

modules/serverpod_auth/serverpod_auth_client/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 2.5.0
2+
- feat: Enables translations for SignInWithEmailDialog.
3+
- feat: Adds support for `Record` type in Streaming methods.
4+
- feat: Adds support for `Record` type in models.
5+
- feat: Adds support for defining a default value for `Enum` models.
6+
- feat(EXPERIMENTAL): Adds support for attaching custom data to diagnostic events.
7+
- fix: Always drains request bodies to prevent unexpected closed connections in the client.
8+
- fix: Prevents generated model file naming conflicts with framework-generated files.
9+
- fix: Fixes crash when validating Serverpod package version in CLI.
10+
- fix: Preserves stack trace in database query exceptions.
11+
- fix: Fixes crash in update queries for models without fields or when id column is specified.
12+
- fix: Fixes import issue causing WASM incompatibility in client.
13+
- fix: Re-enables support for models named "Record".
14+
- fix: Fixes issue where implicit relations could be dropped during update database operations.
15+
- fix: Fixes issue where implicit relations were not preserved during serialization roundtrips.
16+
- fix: Adds support for non-nullable `Set` in models.
17+
- fix(EXPERIMENTAL): Includes Uri path in diagnostic events.
18+
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
19+
120
## 2.4.0
221

322
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.

modules/serverpod_auth/serverpod_auth_client/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
name: serverpod_auth_client
55
description: Serverpod authentication client.
6-
version: 2.4.0
6+
version: 2.5.0
77
repository: https://github.com/serverpod/serverpod
88
homepage: https://serverpod.dev
99
issue_tracker: https://github.com/serverpod/serverpod/issues
@@ -12,7 +12,7 @@ environment:
1212
sdk: '>=3.3.0 <4.0.0'
1313
dependencies:
1414
lints: '>=3.0.0 <6.0.0'
15-
serverpod_client: 2.4.0
15+
serverpod_client: 2.5.0
1616

1717
dependency_overrides:
1818
serverpod_client:

modules/serverpod_auth/serverpod_auth_email_flutter/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 2.5.0
2+
- feat: Enables translations for SignInWithEmailDialog.
3+
- feat: Adds support for `Record` type in Streaming methods.
4+
- feat: Adds support for `Record` type in models.
5+
- feat: Adds support for defining a default value for `Enum` models.
6+
- feat(EXPERIMENTAL): Adds support for attaching custom data to diagnostic events.
7+
- fix: Always drains request bodies to prevent unexpected closed connections in the client.
8+
- fix: Prevents generated model file naming conflicts with framework-generated files.
9+
- fix: Fixes crash when validating Serverpod package version in CLI.
10+
- fix: Preserves stack trace in database query exceptions.
11+
- fix: Fixes crash in update queries for models without fields or when id column is specified.
12+
- fix: Fixes import issue causing WASM incompatibility in client.
13+
- fix: Re-enables support for models named "Record".
14+
- fix: Fixes issue where implicit relations could be dropped during update database operations.
15+
- fix: Fixes issue where implicit relations were not preserved during serialization roundtrips.
16+
- fix: Adds support for non-nullable `Set` in models.
17+
- fix(EXPERIMENTAL): Includes Uri path in diagnostic events.
18+
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
19+
120
## 2.4.0
221

322
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.

modules/serverpod_auth/serverpod_auth_email_flutter/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
name: serverpod_auth_email_flutter
55
description: Sign in with email for the Serverpod auth module.
6-
version: 2.4.0
6+
version: 2.5.0
77
repository: https://github.com/serverpod/serverpod
88

99
environment:
@@ -14,13 +14,13 @@ dependencies:
1414
flutter:
1515
sdk: flutter
1616
email_validator: '>=2.1.17 <4.0.0'
17-
serverpod_auth_client: 2.4.0
18-
serverpod_auth_shared_flutter: 2.4.0
17+
serverpod_auth_client: 2.5.0
18+
serverpod_auth_shared_flutter: 2.5.0
1919

2020
dev_dependencies:
2121
flutter_test:
2222
sdk: flutter
23-
serverpod_lints: 2.4.0
23+
serverpod_lints: 2.5.0
2424

2525
dependency_overrides:
2626
serverpod_auth_client:

modules/serverpod_auth/serverpod_auth_firebase_flutter/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 2.5.0
2+
- feat: Enables translations for SignInWithEmailDialog.
3+
- feat: Adds support for `Record` type in Streaming methods.
4+
- feat: Adds support for `Record` type in models.
5+
- feat: Adds support for defining a default value for `Enum` models.
6+
- feat(EXPERIMENTAL): Adds support for attaching custom data to diagnostic events.
7+
- fix: Always drains request bodies to prevent unexpected closed connections in the client.
8+
- fix: Prevents generated model file naming conflicts with framework-generated files.
9+
- fix: Fixes crash when validating Serverpod package version in CLI.
10+
- fix: Preserves stack trace in database query exceptions.
11+
- fix: Fixes crash in update queries for models without fields or when id column is specified.
12+
- fix: Fixes import issue causing WASM incompatibility in client.
13+
- fix: Re-enables support for models named "Record".
14+
- fix: Fixes issue where implicit relations could be dropped during update database operations.
15+
- fix: Fixes issue where implicit relations were not preserved during serialization roundtrips.
16+
- fix: Adds support for non-nullable `Set` in models.
17+
- fix(EXPERIMENTAL): Includes Uri path in diagnostic events.
18+
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
19+
120
## 2.4.0
221

322
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.

modules/serverpod_auth/serverpod_auth_firebase_flutter/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
name: serverpod_auth_firebase_flutter
55
description: Sign in with Firebase for the Serverpod auth module.
6-
version: 2.4.0
6+
version: 2.5.0
77
repository: https://github.com/serverpod/serverpod
88
homepage: https://serverpod.dev
99
issue_tracker: https://github.com/serverpod/serverpod/issues
@@ -17,13 +17,13 @@ dependencies:
1717
flutter:
1818
sdk: flutter
1919
material_design_icons_flutter: ">=6.0.0 <8.0.0"
20-
serverpod_auth_client: 2.4.0
21-
serverpod_auth_shared_flutter: 2.4.0
20+
serverpod_auth_client: 2.5.0
21+
serverpod_auth_shared_flutter: 2.5.0
2222

2323
dev_dependencies:
2424
flutter_test:
2525
sdk: flutter
26-
serverpod_lints: 2.4.0
26+
serverpod_lints: 2.5.0
2727

2828
dependency_overrides:
2929
serverpod_auth_client:

0 commit comments

Comments
 (0)