Skip to content

Commit 77cd707

Browse files
author
serverpod_cloud
committed
chore(release): 599eea2475d00852898e6c25f69380e318121bbe
1 parent 517c57e commit 77cd707

5 files changed

Lines changed: 50 additions & 4 deletions

File tree

ground_control_client/CHANGELOG.md

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

3+
## [0.16.0] - 2025-11-13
4+
5+
### Added
6+
7+
- **Auth flow trigger** - Automatically trigger the authentication flow when a user tries to use a command that requires authentication but isn't logged in.
8+
- **`--show-files` flag** - Introduce a new `--show-files` flag to the `scloud deploy` command to print the file tree that will be uploaded.
9+
10+
### Changed
11+
12+
- **`--before` and `--after` flags** - Rename the `--before` flag to `--until` and the `--after` flag to `--since` for the `scloud log` command.
13+
- **`--connection-timeout` flag** - Rename the global `--connection-timeout` flag to `--timeout`. The auth flag `--timeout` is renamed to `--time-limit`.
14+
- **`--skip-confirmation` flag** - Rename the global `--skip-confirmation` flag to `--yes`.
15+
- **`deployment` command** - Move the `scloud status deploy` command to a new `scloud deployment show` command.
16+
- **`--scloud-dir` flag** - Rename the global `--scloud-dir` flag to `--config-dir`.
17+
- **`domain` subcommands** - Rename the `add` subcommand to `attach` and the `remove` subcommand to `detach` for the `scloud domain` command.
18+
- **`env` command** - Rename the `scloud env` command to `scloud variable`.
19+
- **`db user` commands** - Move the `create user` and `reset-password` commands under the `user` subcommand of `db`, like `scloud db user create`
20+
- **Project link documentation** - Clarify the purpose of the `link` command in the help text.
21+
22+
### Fixed
23+
24+
- **Global token flag** - Make the `--token` flag visible for end users.
25+
326
## [0.15.0] - 2025-11-10
427

528
### 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.15.0
2+
version: 0.16.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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11

22
# Changelog
33

4+
## [0.16.0] - 2025-11-13
5+
6+
### Added
7+
8+
- **Auth flow trigger** - Automatically trigger the authentication flow when a user tries to use a command that requires authentication but isn't logged in.
9+
- **`--show-files` flag** - Introduce a new `--show-files` flag to the `scloud deploy` command to print the file tree that will be uploaded.
10+
11+
### Changed
12+
13+
- **`--before` and `--after` flags** - Rename the `--before` flag to `--until` and the `--after` flag to `--since` for the `scloud log` command.
14+
- **`--connection-timeout` flag** - Rename the global `--connection-timeout` flag to `--timeout`. The auth flag `--timeout` is renamed to `--time-limit`.
15+
- **`--skip-confirmation` flag** - Rename the global `--skip-confirmation` flag to `--yes`.
16+
- **`deployment` command** - Move the `scloud status deploy` command to a new `scloud deployment show` command.
17+
- **`--scloud-dir` flag** - Rename the global `--scloud-dir` flag to `--config-dir`.
18+
- **`domain` subcommands** - Rename the `add` subcommand to `attach` and the `remove` subcommand to `detach` for the `scloud domain` command.
19+
- **`env` command** - Rename the `scloud env` command to `scloud variable`.
20+
- **`db user` commands** - Move the `create user` and `reset-password` commands under the `user` subcommand of `db`, like `scloud db user create`
21+
- **Project link documentation** - Clarify the purpose of the `link` command in the help text.
22+
23+
### Fixed
24+
25+
- **Global token flag** - Make the `--token` flag visible for end users.
26+
427
## [0.15.0] - 2025-11-10
528

629
### 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.15.0';
5+
const String _cliVersionString = '0.16.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.15.0
2+
version: 0.16.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.15.0
29+
ground_control_client: ^0.16.0
3030
rfc_6901: ^0.2.0
3131
yaml_codec: ^1.0.0
3232
yaml: ^3.1.0

0 commit comments

Comments
 (0)