Skip to content

Commit 04cf9f6

Browse files
committed
Merge branch 'develop'
2 parents 600923c + bddd57f commit 04cf9f6

File tree

7 files changed

+18
-3
lines changed

7 files changed

+18
-3
lines changed

docker/Dockerfile.worker

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ ARG BASE_IMAGE=python:3.11-slim
22
FROM $BASE_IMAGE AS prod
33

44
RUN apt-get update && apt-get install -y \
5+
krb5-user \
56
libkrb5-dev \
67
libsasl2-dev \
78
libsasl2-modules-gssapi-mit \

docs/changelog/0.1.4.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
0.1.4 (2024-04-15)
2+
==================
3+
4+
Bug Fixes
5+
----------
6+
7+
- Fix missing backend factory for uvicorn.
8+
- Fix missing ``kinit`` executable in worker image.

docs/changelog/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
:caption: Changelog
44

55
DRAFT
6+
0.1.4
67
0.1.3
78
0.1.2
89
0.1.1

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
# The short X.Y version.
3737

3838
# this value is updated automatically by `poetry version ...` and poetry-bumpversion plugin
39-
ver = Version.parse("0.1.3")
39+
ver = Version.parse("0.1.4")
4040
version = ver.base_version
4141
# The full version, including alpha/beta/rc tags.
4242
release = ver.public

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "data-syncmaster"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
license = "Apache-2.0"
55
description = "Syncmaster REST API + Worker"
66
authors = ["DataOps.ETL <[email protected]>"]
@@ -200,6 +200,7 @@ exclude_lines = [
200200

201201

202202

203+
203204
[tool.poetry.group.docs.dependencies]
204205
autodoc-pydantic = {version = "^2.0.1", python = ">=3.8"}
205206
numpydoc = {version = "^1.6.0", python = ">=3.8"}

syncmaster/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-FileCopyrightText: 2023-2024 MTS (Mobile Telesystems)
22
# SPDX-License-Identifier: Apache-2.0
33

4-
_raw_version = "0.1.3"
4+
_raw_version = "0.1.4"
55
# version always contain only release number like 0.0.1
66
__version__ = ".".join(_raw_version.split(".")[:3]) # noqa: WPS410

syncmaster/backend/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,7 @@ def application_factory(settings: Settings) -> FastAPI:
5454
)
5555

5656
return application
57+
58+
59+
def get_application() -> FastAPI:
60+
return application_factory(settings=Settings())

0 commit comments

Comments
 (0)