Skip to content
Snippets Groups Projects
Commit c1815139 authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Merge branch 'development' into 'main'

Version 1.1.1

See merge request denbi/object-storage-access!29
parents 7d9d566f 2cff489b
No related branches found
No related tags found
No related merge requests found
## Version 1.1.1
### General
* Show correct version number in the Swagger UI #33
* Fix typos in README & DEVELOPING
## Version 1.1.0 ## Version 1.1.0
### Features ### Features
......
...@@ -12,10 +12,10 @@ var2: str | None = None ...@@ -12,10 +12,10 @@ var2: str | None = None
``` ```
instead of instead of
```python ```python
from typing import List, Union from typing import List, Optional
var1: List[int] = [1,2,3] var1: List[int] = [1,2,3]
var2: Union[str, None] = None var2: Optional[str] = None
``` ```
### Environment Setup ### Environment Setup
Create a virtual environment, install the dependencies and install the [pre-commit](https://pre-commit.com/) hooks.<br> Create a virtual environment, install the dependencies and install the [pre-commit](https://pre-commit.com/) hooks.<br>
......
...@@ -50,5 +50,5 @@ user-friendly manner. 👍 ...@@ -50,5 +50,5 @@ user-friendly manner. 👍
| `OIDC_META_INFO_PATH` | `/.well-known/openid-configuration` | URL path | Path to the OIDC configuration file<br> Will be concatenated with the `OIDC_BASE_URI` | | `OIDC_META_INFO_PATH` | `/.well-known/openid-configuration` | URL path | Path to the OIDC configuration file<br> Will be concatenated with the `OIDC_BASE_URI` |
## Getting started ## Getting started
This service depends on multiple other services. See [DEVELOPING.md](DEVELOPING.md) ho to set these up for developing on This service depends on multiple other services. See [DEVELOPING.md](DEVELOPING.md) how to set these up for developing
your local machine. on your local machine.
...@@ -23,7 +23,7 @@ def custom_generate_unique_id(route: APIRoute) -> str: ...@@ -23,7 +23,7 @@ def custom_generate_unique_id(route: APIRoute) -> str:
app = FastAPI( app = FastAPI(
title="S3-Proxy", title="S3-Proxy",
version="1.0.0", version="1.1.1",
description=description, description=description,
contact={ contact={
"name": "Daniel Goebel", "name": "Daniel Goebel",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment