Skip to content

Commit 3d722d2

Browse files
authored
chore: Bumps version to 2.6.0 and updates CHANGELOG. (serverpod#3471)
1 parent 88c722c commit 3d722d2

File tree

72 files changed

+512
-148
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

+512
-148
lines changed

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.6.0
2+
- feat: Adds support for endpoint inheritance.
3+
- feat: Adds support for `@ignoreEndpoint` annotation for endpoint methods.
4+
- feat: Updates the starter template for new Serverpod projects.
5+
- fix: Removes unnecessary stack trace from platforms that do not support health checks.
6+
- fix: Fixes an issue where the `serverpod generate` command would fail in workspace setups.
7+
- fix: Silences error reporting for authentication rejections in legacy streaming endpoints.
8+
- feat(EXPERIMENTAL): Adds support for using `UuidValue` as the type for model `id` fields.
9+
10+
## 2.5.1
11+
- feat: Adds support for configuring database search path across all database connections.
12+
- fix: Limits version compatibility check to `serverpod` and `serverpod_client` packages.
13+
- fix: Fixes an issue where record parameters could only be named `record`.
14+
115
## 2.5.0
216
- feat: Enables translations for SignInWithEmailDialog.
317
- feat: Adds support for `Record` type in Streaming methods.
@@ -18,7 +32,6 @@
1832
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
1933

2034
## 2.4.0
21-
2235
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
2336
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
2437
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.

SERVERPOD_VERSION

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

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

integrations/serverpod_cloud_storage_gcp/CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.6.0
2+
- feat: Adds support for endpoint inheritance.
3+
- feat: Adds support for `@ignoreEndpoint` annotation for endpoint methods.
4+
- feat: Updates the starter template for new Serverpod projects.
5+
- fix: Removes unnecessary stack trace from platforms that do not support health checks.
6+
- fix: Fixes an issue where the `serverpod generate` command would fail in workspace setups.
7+
- fix: Silences error reporting for authentication rejections in legacy streaming endpoints.
8+
- feat(EXPERIMENTAL): Adds support for using `UuidValue` as the type for model `id` fields.
9+
10+
## 2.5.1
11+
- feat: Adds support for configuring database search path across all database connections.
12+
- fix: Limits version compatibility check to `serverpod` and `serverpod_client` packages.
13+
- fix: Fixes an issue where record parameters could only be named `record`.
14+
115
## 2.5.0
216
- feat: Enables translations for SignInWithEmailDialog.
317
- feat: Adds support for `Record` type in Streaming methods.
@@ -18,7 +32,6 @@
1832
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
1933

2034
## 2.4.0
21-
2235
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
2336
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
2437
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.

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.5.0
6+
version: 2.6.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.5.0
16+
serverpod: 2.6.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

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.6.0
2+
- feat: Adds support for endpoint inheritance.
3+
- feat: Adds support for `@ignoreEndpoint` annotation for endpoint methods.
4+
- feat: Updates the starter template for new Serverpod projects.
5+
- fix: Removes unnecessary stack trace from platforms that do not support health checks.
6+
- fix: Fixes an issue where the `serverpod generate` command would fail in workspace setups.
7+
- fix: Silences error reporting for authentication rejections in legacy streaming endpoints.
8+
- feat(EXPERIMENTAL): Adds support for using `UuidValue` as the type for model `id` fields.
9+
10+
## 2.5.1
11+
- feat: Adds support for configuring database search path across all database connections.
12+
- fix: Limits version compatibility check to `serverpod` and `serverpod_client` packages.
13+
- fix: Fixes an issue where record parameters could only be named `record`.
14+
115
## 2.5.0
216
- feat: Enables translations for SignInWithEmailDialog.
317
- feat: Adds support for `Record` type in Streaming methods.
@@ -18,7 +32,6 @@
1832
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
1933

2034
## 2.4.0
21-
2235
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
2336
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
2437
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.

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.5.0
6+
version: 2.6.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.5.0
15+
serverpod: 2.6.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

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.6.0
2+
- feat: Adds support for endpoint inheritance.
3+
- feat: Adds support for `@ignoreEndpoint` annotation for endpoint methods.
4+
- feat: Updates the starter template for new Serverpod projects.
5+
- fix: Removes unnecessary stack trace from platforms that do not support health checks.
6+
- fix: Fixes an issue where the `serverpod generate` command would fail in workspace setups.
7+
- fix: Silences error reporting for authentication rejections in legacy streaming endpoints.
8+
- feat(EXPERIMENTAL): Adds support for using `UuidValue` as the type for model `id` fields.
9+
10+
## 2.5.1
11+
- feat: Adds support for configuring database search path across all database connections.
12+
- fix: Limits version compatibility check to `serverpod` and `serverpod_client` packages.
13+
- fix: Fixes an issue where record parameters could only be named `record`.
14+
115
## 2.5.0
216
- feat: Enables translations for SignInWithEmailDialog.
317
- feat: Adds support for `Record` type in Streaming methods.
@@ -18,7 +32,6 @@
1832
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
1933

2034
## 2.4.0
21-
2235
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
2336
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
2437
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.

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.5.0
6+
version: 2.6.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.5.0
20-
serverpod_auth_shared_flutter: 2.5.0
19+
serverpod_auth_client: 2.6.0
20+
serverpod_auth_shared_flutter: 2.6.0
2121
sign_in_with_apple: '>=6.0.0 <8.0.0'
2222

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

2828
dependency_overrides:
2929
serverpod_auth_client:

modules/serverpod_auth/serverpod_auth_client/CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.6.0
2+
- feat: Adds support for endpoint inheritance.
3+
- feat: Adds support for `@ignoreEndpoint` annotation for endpoint methods.
4+
- feat: Updates the starter template for new Serverpod projects.
5+
- fix: Removes unnecessary stack trace from platforms that do not support health checks.
6+
- fix: Fixes an issue where the `serverpod generate` command would fail in workspace setups.
7+
- fix: Silences error reporting for authentication rejections in legacy streaming endpoints.
8+
- feat(EXPERIMENTAL): Adds support for using `UuidValue` as the type for model `id` fields.
9+
10+
## 2.5.1
11+
- feat: Adds support for configuring database search path across all database connections.
12+
- fix: Limits version compatibility check to `serverpod` and `serverpod_client` packages.
13+
- fix: Fixes an issue where record parameters could only be named `record`.
14+
115
## 2.5.0
216
- feat: Enables translations for SignInWithEmailDialog.
317
- feat: Adds support for `Record` type in Streaming methods.
@@ -18,7 +32,6 @@
1832
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
1933

2034
## 2.4.0
21-
2235
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
2336
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
2437
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.

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.5.0
6+
version: 2.6.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.5.0
15+
serverpod_client: 2.6.0
1616

1717
dependency_overrides:
1818
serverpod_client:

modules/serverpod_auth/serverpod_auth_email_flutter/CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.6.0
2+
- feat: Adds support for endpoint inheritance.
3+
- feat: Adds support for `@ignoreEndpoint` annotation for endpoint methods.
4+
- feat: Updates the starter template for new Serverpod projects.
5+
- fix: Removes unnecessary stack trace from platforms that do not support health checks.
6+
- fix: Fixes an issue where the `serverpod generate` command would fail in workspace setups.
7+
- fix: Silences error reporting for authentication rejections in legacy streaming endpoints.
8+
- feat(EXPERIMENTAL): Adds support for using `UuidValue` as the type for model `id` fields.
9+
10+
## 2.5.1
11+
- feat: Adds support for configuring database search path across all database connections.
12+
- fix: Limits version compatibility check to `serverpod` and `serverpod_client` packages.
13+
- fix: Fixes an issue where record parameters could only be named `record`.
14+
115
## 2.5.0
216
- feat: Enables translations for SignInWithEmailDialog.
317
- feat: Adds support for `Record` type in Streaming methods.
@@ -18,7 +32,6 @@
1832
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
1933

2034
## 2.4.0
21-
2235
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
2336
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
2437
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.

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.5.0
6+
version: 2.6.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.5.0
18-
serverpod_auth_shared_flutter: 2.5.0
17+
serverpod_auth_client: 2.6.0
18+
serverpod_auth_shared_flutter: 2.6.0
1919

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

2525
dependency_overrides:
2626
serverpod_auth_client:

modules/serverpod_auth/serverpod_auth_firebase_flutter/CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.6.0
2+
- feat: Adds support for endpoint inheritance.
3+
- feat: Adds support for `@ignoreEndpoint` annotation for endpoint methods.
4+
- feat: Updates the starter template for new Serverpod projects.
5+
- fix: Removes unnecessary stack trace from platforms that do not support health checks.
6+
- fix: Fixes an issue where the `serverpod generate` command would fail in workspace setups.
7+
- fix: Silences error reporting for authentication rejections in legacy streaming endpoints.
8+
- feat(EXPERIMENTAL): Adds support for using `UuidValue` as the type for model `id` fields.
9+
10+
## 2.5.1
11+
- feat: Adds support for configuring database search path across all database connections.
12+
- fix: Limits version compatibility check to `serverpod` and `serverpod_client` packages.
13+
- fix: Fixes an issue where record parameters could only be named `record`.
14+
115
## 2.5.0
216
- feat: Enables translations for SignInWithEmailDialog.
317
- feat: Adds support for `Record` type in Streaming methods.
@@ -18,7 +32,6 @@
1832
- fix(EXPERIMENTAL): Reports diagnostic event on exception during database start and health checks.
1933

2034
## 2.4.0
21-
2235
- feat: Adds support for configuring certificates for Serverpod API, Web, and Insights servers.
2336
- feat: Adds support for `Uri`, `BigInt`, and `Set` type in endpoints and models.
2437
- feat: Adds support for `Record` type in endpoint `Future` return and parameters.

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.5.0
6+
version: 2.6.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.5.0
21-
serverpod_auth_shared_flutter: 2.5.0
20+
serverpod_auth_client: 2.6.0
21+
serverpod_auth_shared_flutter: 2.6.0
2222

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

2828
dependency_overrides:
2929
serverpod_auth_client:

0 commit comments

Comments
 (0)