Skip to content

Commit 80727b7

Browse files
authored
OTel gRPC fix (#111)
1 parent e255228 commit 80727b7

24 files changed

+780
-637
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ repos:
4949
- id: no-commit-to-branch
5050
args: [--branch, dev, --branch, int, --branch, main]
5151
- repo: https://github.com/astral-sh/ruff-pre-commit
52-
rev: v0.11.8
52+
rev: v0.11.10
5353
hooks:
5454
- id: ruff
5555
args: [--fix, --exit-non-zero-on-fix]

.pyproject_generation/pyproject_custom.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fsb"
3-
version = "1.0.0"
3+
version = "5.0.1"
44
description = "File Services Backend - monorepo housing file services"
55
dependencies = [
66
"typer >= 0.15",

lock/requirements-dev.txt

Lines changed: 399 additions & 329 deletions
Large diffs are not rendered by default.

lock/requirements.txt

Lines changed: 345 additions & 272 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fsb"
3-
version = "1.0.0"
3+
version = "5.0.1"
44
description = "File Services Backend - monorepo housing file services"
55
dependencies = [
66
"typer >= 0.15",

services/dcs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@ We recommend using the provided Docker container.
4343

4444
A pre-built version is available at [docker hub](https://hub.docker.com/repository/docker/ghga/download-controller-service):
4545
```bash
46-
docker pull ghga/download-controller-service:6.0.0
46+
docker pull ghga/download-controller-service:6.0.1
4747
```
4848

4949
Or you can build the container yourself from the [`./Dockerfile`](./Dockerfile):
5050
```bash
5151
# Execute in the repo's root dir:
52-
docker build -t ghga/download-controller-service:6.0.0 .
52+
docker build -t ghga/download-controller-service:6.0.1 .
5353
```
5454

5555
For production-ready deployment, we recommend using Kubernetes, however,
5656
for simple use cases, you could execute the service using docker
5757
on a single server:
5858
```bash
5959
# The entrypoint is preconfigured:
60-
docker run -p 8080:8080 ghga/download-controller-service:6.0.0 --help
60+
docker run -p 8080:8080 ghga/download-controller-service:6.0.1 --help
6161
```
6262

6363
If you prefer not to use containers, you may install the service from source:

services/dcs/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ info:
206206
\ Object Storage. \n\nThis is an implementation of the DRS standard from the Global\
207207
\ Alliance for Genomics and Health, please find more information at: https://github.com/ga4gh/data-repository-service-schemas"
208208
title: Download Controller Service
209-
version: 6.0.0
209+
version: 6.0.1
210210
openapi: 3.1.0
211211
paths:
212212
/health:

services/dcs/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121
"Intended Audience :: Developers",
2222
]
2323
name = "dcs"
24-
version = "6.0.0"
24+
version = "6.0.1"
2525
description = "Download Controller Service - a GA4GH DRS-compliant service for delivering files from S3 encrypted according to the GA4GH Crypt4GH standard."
2626

2727

services/ekss/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,21 +65,21 @@ We recommend using the provided Docker container.
6565

6666
A pre-built version is available at [docker hub](https://hub.docker.com/repository/docker/ghga/encryption-key-store-service):
6767
```bash
68-
docker pull ghga/encryption-key-store-service:3.0.0
68+
docker pull ghga/encryption-key-store-service:3.0.1
6969
```
7070

7171
Or you can build the container yourself from the [`./Dockerfile`](./Dockerfile):
7272
```bash
7373
# Execute in the repo's root dir:
74-
docker build -t ghga/encryption-key-store-service:3.0.0 .
74+
docker build -t ghga/encryption-key-store-service:3.0.1 .
7575
```
7676

7777
For production-ready deployment, we recommend using Kubernetes, however,
7878
for simple use cases, you could execute the service using docker
7979
on a single server:
8080
```bash
8181
# The entrypoint is preconfigured:
82-
docker run -p 8080:8080 ghga/encryption-key-store-service:3.0.0 --help
82+
docker run -p 8080:8080 ghga/encryption-key-store-service:3.0.1 --help
8383
```
8484

8585
If you prefer not to use containers, you may install the service from source:

services/ekss/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ info:
234234
description: A service managing storage and retrieval of symmetric keys in a HashiCorp
235235
Vault.
236236
title: Encryption Key Store Service
237-
version: 3.0.0
237+
version: 3.0.1
238238
openapi: 3.1.0
239239
paths:
240240
/health:

0 commit comments

Comments
 (0)