diff --git a/docs/changelogs/0.7.4.rst b/docs/changelogs/0.7.4.rst new file mode 100644 index 00000000..262f763a --- /dev/null +++ b/docs/changelogs/0.7.4.rst @@ -0,0 +1,24 @@ +Version 0.7.4 (2024-10-30) +========================== + +Added +::::: + +* DX: Helm chart for Kubernetes is now published and a minimal documentation is available. + + +Changed +::::::: + +* Proxy: inbound message is now recorded "as-is" in the message history, without any transformation. This means that + host and user agent headers that will be sent to the remote server are not recorded anymore, to avoid confusion + between filtered and unfiltered content. + + +Updated +::::::: + +* bump pre-commit from 3.8.0 to 4.0.1 +* bump pytest-benchmark from 4.0.0 to 5.0.1 +* bump pytest-cov from 5.0.0 to 6.0.0 +* bump slack-sdk from 3.33.2 to 3.33.3 diff --git a/docs/changelogs/index.rst b/docs/changelogs/index.rst index cd581847..6c9dab73 100644 --- a/docs/changelogs/index.rst +++ b/docs/changelogs/index.rst @@ -5,6 +5,8 @@ Changelogs & History :maxdepth: 1 unreleased + 0.7.4 + 0.7.3 0.7.2 0.7.1 0.7.0 diff --git a/docs/changelogs/unreleased.rst b/docs/changelogs/unreleased.rst index 56a777d6..86e986aa 100644 --- a/docs/changelogs/unreleased.rst +++ b/docs/changelogs/unreleased.rst @@ -1,14 +1,2 @@ Unreleased ========== - -Added -::::: - -* DX: Helm chart for Kubernetes is now published and a minimal documentation is available. - -Changed -::::::: - -* Proxy: inbound message is now recorded "as-is" in the message history, without any transformation. This means that - host and user agent headers that will be sent to the remote server are not recorded anymore, to avoid confusion - between filtered and unfiltered content. diff --git a/docs/contribute/release/sources.rst b/docs/contribute/release/sources.rst index c17be603..3c68967e 100644 --- a/docs/contribute/release/sources.rst +++ b/docs/contribute/release/sources.rst @@ -91,3 +91,9 @@ Tag and push .. code-block:: shell git push origin `git rev-parse --abbrev-ref HEAD` --tags + + +Eventually forward-port the new version +::::::::::::::::::::::::::::::::::::::: + +If a newer version line is available, checkout and merge the new version into it. diff --git a/harp/__init__.py b/harp/__init__.py index 24294608..6c06018a 100644 --- a/harp/__init__.py +++ b/harp/__init__.py @@ -51,7 +51,7 @@ def _parse_version(version: str, /, *, default=None) -> Version: # last release __title__ = "Core" -__version__ = "0.7.2" +__version__ = "0.7.4" __hardcoded_version__ = __version__ __revision__ = __version__ # we can't commit the not yet known revision diff --git a/misc/helm/charts/harp-proxy/Chart.yaml b/misc/helm/charts/harp-proxy/Chart.yaml index d42b867e..fe1a7217 100644 --- a/misc/helm/charts/harp-proxy/Chart.yaml +++ b/misc/helm/charts/harp-proxy/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: harp-proxy description: HTTP API Runtime Proxy type: application -version: "0.7.1" -appVersion: "0.7.3" +version: "0.7.2" +appVersion: "0.7.4" dependencies: - name: postgresql diff --git a/pyproject.toml b/pyproject.toml index bf161d24..07888fe0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "harp-proxy" -version = "0.7.3" +version = "0.7.4" description = "Harp is an API Runtime Proxy – A toolkit for Fast, Reliable and Observable external APIs" authors = ["Romain Dorgueil "] readme = "README.rst"