Skip to content

Commit d17218b

Browse files
author
serverpod_cloud
committed
chore(release): 6fe2f53e9f005d7002841244d17caf20571ad7dd
1 parent 313cd68 commit d17218b

5 files changed

Lines changed: 35 additions & 4 deletions

File tree

ground_control_client/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [0.26.0] - 2026-04-21
4+
5+
### Added
6+
7+
- **Dart SDK customization** - You can now specify a preferred Dart SDK version in `scloud.yaml` or via the `--dart-version` flag during deployment.
8+
- **New deployment warnings** - The CLI now warns you if you are deploying multiple instances while using a Serverpod version older than 3.3.0.
9+
- **Explicit plan selection** - Added a `--plan` option to `project create` and `launch` commands, allowing you to choose between starter and growth profiles.
10+
- **Expanded documentation** - Added several new guides covering installation, logs, database access, Redis, and secret management.
11+
- **Subscription model** - Adding new project plans that allow larger podlets and database sizes.
12+
13+
14+
### Changed
15+
16+
- **SDK auto-detection** - The CLI now automatically detects and saves your Dart version from `pubspec.yaml` or `.tool-versions` when linking or launching a project.
17+
318
## [0.25.0] - 2026-03-23
419

520
### Added

ground_control_client/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ground_control_client
2-
version: 0.25.0
2+
version: 0.26.0
33
description: A client library for the Serverpod Ground Control API. Used to manage Serverpod Cloud projects.
44
repository: https://github.com/serverpod/serverpod_cloud_clients
55
homepage: https://serverpod.dev

serverpod_cloud_cli/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11

22
# Changelog
33

4+
## [0.26.0] - 2026-04-21
5+
6+
### Added
7+
8+
- **Dart SDK customization** - You can now specify a preferred Dart SDK version in `scloud.yaml` or via the `--dart-version` flag during deployment.
9+
- **New deployment warnings** - The CLI now warns you if you are deploying multiple instances while using a Serverpod version older than 3.3.0.
10+
- **Explicit plan selection** - Added a `--plan` option to `project create` and `launch` commands, allowing you to choose between starter and growth profiles.
11+
- **Expanded documentation** - Added several new guides covering installation, logs, database access, Redis, and secret management.
12+
- **Subscription model** - Adding new project plans that allow larger podlets and database sizes.
13+
14+
15+
### Changed
16+
17+
- **SDK auto-detection** - The CLI now automatically detects and saves your Dart version from `pubspec.yaml` or `.tool-versions` when linking or launching a project.
18+
19+
420
## [0.25.0] - 2026-03-23
521

622
### Added

serverpod_cloud_cli/lib/util/scloud_version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'package:pub_semver/pub_semver.dart';
22

33
// Constant with the current version of the Serverpod Cloud CLI.
44
// This should be updated when a new version is released.
5-
const String _cliVersionString = '0.25.0';
5+
const String _cliVersionString = '0.26.0';
66

77
Version? _cliVersion;
88

serverpod_cloud_cli/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: serverpod_cloud_cli
2-
version: 0.25.0
2+
version: 0.26.0
33
description: A CLI tool from Serverpod used to deploy and manage Serverpod Cloud projects.
44
repository: https://github.com/serverpod/serverpod_cloud_clients
55
homepage: https://serverpod.dev
@@ -26,7 +26,7 @@ dependencies:
2626
pool: ^1.5.1
2727
pub_semver: ^2.1.0
2828
pubspec_parse: ^1.5.0
29-
ground_control_client: ^0.25.0
29+
ground_control_client: ^0.26.0
3030
rfc_6901: ^0.2.0
3131
yaml_codec: ^1.0.0
3232
yaml: ^3.1.0

0 commit comments

Comments
 (0)