Skip to content

Commit 82ee3f8

Browse files
author
serverpod_cloud
committed
chore(release): 357c91e02849729dfb5a1a0f48ab545f7493feac
1 parent 3b02332 commit 82ee3f8

5 files changed

Lines changed: 20 additions & 4 deletions

File tree

ground_control_client/CHANGELOG.md

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

3+
## [0.7.0] - 2025-05-19
4+
35
## [0.6.0] - 2025-05-06
46

57
### 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.6.0
2+
version: 0.7.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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11

22
# Changelog
33

4+
## [0.7.0] - 2025-05-19
5+
6+
### Changed
7+
8+
- **Configurable GC API timeout** - The connection timeout for the Ground Control API is now configurable via the `scloud` command and the `SERVERPOD_CLOUD_CONNECTION_TIMEOUT` environment variable, with a default of 60 seconds.
9+
- **Improved exception handling** - Introduced `FailureException` for consistent exception handling across `scloud`, simplifying error message output and exception translations.
10+
- **Updated command output** - The output of `project`, `deploy`, and `launch` commands has been revised to more closely resemble the style of the `serverpod` command.
11+
- **Updated cli_tools dependency** - Updated the `cli_tools` dependency to version 0.5.0, replacing the local config library with the new config library in `cli_tools`.
12+
13+
### Fixed
14+
15+
- **Password string matching in E2E tests** - Fixed an issue where long lines in password creation/change output were not correctly matched in E2E tests due to line wrapping.
16+
- **Global options not applied to logger** - Fixed a bug where global options such as `--skip-confirmation` flag had no effect on the logger.
17+
418
## [0.6.0] - 2025-05-06
519

620
### 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.6.0';
5+
const String _cliVersionString = '0.7.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.6.0
2+
version: 0.7.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
@@ -25,7 +25,7 @@ dependencies:
2525
pool: ^1.5.1
2626
pub_semver: ^2.1.0
2727
pubspec_parse: ^1.5.0
28-
ground_control_client: ^0.6.0
28+
ground_control_client: ^0.7.0
2929
rfc_6901: ^0.2.0
3030
yaml_codec: ^1.0.0
3131
yaml: ^3.1.0

0 commit comments

Comments
 (0)