Skip to content

Commit a0e7837

Browse files
committed
Release v1.8.4
1 parent 58fde9f commit a0e7837

File tree

8 files changed

+56
-56
lines changed

8 files changed

+56
-56
lines changed

backend/configs/version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
api:
2-
version: 1.8.3
2+
version: 1.8.4

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
maintainers = [
1010
{name = "Tim Fischer", email = "tim.fischer@uni-hamburg.de"},
1111
]
12-
version = "1.8.3"
12+
version = "1.8.4"
1313
requires-python = "==3.11.*"
1414
description = "DATS is a machine-learning powered web application for multi-modal discourse analysis. It provides tools for the typical workflow of a discsourse analysis project including data collection, data management, exploration, annotation, qualitative & quantitative analysis, interpratation and reflection."
1515
readme = "../README.md"

backend/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker/.env.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ COMPOSE_PROJECT_NAME=demo
1111
# you can remove profiles from right to left
1212
COMPOSE_PROFILES=rq,backend,frontend
1313
# Docker tag to use for pulling the backend and rq container
14-
DATS_BACKEND_DOCKER_VERSION=1.8.3
14+
DATS_BACKEND_DOCKER_VERSION=1.8.4
1515
# Docker tag to use for pulling the ray container
16-
DATS_RAY_DOCKER_VERSION=1.8.3
16+
DATS_RAY_DOCKER_VERSION=1.8.4
1717
# Docker tag to use for pulling the frontend
18-
DATS_FRONTEND_DOCKER_VERSION=1.8.3
18+
DATS_FRONTEND_DOCKER_VERSION=1.8.4
1919
# Which user and group to use for running processes
2020
# inside containers.
2121
# Set this to the user and group you're using

frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontend",
3-
"version": "1.8.3",
3+
"version": "1.8.4",
44
"private": true,
55
"type": "module",
66
"scripts": {

frontend/src/api/openapi/core/OpenAPI.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
2121

2222
export const OpenAPI: OpenAPIConfig = {
2323
BASE: "",
24-
VERSION: "1.8.3",
24+
VERSION: "1.8.4",
2525
WITH_CREDENTIALS: false,
2626
CREDENTIALS: "include",
2727
TOKEN: undefined,

frontend/src/openapi.json

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"openapi": "3.1.0",
3-
"info": { "title": "Discourse Analysis Tool Suite API", "version": "1.8.3" },
3+
"info": { "title": "Discourse Analysis Tool Suite API", "version": "1.8.4" },
44
"paths": {
55
"/analysis/code_frequencies": {
66
"post": {
@@ -1885,49 +1885,6 @@
18851885
}
18861886
}
18871887
},
1888-
"/job/duplicate_finder": {
1889-
"post": {
1890-
"tags": ["job"],
1891-
"summary": "Start DuplicateFinder job",
1892-
"operationId": "start_duplicate_finder_job",
1893-
"requestBody": {
1894-
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/DuplicateFinderInput" } } },
1895-
"required": true
1896-
},
1897-
"responses": {
1898-
"200": {
1899-
"description": "Successful Response",
1900-
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/DuplicateFinderJobRead" } } }
1901-
},
1902-
"422": {
1903-
"description": "Validation Error",
1904-
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } }
1905-
}
1906-
},
1907-
"security": [{ "OAuth2PasswordBearer": [] }]
1908-
}
1909-
},
1910-
"/job/duplicate_finder/{job_id}": {
1911-
"get": {
1912-
"tags": ["job"],
1913-
"summary": "Get DuplicateFinder job",
1914-
"operationId": "get_duplicate_finder_job_by_id",
1915-
"security": [{ "OAuth2PasswordBearer": [] }],
1916-
"parameters": [
1917-
{ "name": "job_id", "in": "path", "required": true, "schema": { "type": "string", "title": "Job Id" } }
1918-
],
1919-
"responses": {
1920-
"200": {
1921-
"description": "Successful Response",
1922-
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/DuplicateFinderJobRead" } } }
1923-
},
1924-
"422": {
1925-
"description": "Validation Error",
1926-
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } }
1927-
}
1928-
}
1929-
}
1930-
},
19311888
"/job/ml": {
19321889
"post": {
19331890
"tags": ["job"],
@@ -2047,6 +2004,49 @@
20472004
}
20482005
}
20492006
},
2007+
"/job/duplicate_finder": {
2008+
"post": {
2009+
"tags": ["job"],
2010+
"summary": "Start DuplicateFinder job",
2011+
"operationId": "start_duplicate_finder_job",
2012+
"requestBody": {
2013+
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/DuplicateFinderInput" } } },
2014+
"required": true
2015+
},
2016+
"responses": {
2017+
"200": {
2018+
"description": "Successful Response",
2019+
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/DuplicateFinderJobRead" } } }
2020+
},
2021+
"422": {
2022+
"description": "Validation Error",
2023+
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } }
2024+
}
2025+
},
2026+
"security": [{ "OAuth2PasswordBearer": [] }]
2027+
}
2028+
},
2029+
"/job/duplicate_finder/{job_id}": {
2030+
"get": {
2031+
"tags": ["job"],
2032+
"summary": "Get DuplicateFinder job",
2033+
"operationId": "get_duplicate_finder_job_by_id",
2034+
"security": [{ "OAuth2PasswordBearer": [] }],
2035+
"parameters": [
2036+
{ "name": "job_id", "in": "path", "required": true, "schema": { "type": "string", "title": "Job Id" } }
2037+
],
2038+
"responses": {
2039+
"200": {
2040+
"description": "Successful Response",
2041+
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/DuplicateFinderJobRead" } } }
2042+
},
2043+
"422": {
2044+
"description": "Validation Error",
2045+
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } }
2046+
}
2047+
}
2048+
}
2049+
},
20502050
"/job/export": {
20512051
"post": {
20522052
"tags": ["job"],
@@ -11436,7 +11436,7 @@
1143611436
"name": {
1143711437
"type": "string",
1143811438
"title": "Name",
11439-
"description": "User-defined name of the document (defaults is the filename)"
11439+
"description": "User-defined name of the document (default is the filename)"
1144011440
},
1144111441
"doctype": { "$ref": "#/components/schemas/DocType", "description": "DOCTYPE of the SourceDocument" },
1144211442
"project_id": {
@@ -11478,7 +11478,7 @@
1147811478
"name": {
1147911479
"type": "string",
1148011480
"title": "Name",
11481-
"description": "User-defined name of the document (defaults is the filename)"
11481+
"description": "User-defined name of the document (default is the filename)"
1148211482
},
1148311483
"doctype": { "$ref": "#/components/schemas/DocType", "description": "DOCTYPE of the SourceDocument" },
1148411484
"project_id": {

0 commit comments

Comments
 (0)