Skip to content

Commit

Permalink
Merge commit '0d4e696b8dd4484e5574f36d675692e1fd4015b5'
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Wilms committed Jan 23, 2025
2 parents 8dd5c72 + 0d4e696 commit 98b41e8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v2.0.0-beta.44 - 2025-01-23
- Fix SimpleDataSource (Python)

## v2.0.0-beta.43 - 2025-01-22
- Follow Apollo3zehn.PackageManagement changes

Expand Down
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# use "dotnet/sdk" to get the compiler and "ASPNETCORE_URLS" to compensate for the now missing env variable
# use "dotnet/sdk" to get the compiler for extensions
FROM mcr.microsoft.com/dotnet/sdk:9.0
WORKDIR /app
COPY app .

USER app

# Create ~/.local/share so that it is definitely owned by
# the app user and Nuget packages can be restore to the
# ~.local/share/Nuget folder. Also there might be the need
# for extensions to write to this folder.
RUN mkdir -p /home/app/.local/share

ENTRYPOINT ["./Nexus"]
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def get_catalog_registrations(self, path: str) -> Awaitable[List[CatalogRegistra
pass

@abstractmethod
def get_catalog(self, catalog_id: str) -> Awaitable[ResourceCatalog]:
def enrich_catalog(self, catalog: ResourceCatalog) -> Awaitable[ResourceCatalog]:
pass

async def get_time_range(self, catalog_id: str) -> Tuple[datetime, datetime]:
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.0.0",
"suffix": "beta.43"
"suffix": "beta.44"
}

0 comments on commit 98b41e8

Please sign in to comment.