Skip to content

Commit

Permalink
Bump version and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Jul 25, 2024
1 parent f387cc7 commit 23dfd9a
Show file tree
Hide file tree
Showing 7 changed files with 479 additions and 751 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ repos:
- id: no-commit-to-branch
args: [--branch, dev, --branch, int, --branch, main]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.1
rev: v0.5.4
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.1
rev: v1.11.0
hooks:
- id: mypy
args: [--no-warn-unused-ignores]
4 changes: 2 additions & 2 deletions .pyproject_generation/pyproject_custom.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[project]
name = "wps"
version = "2.0.3"
version = "2.0.4"
description = "Work Package Service"
dependencies = [
"ghga-event-schemas~=3.3.1",
"ghga-service-commons[api,auth,crypt]>=3.1.5",
"hexkit[akafka,mongodb]>=3.3.0",
"hexkit[akafka,mongodb]>=3.4.0",
"httpx>=0.27",
"typer>=0.12",
]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,21 @@ We recommend using the provided Docker container.

A pre-build version is available at [docker hub](https://hub.docker.com/repository/docker/ghga/work-package-service):
```bash
docker pull ghga/work-package-service:2.0.3
docker pull ghga/work-package-service:2.0.4
```

Or you can build the container yourself from the [`./Dockerfile`](./Dockerfile):
```bash
# Execute in the repo's root dir:
docker build -t ghga/work-package-service:2.0.3 .
docker build -t ghga/work-package-service:2.0.4 .
```

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/work-package-service:2.0.3 --help
docker run -p 8080:8080 ghga/work-package-service:2.0.4 --help
```

If you prefer not to use containers, you may install the service from source:
Expand Down
734 changes: 300 additions & 434 deletions lock/requirements-dev.txt

Large diffs are not rendered by default.

476 changes: 169 additions & 307 deletions lock/requirements.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ components:
info:
description: A service managing work packages for the GHGA CLI
title: Work Package Service
version: 2.0.3
version: 2.0.4
openapi: 3.1.0
paths:
/health:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ classifiers = [
"Intended Audience :: Developers",
]
name = "wps"
version = "2.0.3"
version = "2.0.4"
description = "Work Package Service"
dependencies = [
"ghga-event-schemas~=3.3.1",
"ghga-service-commons[api,auth,crypt]>=3.1.5",
"hexkit[akafka,mongodb]>=3.3.0",
"hexkit[akafka,mongodb]>=3.4.0",
"httpx>=0.27",
"typer>=0.12",
]
Expand Down

0 comments on commit 23dfd9a

Please sign in to comment.