diff --git a/docs/changelogs/0.7.1.rst b/docs/changelogs/0.7.1.rst new file mode 100644 index 00000000..fa3aed6d --- /dev/null +++ b/docs/changelogs/0.7.1.rst @@ -0,0 +1,7 @@ +Version 0.7.1 (2024-09-17) +========================== + +Fixed +::::: + +* Erroneous frontend compiled assets path change reverted so that docker builds are not broken. diff --git a/docs/changelogs/index.rst b/docs/changelogs/index.rst index 220b19e1..c36c1538 100644 --- a/docs/changelogs/index.rst +++ b/docs/changelogs/index.rst @@ -5,6 +5,7 @@ Changelogs & History :maxdepth: 1 unreleased + 0.7.1 0.7.0 0.6.1 0.6.0 diff --git a/harp/__init__.py b/harp/__init__.py index e3bb46a2..b328a930 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.0" +__version__ = "0.7.1" __hardcoded_version__ = __version__ __revision__ = __version__ # we can't commit the not yet known revision diff --git a/harp_apps/dashboard/controllers/__init__.py b/harp_apps/dashboard/controllers/__init__.py index 9692c69d..a8ae6a78 100644 --- a/harp_apps/dashboard/controllers/__init__.py +++ b/harp_apps/dashboard/controllers/__init__.py @@ -21,7 +21,9 @@ # Static directories to look for pre-built assets, in order of priority. STATIC_BUILD_PATHS = [ + os.path.realpath(os.path.join(ROOT_DIR, "harp_apps/dashboard/frontend/dist")), os.path.realpath(os.path.join(ROOT_DIR, "harp_apps/dashboard/web")), + "/opt/harp/public", ] diff --git a/misc/helm/charts/harp-proxy/Chart.yaml b/misc/helm/charts/harp-proxy/Chart.yaml index 52d4403d..fabca416 100644 --- a/misc/helm/charts/harp-proxy/Chart.yaml +++ b/misc/helm/charts/harp-proxy/Chart.yaml @@ -3,7 +3,7 @@ name: harp-proxy description: HTTP API Runtime Proxy type: application version: "0.7.0-alpha" -appVersion: "0.7.0" +appVersion: "0.7.1" dependencies: - name: postgresql diff --git a/pyproject.toml b/pyproject.toml index 3c97fdc5..c9ec47e9 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.0" +version = "0.7.1" description = "Harp is an API Runtime Proxy – A toolkit for Fast, Reliable and Observable external APIs" authors = ["Romain Dorgueil "] readme = "README.rst"