Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug | Linter failing when making commits in Ocean due to type checks #1131

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

<!-- towncrier release notes start -->

## 0.12.9 (2024-11-08)


### Bug Fixes

- Fixed failing lint in ocean test handler (0.12.9)


## 0.12.9 (2024-11-07)


Expand Down
2 changes: 1 addition & 1 deletion port_ocean/tests/log/test_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down