Skip to content

Commit 3a60aff

Browse files
authored
h11 patch (#109)
1 parent fa3501f commit 3a60aff

22 files changed

+749
-746
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.2
52+
rev: v0.11.7
5353
hooks:
5454
- id: ruff
5555
args: [--fix, --exit-non-zero-on-fix]

lock/requirements-dev.txt

Lines changed: 385 additions & 383 deletions
Large diffs are not rendered by default.

lock/requirements.txt

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

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:5.0.0
46+
docker pull ghga/download-controller-service:5.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:5.0.0 .
52+
docker build -t ghga/download-controller-service:5.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:5.0.0 --help
60+
docker run -p 8080:8080 ghga/download-controller-service:5.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: 5.0.0
209+
version: 5.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 = "5.0.0"
24+
version = "5.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:2.1.0
68+
docker pull ghga/encryption-key-store-service:2.1.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:2.1.0 .
74+
docker build -t ghga/encryption-key-store-service:2.1.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:2.1.0 --help
82+
docker run -p 8080:8080 ghga/encryption-key-store-service:2.1.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: 2.1.0
237+
version: 2.1.1
238238
openapi: 3.1.0
239239
paths:
240240
/health:

services/ekss/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "ekss"
9-
version = "2.1.0"
9+
version = "2.1.1"
1010
description = "Encryption Key Store Service - providing crypt4gh file secret extraction, storage and envelope generation"
1111
readme = "README.md"
1212
authors = [

services/fis/README.md

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

1616
A pre-built version is available at [docker hub](https://hub.docker.com/repository/docker/ghga/file-ingest-service):
1717
```bash
18-
docker pull ghga/file-ingest-service:7.0.0
18+
docker pull ghga/file-ingest-service:7.0.1
1919
```
2020

2121
Or you can build the container yourself from the [`./Dockerfile`](./Dockerfile):
2222
```bash
2323
# Execute in the repo's root dir:
24-
docker build -t ghga/file-ingest-service:7.0.0 .
24+
docker build -t ghga/file-ingest-service:7.0.1 .
2525
```
2626

2727
For production-ready deployment, we recommend using Kubernetes, however,
2828
for simple use cases, you could execute the service using docker
2929
on a single server:
3030
```bash
3131
# The entrypoint is preconfigured:
32-
docker run -p 8080:8080 ghga/file-ingest-service:7.0.0 --help
32+
docker run -p 8080:8080 ghga/file-ingest-service:7.0.1 --help
3333
```
3434

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

0 commit comments

Comments
 (0)