Skip to content

Commit a6a3881

Browse files
authored
chore: Bumps version to 2.4.0 and updates CHANGELOG. (serverpod#3274)
1 parent b639ba0 commit a6a3881

File tree

72 files changed

+764
-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

+764
-120
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 2.4.0
2+
3+
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
4+
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
5+
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.
6+
- feat: Adds support for `List` and `Set` containers in Streaming methods.
7+
- feat: Adds option to disable caching for static content matching a regexp path in the web server.
8+
- feat: Gracefully shuts down server on `SIGTERM` signal.
9+
- feat: Allows configuration of server id via the `SERVERPOD_SERVER_ID` environmental variable.
10+
- feat(EXPERIMENTAL): Adds support for exception event hooks to enable reporting diagnostic events to monitoring tools.
11+
- feat(EXPERIMENTAL): Adds API for submitting diagnostic events from user code.
12+
- fix: Fixes issue where filtering in insights didn’t work as expected with the provided Dockerfile.
13+
- fix: Fixes an issue so that `name` is now a supported value in Enum models.
14+
- fix: Removes debug prints from generated client code.
15+
- fix: Fixes issue where server-only relation fields didn’t enforce the relation as optional.
16+
- fix: Fixes crash when generator processes model many(`List`) relations without generics.
17+
- fix: Harmonizes local and global cache miss behavior to ensure proper cache miss handling.
18+
- fix: Returns a generic error message for internal server errors in web server routes.
19+
- fix: Adds doc comments to all generated model methods.
20+
- fix: Fixes issue with relative imports generating backwards slashes on Windows.
21+
- fix: Fixes crash in `create-migration` when server folder is renamed.
22+
- fix: Fixes issue where table renaming caused migrations that couldn’t be applied.
23+
124
## 2.3.1
225
- fix: Resolved an issue where database exceptions failed to generate informative `toString` messages.
326
- fix: Improves performance of HTTP request body parsing for both endpoints and the web server.

SERVERPOD_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.1
1+
2.4.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.3.1
12-
serverpod_auth_client: 2.3.1
11+
serverpod_client: 2.4.0
12+
serverpod_auth_client: 2.4.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.3.1
31-
serverpod_auth_email_flutter: 2.3.1
32-
serverpod_auth_shared_flutter: 2.3.1
33-
serverpod_auth_google_flutter: 2.3.1
34-
serverpod_auth_apple_flutter: 2.3.1
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
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.3.1
15-
serverpod_auth_server: 2.3.1
14+
serverpod: 2.4.0
15+
serverpod_auth_server: 2.4.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.3.1
12-
serverpod_auth_client: 2.3.1
13-
serverpod_chat_client: 2.3.1
11+
serverpod_client: 2.4.0
12+
serverpod_auth_client: 2.4.0
13+
serverpod_chat_client: 2.4.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.3.1
32-
serverpod_auth_shared_flutter: 2.3.1
33-
serverpod_chat_flutter: 2.3.1
34-
serverpod_client: 2.3.1
35-
serverpod_flutter: 2.3.1
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
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.3.1
12-
serverpod_auth_server: 2.3.1
13-
serverpod_chat_server: 2.3.1
11+
serverpod: 2.4.0
12+
serverpod_auth_server: 2.4.0
13+
serverpod_chat_server: 2.4.0
1414

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

integrations/serverpod_cloud_storage_gcp/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 2.4.0
2+
3+
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
4+
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
5+
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.
6+
- feat: Adds support for `List` and `Set` containers in Streaming methods.
7+
- feat: Adds option to disable caching for static content matching a regexp path in the web server.
8+
- feat: Gracefully shuts down server on `SIGTERM` signal.
9+
- feat: Allows configuration of server id via the `SERVERPOD_SERVER_ID` environmental variable.
10+
- feat(EXPERIMENTAL): Adds support for exception event hooks to enable reporting diagnostic events to monitoring tools.
11+
- feat(EXPERIMENTAL): Adds API for submitting diagnostic events from user code.
12+
- fix: Fixes issue where filtering in insights didn’t work as expected with the provided Dockerfile.
13+
- fix: Fixes an issue so that `name` is now a supported value in Enum models.
14+
- fix: Removes debug prints from generated client code.
15+
- fix: Fixes issue where server-only relation fields didn’t enforce the relation as optional.
16+
- fix: Fixes crash when generator processes model many(`List`) relations without generics.
17+
- fix: Harmonizes local and global cache miss behavior to ensure proper cache miss handling.
18+
- fix: Returns a generic error message for internal server errors in web server routes.
19+
- fix: Adds doc comments to all generated model methods.
20+
- fix: Fixes issue with relative imports generating backwards slashes on Windows.
21+
- fix: Fixes crash in `create-migration` when server folder is renamed.
22+
- fix: Fixes issue where table renaming caused migrations that couldn’t be applied.
23+
124
## 2.3.1
225
- fix: Resolved an issue where database exceptions failed to generate informative `toString` messages.
326
- fix: Improves performance of HTTP request body parsing for both endpoints and the web server.

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.3.1
6+
version: 2.4.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.3.1
16+
serverpod: 2.4.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

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 2.4.0
2+
3+
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
4+
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
5+
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.
6+
- feat: Adds support for `List` and `Set` containers in Streaming methods.
7+
- feat: Adds option to disable caching for static content matching a regexp path in the web server.
8+
- feat: Gracefully shuts down server on `SIGTERM` signal.
9+
- feat: Allows configuration of server id via the `SERVERPOD_SERVER_ID` environmental variable.
10+
- feat(EXPERIMENTAL): Adds support for exception event hooks to enable reporting diagnostic events to monitoring tools.
11+
- feat(EXPERIMENTAL): Adds API for submitting diagnostic events from user code.
12+
- fix: Fixes issue where filtering in insights didn’t work as expected with the provided Dockerfile.
13+
- fix: Fixes an issue so that `name` is now a supported value in Enum models.
14+
- fix: Removes debug prints from generated client code.
15+
- fix: Fixes issue where server-only relation fields didn’t enforce the relation as optional.
16+
- fix: Fixes crash when generator processes model many(`List`) relations without generics.
17+
- fix: Harmonizes local and global cache miss behavior to ensure proper cache miss handling.
18+
- fix: Returns a generic error message for internal server errors in web server routes.
19+
- fix: Adds doc comments to all generated model methods.
20+
- fix: Fixes issue with relative imports generating backwards slashes on Windows.
21+
- fix: Fixes crash in `create-migration` when server folder is renamed.
22+
- fix: Fixes issue where table renaming caused migrations that couldn’t be applied.
23+
124
## 2.3.1
225
- fix: Resolved an issue where database exceptions failed to generate informative `toString` messages.
326
- fix: Improves performance of HTTP request body parsing for both endpoints and the web server.

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.3.1
6+
version: 2.4.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.3.1
15+
serverpod: 2.4.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

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 2.4.0
2+
3+
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
4+
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
5+
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.
6+
- feat: Adds support for `List` and `Set` containers in Streaming methods.
7+
- feat: Adds option to disable caching for static content matching a regexp path in the web server.
8+
- feat: Gracefully shuts down server on `SIGTERM` signal.
9+
- feat: Allows configuration of server id via the `SERVERPOD_SERVER_ID` environmental variable.
10+
- feat(EXPERIMENTAL): Adds support for exception event hooks to enable reporting diagnostic events to monitoring tools.
11+
- feat(EXPERIMENTAL): Adds API for submitting diagnostic events from user code.
12+
- fix: Fixes issue where filtering in insights didn’t work as expected with the provided Dockerfile.
13+
- fix: Fixes an issue so that `name` is now a supported value in Enum models.
14+
- fix: Removes debug prints from generated client code.
15+
- fix: Fixes issue where server-only relation fields didn’t enforce the relation as optional.
16+
- fix: Fixes crash when generator processes model many(`List`) relations without generics.
17+
- fix: Harmonizes local and global cache miss behavior to ensure proper cache miss handling.
18+
- fix: Returns a generic error message for internal server errors in web server routes.
19+
- fix: Adds doc comments to all generated model methods.
20+
- fix: Fixes issue with relative imports generating backwards slashes on Windows.
21+
- fix: Fixes crash in `create-migration` when server folder is renamed.
22+
- fix: Fixes issue where table renaming caused migrations that couldn’t be applied.
23+
124
## 2.3.1
225
- fix: Resolved an issue where database exceptions failed to generate informative `toString` messages.
326
- fix: Improves performance of HTTP request body parsing for both endpoints and the web server.

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.3.1
6+
version: 2.4.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.3.1
20-
serverpod_auth_shared_flutter: 2.3.1
19+
serverpod_auth_client: 2.4.0
20+
serverpod_auth_shared_flutter: 2.4.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.3.1
26+
serverpod_lints: 2.4.0
2727

2828
dependency_overrides:
2929
serverpod_auth_client:

modules/serverpod_auth/serverpod_auth_client/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 2.4.0
2+
3+
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
4+
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
5+
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.
6+
- feat: Adds support for `List` and `Set` containers in Streaming methods.
7+
- feat: Adds option to disable caching for static content matching a regexp path in the web server.
8+
- feat: Gracefully shuts down server on `SIGTERM` signal.
9+
- feat: Allows configuration of server id via the `SERVERPOD_SERVER_ID` environmental variable.
10+
- feat(EXPERIMENTAL): Adds support for exception event hooks to enable reporting diagnostic events to monitoring tools.
11+
- feat(EXPERIMENTAL): Adds API for submitting diagnostic events from user code.
12+
- fix: Fixes issue where filtering in insights didn’t work as expected with the provided Dockerfile.
13+
- fix: Fixes an issue so that `name` is now a supported value in Enum models.
14+
- fix: Removes debug prints from generated client code.
15+
- fix: Fixes issue where server-only relation fields didn’t enforce the relation as optional.
16+
- fix: Fixes crash when generator processes model many(`List`) relations without generics.
17+
- fix: Harmonizes local and global cache miss behavior to ensure proper cache miss handling.
18+
- fix: Returns a generic error message for internal server errors in web server routes.
19+
- fix: Adds doc comments to all generated model methods.
20+
- fix: Fixes issue with relative imports generating backwards slashes on Windows.
21+
- fix: Fixes crash in `create-migration` when server folder is renamed.
22+
- fix: Fixes issue where table renaming caused migrations that couldn’t be applied.
23+
124
## 2.3.1
225
- fix: Resolved an issue where database exceptions failed to generate informative `toString` messages.
326
- fix: Improves performance of HTTP request body parsing for both endpoints and the web server.

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.3.1
6+
version: 2.4.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.3.1
15+
serverpod_client: 2.4.0
1616

1717
dependency_overrides:
1818
serverpod_client:

modules/serverpod_auth/serverpod_auth_email_flutter/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 2.4.0
2+
3+
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
4+
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
5+
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.
6+
- feat: Adds support for `List` and `Set` containers in Streaming methods.
7+
- feat: Adds option to disable caching for static content matching a regexp path in the web server.
8+
- feat: Gracefully shuts down server on `SIGTERM` signal.
9+
- feat: Allows configuration of server id via the `SERVERPOD_SERVER_ID` environmental variable.
10+
- feat(EXPERIMENTAL): Adds support for exception event hooks to enable reporting diagnostic events to monitoring tools.
11+
- feat(EXPERIMENTAL): Adds API for submitting diagnostic events from user code.
12+
- fix: Fixes issue where filtering in insights didn’t work as expected with the provided Dockerfile.
13+
- fix: Fixes an issue so that `name` is now a supported value in Enum models.
14+
- fix: Removes debug prints from generated client code.
15+
- fix: Fixes issue where server-only relation fields didn’t enforce the relation as optional.
16+
- fix: Fixes crash when generator processes model many(`List`) relations without generics.
17+
- fix: Harmonizes local and global cache miss behavior to ensure proper cache miss handling.
18+
- fix: Returns a generic error message for internal server errors in web server routes.
19+
- fix: Adds doc comments to all generated model methods.
20+
- fix: Fixes issue with relative imports generating backwards slashes on Windows.
21+
- fix: Fixes crash in `create-migration` when server folder is renamed.
22+
- fix: Fixes issue where table renaming caused migrations that couldn’t be applied.
23+
124
## 2.3.1
225
- fix: Resolved an issue where database exceptions failed to generate informative `toString` messages.
326
- fix: Improves performance of HTTP request body parsing for both endpoints and the web server.

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.3.1
6+
version: 2.4.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.3.1
18-
serverpod_auth_shared_flutter: 2.3.1
17+
serverpod_auth_client: 2.4.0
18+
serverpod_auth_shared_flutter: 2.4.0
1919

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

2525
dependency_overrides:
2626
serverpod_auth_client:

modules/serverpod_auth/serverpod_auth_firebase_flutter/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 2.4.0
2+
3+
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
4+
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
5+
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.
6+
- feat: Adds support for `List` and `Set` containers in Streaming methods.
7+
- feat: Adds option to disable caching for static content matching a regexp path in the web server.
8+
- feat: Gracefully shuts down server on `SIGTERM` signal.
9+
- feat: Allows configuration of server id via the `SERVERPOD_SERVER_ID` environmental variable.
10+
- feat(EXPERIMENTAL): Adds support for exception event hooks to enable reporting diagnostic events to monitoring tools.
11+
- feat(EXPERIMENTAL): Adds API for submitting diagnostic events from user code.
12+
- fix: Fixes issue where filtering in insights didn’t work as expected with the provided Dockerfile.
13+
- fix: Fixes an issue so that `name` is now a supported value in Enum models.
14+
- fix: Removes debug prints from generated client code.
15+
- fix: Fixes issue where server-only relation fields didn’t enforce the relation as optional.
16+
- fix: Fixes crash when generator processes model many(`List`) relations without generics.
17+
- fix: Harmonizes local and global cache miss behavior to ensure proper cache miss handling.
18+
- fix: Returns a generic error message for internal server errors in web server routes.
19+
- fix: Adds doc comments to all generated model methods.
20+
- fix: Fixes issue with relative imports generating backwards slashes on Windows.
21+
- fix: Fixes crash in `create-migration` when server folder is renamed.
22+
- fix: Fixes issue where table renaming caused migrations that couldn’t be applied.
23+
124
## 2.3.1
225
- fix: Resolved an issue where database exceptions failed to generate informative `toString` messages.
326
- fix: Improves performance of HTTP request body parsing for both endpoints and the web server.

0 commit comments

Comments
 (0)