Skip to content

Version bump #58

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 29 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,33 @@ All notable changes to this project will be documented in this file.
<!-- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -->

## [0.3.0] - 2023-06-26
## [0.6.0] - 2023-07-13

### Added

- Added `deploy` command to deploy all gateway components in a single command
- Added `--http-methods` flag to `add-route` command to specify http methods
- A profile can now be specified via the `--profile` flag or the `SCW_PROFILE` environment variable. This allows to use a different profile than the default one configured in the Scaleway CLI.

## [0.3.1] - 2023-06-27
### Changed

- Improved logging, and added a `--debug` flag to the CLI to enable debug logs during command execution.
- Raised Kong default log-level to `warn` to reduce the amount of logs generated by the gateway.
- Improved documentation
- Improved error handling and better feedback for users when an error occurs.
- Added JWT and Cors information to the `route ls` command.

### Fixed

- Fixed gateway manager failing after deploying due to token refresh desync
- Missing client validation leading to errors when using the CLI with an invalid configuration.
- Deletion of the gateway would not clean-up all resources when some were missing.

## [0.5.0] - 2023-07-11

### Added

- Documentation is now available on [readthedocs](https://serverless-gateway.readthedocs.io/en/latest/).
- Added utilties to manage custom domains for your gateway. Please refer to the [custom domain documentation](https://serverless-gateway.readthedocs.io/en/latest/domains.html) for more information on usage.
- Kong statsd dashboard will now be automatically imported to your Cockpit when using the `deploy` command.
- Improved CLI experience by adding some more progress feedback.

## [0.4.0] - 2023-07-03

Expand All @@ -28,11 +43,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Grouped CLI commands thematically. The gateway infastructure management is now split from the gateway configuration via different CLI command group.

## [0.5.0] - 2023-07-11
## [0.3.1] - 2023-06-27

### Fixed

- Fixed gateway manager failing after deploying due to token refresh desync

## [0.3.0] - 2023-06-26

### Added

- Documentation is now available on [readthedocs](https://serverless-gateway.readthedocs.io/en/latest/).
- Added utilties to manage custom domains for your gateway. Please refer to the [custom domain documentation](https://serverless-gateway.readthedocs.io/en/latest/domains.html) for more information on usage.
- Kong statsd dashboard will now be automatically imported to your Cockpit when using the `deploy` command.
- Improved CLI experience by adding some more progress feedback.
- Added `deploy` command to deploy all gateway components in a single command
- Added `--http-methods` flag to `add-route` command to specify http methods
2 changes: 1 addition & 1 deletion cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "scw-gateway"
version = "0.5.0"
version = "0.6.0"
description = "CLI to deploy and manage a self-hosted Kong gateway on Scaleway Serverless Ecosystem"
authors = ["Simon Shillaker <sshillaker@scaleway.com>"]
readme = "README.md"
Expand Down