From 6bddfc072253f08d1a13c2c5169b01da94b361b8 Mon Sep 17 00:00:00 2001 From: omribarouch Date: Tue, 23 Jul 2024 17:33:20 +0300 Subject: [PATCH] Initialize missing _port_app_config --- CHANGELOG.md | 7 +++++++ port_ocean/core/handlers/port_app_config/base.py | 1 + pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2a5848dde..b9ee3d4473 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +## 0.9.5 (2024-07-23) + +### Bug Fixes + +- Initialize missing _port_app_config + + ## 0.9.4 (2024-07-09) ### Bug Fixes diff --git a/port_ocean/core/handlers/port_app_config/base.py b/port_ocean/core/handlers/port_app_config/base.py index adf6b2da14..f68810e7ef 100644 --- a/port_ocean/core/handlers/port_app_config/base.py +++ b/port_ocean/core/handlers/port_app_config/base.py @@ -16,6 +16,7 @@ class PortAppConfigCache: _retrieval_time: float def __init__(self, cache_ttl: int): + self._port_app_config = None self._cache_ttl = cache_ttl @property diff --git a/pyproject.toml b/pyproject.toml index 52c7f2082c..ac091480ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "port-ocean" -version = "0.9.4" +version = "0.9.5" description = "Port Ocean is a CLI tool for managing your Port projects." readme = "README.md" homepage = "https://app.getport.io"