Skip to content

Commit

Permalink
Bump version from 1.1.0 -> 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TheByronHimes committed Feb 12, 2024
1 parent 0ee8fd7 commit f7506d8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .pyproject_generation/pyproject_custom.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ars"
version = "1.1.0"
version = "1.1.1"
description = "Access Request Service"
dependencies = [
"ghga-event-schemas~=3.0.0",
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ We recommend using the provided Docker container.

A pre-build version is available at [docker hub](https://hub.docker.com/repository/docker/ghga/access-request-service):
```bash
docker pull ghga/access-request-service:1.1.0
docker pull ghga/access-request-service:1.1.1
```

Or you can build the container yourself from the [`./Dockerfile`](./Dockerfile):
```bash
# Execute in the repo's root dir:
docker build -t ghga/access-request-service:1.1.0 .
docker build -t ghga/access-request-service:1.1.1 .
```

For production-ready deployment, we recommend using Kubernetes, however,
for simple use cases, you could execute the service using docker
on a single server:
```bash
# The entrypoint is preconfigured:
docker run -p 8080:8080 ghga/access-request-service:1.1.0 --help
docker run -p 8080:8080 ghga/access-request-service:1.1.1 --help
```

If you prefer not to use containers, you may install the service from source:
Expand Down Expand Up @@ -199,7 +199,7 @@ The service requires the following configuration parameters:

- **Items** *(string)*

- **`auth_check_claims`** *(object)*: A dict of all GHGA internal claims that shall be verified. Default: `{"id": null, "name": null, "email": null, "iat": null, "exp": null}`.
- **`auth_check_claims`** *(object)*: A dict of all GHGA internal claims that shall be verified. Default: `{"name": null, "email": null, "iat": null, "exp": null}`.

- **`auth_map_claims`** *(object)*: A mapping of claims to attributes in the GHGA auth context. Can contain additional properties. Default: `{}`.

Expand Down
1 change: 0 additions & 1 deletion config_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,6 @@
},
"auth_check_claims": {
"default": {
"id": null,
"name": null,
"email": null,
"iat": null,
Expand Down
1 change: 0 additions & 1 deletion example_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ auth_check_claims:
email: null
exp: null
iat: null
id: null
name: null
auth_key: '{}'
auth_map_claims: {}
Expand Down
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ components:
info:
description: A service managing access requests for the GHGA Data Portal
title: Access Request Service
version: 1.1.0
version: 1.1.1
openapi: 3.1.0
paths:
/access-requests:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Intended Audience :: Developers",
]
name = "ars"
version = "1.1.0"
version = "1.1.1"
description = "Access Request Service"
dependencies = [
"ghga-event-schemas~=3.0.0",
Expand Down

0 comments on commit f7506d8

Please sign in to comment.