Skip to content

Commit

Permalink
Update libs (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
dragomirp authored Feb 6, 2025
1 parent e246d60 commit e9c9912
Show file tree
Hide file tree
Showing 6 changed files with 514 additions and 430 deletions.
5 changes: 2 additions & 3 deletions lib/charms/data_platform_libs/v0/data_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def _on_topic_requested(self, event: TopicRequestedEvent):

# Increment this PATCH version before using `charmcraft publish-lib` or reset
# to 0 if you are raising the major API version
LIBPATCH = 40
LIBPATCH = 41

PYDEPS = ["ops>=2.0.0"]

Expand Down Expand Up @@ -609,7 +609,7 @@ def get_group(self, group: str) -> Optional[SecretGroup]:
class CachedSecret:
"""Locally cache a secret.
The data structure is precisely re-using/simulating as in the actual Secret Storage
The data structure is precisely reusing/simulating as in the actual Secret Storage
"""

KNOWN_MODEL_ERRORS = [MODEL_ERRORS["no_label_and_uri"], MODEL_ERRORS["owner_no_refresh"]]
Expand Down Expand Up @@ -2363,7 +2363,6 @@ def _update_relation_data(self, relation: Relation, data: Dict[str, str]) -> Non
def _delete_relation_data(self, relation: Relation, fields: List[str]) -> None:
"""Delete data available (directily or indirectly -- i.e. secrets) from the relation for owner/this_app."""
if self.secret_fields and self.deleted_label:

_, normal_fields = self._process_secret_fields(
relation,
self.secret_fields,
Expand Down
6 changes: 3 additions & 3 deletions lib/charms/data_platform_libs/v0/data_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class MergedDataBag(ProviderDataBag, RequirerDataBag):

# Increment this PATCH version before using `charmcraft publish-lib` or reset
# to 0 if you are raising the major API version
LIBPATCH = 4
LIBPATCH = 5

PYDEPS = ["ops>=2.0.0", "pydantic>=1.10,<2"]

Expand Down Expand Up @@ -209,7 +209,7 @@ def validate_params(cls: Type[T]):
"""

def decorator(
f: Callable[[CharmBase, ActionEvent, Union[T, ValidationError]], G]
f: Callable[[CharmBase, ActionEvent, Union[T, ValidationError]], G],
) -> Callable[[CharmBase, ActionEvent], G]:
@wraps(f)
def event_wrapper(self: CharmBase, event: ActionEvent):
Expand Down Expand Up @@ -287,7 +287,7 @@ def decorator(
Optional[Union[UnitModel, ValidationError]],
],
G,
]
],
) -> Callable[[CharmBase, RelationEvent], G]:
@wraps(f)
def event_wrapper(self: CharmBase, event: RelationEvent):
Expand Down
Loading

0 comments on commit e9c9912

Please sign in to comment.