From 05b6dbdedc135d5b691af9db19c157cf87efc543 Mon Sep 17 00:00:00 2001 From: lordsarcastic Date: Fri, 8 Nov 2024 14:15:13 +0100 Subject: [PATCH 1/3] Fix: Fixed failing lint in ocean test handler --- port_ocean/tests/log/test_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port_ocean/tests/log/test_handlers.py b/port_ocean/tests/log/test_handlers.py index 99ba9b90de..a036e4d251 100644 --- a/port_ocean/tests/log/test_handlers.py +++ b/port_ocean/tests/log/test_handlers.py @@ -50,7 +50,7 @@ def test_serialize_record_exc_info_group_exception() -> None: def assert_extra(extra: dict[str, Any]) -> str: exc_info = extra.get("exc_info", None) - assert type(exc_info) is str + assert isinstance(exc_info, str) return exc_info From a364f51a12748963bf61134dd8090d3983819381 Mon Sep 17 00:00:00 2001 From: lordsarcastic Date: Fri, 8 Nov 2024 17:56:11 +0100 Subject: [PATCH 2/3] Chore: Created version changelog --- changelog/0.12.9.bugfix.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog/0.12.9.bugfix.md diff --git a/changelog/0.12.9.bugfix.md b/changelog/0.12.9.bugfix.md new file mode 100644 index 0000000000..54025c72a6 --- /dev/null +++ b/changelog/0.12.9.bugfix.md @@ -0,0 +1 @@ +Fixed failing lint in ocean test handler From bc62209c86020739a0653ec728f4b7ecbe080883 Mon Sep 17 00:00:00 2001 From: lordsarcastic Date: Fri, 8 Nov 2024 17:56:55 +0100 Subject: [PATCH 3/3] Chore: Bumped ocean version --- CHANGELOG.md | 8 ++++++++ changelog/0.12.9.bugfix.md | 1 - pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) delete mode 100644 changelog/0.12.9.bugfix.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 427df2960e..d2fc168ae7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +## 0.12.9 (2024-11-08) + + +### Bug Fixes + +- Fixed failing lint in ocean test handler (0.12.9) + + ## 0.12.9 (2024-11-07) diff --git a/changelog/0.12.9.bugfix.md b/changelog/0.12.9.bugfix.md deleted file mode 100644 index 54025c72a6..0000000000 --- a/changelog/0.12.9.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed failing lint in ocean test handler diff --git a/pyproject.toml b/pyproject.toml index f6ce2f7d70..8de7d7439a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "port-ocean" -version = "0.12.8" +version = "0.12.9" description = "Port Ocean is a CLI tool for managing your Port projects." readme = "README.md" homepage = "https://app.getport.io"