Skip to content
Snippets Groups Projects
Commit 24f300b5 authored by Martin Weise's avatar Martin Weise
Browse files

Master

parent 46650814
No related branches found
No related tags found
4 merge requests!356Dev,!350Dev,!348Resolve "Bug prevents volume computation when data length column in Metadata DB is null",!346Master
Showing
with 148 additions and 150 deletions
...@@ -2,6 +2,17 @@ ...@@ -2,6 +2,17 @@
author: Martin Weise author: Martin Weise
--- ---
## v1.5.1 (2024-11-07)
[:simple-gitlab: GitLab Release](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/tags/v1.5.1)
### What's Changed
#### Fixes
* Bug where the schema could not be created manually
in [#461](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/issues/461).
## v1.5.0 (2024-11-06) ## v1.5.0 (2024-11-06)
[:simple-gitlab: GitLab Release](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/tags/v1.5.0) [:simple-gitlab: GitLab Release](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/tags/v1.5.0)
......
...@@ -14,7 +14,7 @@ author: Martin Weise ...@@ -14,7 +14,7 @@ author: Martin Weise
![Maintainability Rating](./images/maintainability.svg) ![Maintainability Rating](./images/maintainability.svg)
![Security Rating](./images/security.svg) ![Security Rating](./images/security.svg)
Documentation for version: [v1.5.0](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/releases). Documentation for version: [v1.5.1](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/releases).
DBRepo is a repository for data in databases that are used from the beginning until the end of a research DBRepo is a repository for data in databases that are used from the beginning until the end of a research
project supporting data evolution, -citation and -versioning. It implements the query store of the project supporting data evolution, -citation and -versioning. It implements the query store of the
......
...@@ -13,7 +13,7 @@ helm upgrade --install dbrepo \ ...@@ -13,7 +13,7 @@ helm upgrade --install dbrepo \
-n dbrepo \ -n dbrepo \
"oci://registry.datalab.tuwien.ac.at/dbrepo/helm/dbrepo" \ "oci://registry.datalab.tuwien.ac.at/dbrepo/helm/dbrepo" \
--values ./values.yaml \ --values ./values.yaml \
--version "1.5.0" \ --version "1.5.1" \
--create-namespace \ --create-namespace \
--cleanup-on-fail --cleanup-on-fail
``` ```
......
...@@ -4,8 +4,8 @@ variables: ...@@ -4,8 +4,8 @@ variables:
TESTCONTAINERS_RYUK_DISABLED: "false" TESTCONTAINERS_RYUK_DISABLED: "false"
PYTHON_VERSION: "3.11" PYTHON_VERSION: "3.11"
DOC_VERSION: "1.5" DOC_VERSION: "1.5"
APP_VERSION: "1.5.0" APP_VERSION: "1.5.1"
CHART_VERSION: "1.5.0" CHART_VERSION: "1.5.1"
CACHE_FALLBACK_KEY: ${CI_DEFAULT_BRANCH} CACHE_FALLBACK_KEY: ${CI_DEFAULT_BRANCH}
# This will supress any download for dependencies and plugins or upload messages which would clutter the console log. # This will supress any download for dependencies and plugins or upload messages which would clutter the console log.
# `showDateTime` will show the passed time in milliseconds. You need to specify `--batch-mode` to make this work. # `showDateTime` will show the passed time in milliseconds. You need to specify `--batch-mode` to make this work.
...@@ -439,7 +439,7 @@ release-docs: ...@@ -439,7 +439,7 @@ release-docs:
- "scp -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa final.tar.gz $CI_DOC_USER@$CI_DOC_IP:final.tar.gz" - "scp -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa final.tar.gz $CI_DOC_USER@$CI_DOC_IP:final.tar.gz"
- "scp -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa versions.json $CI_DOC_USER@$CI_DOC_IP:/system/user/ifs/infrastructures/public_html/dbrepo/versions.json" - "scp -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa versions.json $CI_DOC_USER@$CI_DOC_IP:/system/user/ifs/infrastructures/public_html/dbrepo/versions.json"
- "scp -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa .docs/redirect.html $CI_DOC_USER@$CI_DOC_IP:/system/user/ifs/infrastructures/public_html/dbrepo/index.html" - "scp -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa .docs/redirect.html $CI_DOC_USER@$CI_DOC_IP:/system/user/ifs/infrastructures/public_html/dbrepo/index.html"
- 'ssh -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa $CI_DOC_USER@$CI_DOC_IP "rm -rf /system/user/ifs/infrastructures/public_html/dbrepo/${DOC_VERSION}; tar xzf ./final.tar.gz; rm -f ./final.tar.gz; cp -r ./final/* /system/user/ifs/infrastructures/public_html/dbrepo/${DOC_VERSION}; rm -rf ./final"' - 'ssh -oHostKeyAlgorithms=+ssh-rsa -oPubkeyAcceptedAlgorithms=+ssh-rsa $CI_DOC_USER@$CI_DOC_IP "rm -rf /system/user/ifs/infrastructures/public_html/dbrepo/${DOC_VERSION}; tar xzf ./final.tar.gz; rm -f ./final.tar.gz; cp -r ./final /system/user/ifs/infrastructures/public_html/dbrepo/${DOC_VERSION}; rm -rf ./final"'
release-libs: release-libs:
stage: release stage: release
......
.PHONY: all .PHONY: all
APP_VERSION ?= 1.5.0 APP_VERSION ?= 1.5.1
CHART_VERSION ?= 1.5.0 CHART_VERSION ?= 1.5.1
REPOSITORY_URL ?= registry.datalab.tuwien.ac.at/dbrepo REPOSITORY_URL ?= registry.datalab.tuwien.ac.at/dbrepo
.PHONY: all .PHONY: all
......
...@@ -14,7 +14,7 @@ If you have [Docker](https://docs.docker.com/engine/install/) already installed ...@@ -14,7 +14,7 @@ If you have [Docker](https://docs.docker.com/engine/install/) already installed
with: with:
```bash ```bash
curl -sSL https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/raw/release-1.5.0/install.sh | bash curl -sSL https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/raw/release-1.5/install.sh | bash
``` ```
## Documentation ## Documentation
......
...@@ -21,7 +21,7 @@ numpy = "*" ...@@ -21,7 +21,7 @@ numpy = "*"
pandas = "*" pandas = "*"
minio = "*" minio = "*"
pydantic = "*" pydantic = "*"
dbrepo = {path = "./lib/dbrepo-1.5.0.tar.gz"} dbrepo = {path = "./lib/dbrepo-1.5.1.tar.gz"}
opensearch-py = "*" opensearch-py = "*"
[dev-packages] [dev-packages]
......
This diff is collapsed.
File added
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-data-service</artifactId> <artifactId>dbrepo-data-service</artifactId>
<name>dbrepo-data-service</name> <name>dbrepo-data-service</name>
<version>1.5.0</version> <version>1.5.1</version>
<description>Service that manages the data</description> <description>Service that manages the data</description>
......
...@@ -6,12 +6,12 @@ ...@@ -6,12 +6,12 @@
<parent> <parent>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-data-service</artifactId> <artifactId>dbrepo-data-service</artifactId>
<version>1.5.0</version> <version>1.5.1</version>
</parent> </parent>
<artifactId>dbrepo-data-service-querystore</artifactId> <artifactId>dbrepo-data-service-querystore</artifactId>
<name>dbrepo-data-service-querystore</name> <name>dbrepo-data-service-querystore</name>
<version>1.5.0</version> <version>1.5.1</version>
<dependencies/> <dependencies/>
......
...@@ -6,12 +6,12 @@ ...@@ -6,12 +6,12 @@
<parent> <parent>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-data-service</artifactId> <artifactId>dbrepo-data-service</artifactId>
<version>1.5.0</version> <version>1.5.1</version>
</parent> </parent>
<artifactId>report</artifactId> <artifactId>report</artifactId>
<name>dbrepo-data-service-report</name> <name>dbrepo-data-service-report</name>
<version>1.5.0</version> <version>1.5.1</version>
<description> <description>
This module is only intended for the pipeline coverage report. See the detailed report in the This module is only intended for the pipeline coverage report. See the detailed report in the
respective modules respective modules
......
...@@ -6,18 +6,18 @@ ...@@ -6,18 +6,18 @@
<parent> <parent>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-data-service</artifactId> <artifactId>dbrepo-data-service</artifactId>
<version>1.5.0</version> <version>1.5.1</version>
</parent> </parent>
<artifactId>rest-service</artifactId> <artifactId>rest-service</artifactId>
<name>dbrepo-data-service-rest-service</name> <name>dbrepo-data-service-rest-service</name>
<version>1.5.0</version> <version>1.5.1</version>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>services</artifactId> <artifactId>services</artifactId>
<version>1.5.0</version> <version>1.5.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
......
...@@ -6,18 +6,18 @@ ...@@ -6,18 +6,18 @@
<parent> <parent>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-data-service</artifactId> <artifactId>dbrepo-data-service</artifactId>
<version>1.5.0</version> <version>1.5.1</version>
</parent> </parent>
<artifactId>services</artifactId> <artifactId>services</artifactId>
<name>dbrepo-data-service-services</name> <name>dbrepo-data-service-services</name>
<version>1.5.0</version> <version>1.5.1</version>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-data-service-querystore</artifactId> <artifactId>dbrepo-data-service-querystore</artifactId>
<version>1.5.0</version> <version>1.5.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
......
...@@ -6,18 +6,18 @@ ...@@ -6,18 +6,18 @@
<parent> <parent>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-metadata-service</artifactId> <artifactId>dbrepo-metadata-service</artifactId>
<version>1.5.0</version> <version>1.5.1</version>
</parent> </parent>
<artifactId>dbrepo-metadata-service-api</artifactId> <artifactId>dbrepo-metadata-service-api</artifactId>
<name>dbrepo-metadata-service-api</name> <name>dbrepo-metadata-service-api</name>
<version>1.5.0</version> <version>1.5.1</version>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-metadata-service-entities</artifactId> <artifactId>dbrepo-metadata-service-entities</artifactId>
<version>1.5.0</version> <version>1.5.1</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
</dependencies> </dependencies>
......
...@@ -6,12 +6,12 @@ ...@@ -6,12 +6,12 @@
<parent> <parent>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-metadata-service</artifactId> <artifactId>dbrepo-metadata-service</artifactId>
<version>1.5.0</version> <version>1.5.1</version>
</parent> </parent>
<artifactId>dbrepo-metadata-service-entities</artifactId> <artifactId>dbrepo-metadata-service-entities</artifactId>
<name>dbrepo-metadata-service-entity</name> <name>dbrepo-metadata-service-entity</name>
<version>1.5.0</version> <version>1.5.1</version>
<dependencies/> <dependencies/>
......
...@@ -6,12 +6,12 @@ ...@@ -6,12 +6,12 @@
<parent> <parent>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-metadata-service</artifactId> <artifactId>dbrepo-metadata-service</artifactId>
<version>1.5.0</version> <version>1.5.1</version>
</parent> </parent>
<artifactId>dbrepo-metadata-service-oai</artifactId> <artifactId>dbrepo-metadata-service-oai</artifactId>
<name>dbrepo-metadata-service-oai</name> <name>dbrepo-metadata-service-oai</name>
<version>1.5.0</version> <version>1.5.1</version>
<dependencies/> <dependencies/>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<artifactId>dbrepo-metadata-service</artifactId> <artifactId>dbrepo-metadata-service</artifactId>
<name>dbrepo-metadata-service</name> <name>dbrepo-metadata-service</name>
<version>1.5.0</version> <version>1.5.1</version>
<description>Service that manages the metadata</description> <description>Service that manages the metadata</description>
......
...@@ -6,12 +6,12 @@ ...@@ -6,12 +6,12 @@
<parent> <parent>
<artifactId>dbrepo-metadata-service</artifactId> <artifactId>dbrepo-metadata-service</artifactId>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<version>1.5.0</version> <version>1.5.1</version>
</parent> </parent>
<artifactId>dbrepo-metadata-service-report</artifactId> <artifactId>dbrepo-metadata-service-report</artifactId>
<name>dbrepo-metadata-service-report</name> <name>dbrepo-metadata-service-report</name>
<version>1.5.0</version> <version>1.5.1</version>
<dependencies> <dependencies>
<dependency> <dependency>
......
...@@ -6,12 +6,12 @@ ...@@ -6,12 +6,12 @@
<parent> <parent>
<artifactId>dbrepo-metadata-service</artifactId> <artifactId>dbrepo-metadata-service</artifactId>
<groupId>at.tuwien</groupId> <groupId>at.tuwien</groupId>
<version>1.5.0</version> <version>1.5.1</version>
</parent> </parent>
<artifactId>dbrepo-metadata-service-repositories</artifactId> <artifactId>dbrepo-metadata-service-repositories</artifactId>
<name>dbrepo-metadata-service-repositories</name> <name>dbrepo-metadata-service-repositories</name>
<version>1.5.0</version> <version>1.5.1</version>
<dependencies> <dependencies>
<dependency> <dependency>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment