From 5b0fd6b138373a3fc1632660df308ec0c1c54ebd Mon Sep 17 00:00:00 2001 From: Reda Noureddine Date: Fri, 7 Apr 2023 12:55:42 +0200 Subject: [PATCH 1/3] chore: update changlog & upgrade version --- CHANGELOG.md | 8 +++++++- pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cecaefc..4988e7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,15 @@ All notable changes to this project will be documented in this file. -## [0.4.0] - 2023-02-27 +## [0.0.4] - 2023-02-27 ### Fixed - Fixed a bug which prevented the use of multiple modules - Fixed env vars were being overwritten by config file + +## [1.0.0] - 2023-03-07 + +### Feature + +- Add support for self hosted serverless gateway \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 9d19d41..a5265c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scw-serverless" -version = "0.0.4" +version = "1.0.0" description = "Framework for writing serverless APIs in Python, using Scaleway functions and containers." authors = ["Scaleway Serverless Team "] readme = "README.md" From e861495d1d1e678e168fad20efc277da50c9465d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 7 Apr 2023 10:59:59 +0000 Subject: [PATCH 2/3] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4988e7f..f15a1f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,4 +16,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Feature -- Add support for self hosted serverless gateway \ No newline at end of file +- Add support for self hosted serverless gateway From f69ed100254a12d78e5fb1192f1c9a9236c0e2e5 Mon Sep 17 00:00:00 2001 From: Reda Noureddine Date: Tue, 11 Apr 2023 11:16:29 +0200 Subject: [PATCH 3/3] ci: update command to get gateway host --- .github/workflows/integration-gateway.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-gateway.yml b/.github/workflows/integration-gateway.yml index a531308..2998abe 100644 --- a/.github/workflows/integration-gateway.yml +++ b/.github/workflows/integration-gateway.yml @@ -72,7 +72,7 @@ jobs: - name: Run integration tests run: | pushd $GATEWAY_CHECKOUT_DIR - export GATEWAY_HOST=$(make get-gateway-endpoint -s) + export GATEWAY_HOST=$(make gateway-host -s) popd poetry run pytest tests/integrations/gateway -n $(nproc --all) env: