Skip to content

Commit c1ab1dc

Browse files
chore: update charm libraries (#348)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b342a8b commit c1ab1dc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/charms/data_platform_libs/v0/data_interfaces.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def _on_topic_requested(self, event: TopicRequestedEvent):
331331

332332
# Increment this PATCH version before using `charmcraft publish-lib` or reset
333333
# to 0 if you are raising the major API version
334-
LIBPATCH = 47
334+
LIBPATCH = 48
335335

336336
PYDEPS = ["ops>=2.0.0"]
337337

@@ -3760,6 +3760,10 @@ def _on_relation_changed_event(self, event: RelationChangedEvent) -> None:
37603760
event.relation, app=event.app, unit=event.unit
37613761
)
37623762

3763+
def _on_secret_changed_event(self, event: SecretChangedEvent) -> None:
3764+
"""Event emitted when the relation data has changed."""
3765+
pass
3766+
37633767

37643768
class OpenSearchProvides(OpenSearchProvidesData, OpenSearchProvidesEventHandlers):
37653769
"""Provider-side of the OpenSearch relation."""

0 commit comments

Comments
 (0)