Skip to content

Commit ddc5150

Browse files
author
Vincent Wilms
committed
Merge commit '4278f877cc4ab911d17d48cab1f870eab7c36c12'
2 parents cb4a846 + 4278f87 commit ddc5150

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v2.0.0-beta.50 - 2025-02-04
2+
- Add missing self paramter in IUpgradableDataSource
3+
14
## v2.0.0-beta.49 - 2025-02-04
25
- Strongly typed settings: Switch to instance method to upgrade settings, it is much less hassle
36

src/extensibility/python-extensibility/nexus_extensibility/_extensibility_data_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class IUpgradableDataSource(ABC):
204204
"""
205205

206206
@abstractmethod
207-
def upgrade_source_configuration(configuration: Any) -> Awaitable[Any]:
207+
def upgrade_source_configuration(self, configuration: Any) -> Awaitable[Any]:
208208
"""
209209
Upgrades the source configuration.
210210

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"version": "2.0.0",
3-
"suffix": "beta.49"
3+
"suffix": "beta.50"
44
}

0 commit comments

Comments
 (0)