Skip to content

Commit 227e74e

Browse files
committed
Bump version and hide queue schema
Update package version to 2.2.5 and remove the "schema" field from the queue GET response (commented out). This avoids returning internal schema details in the API response; no other functional changes.
1 parent c6f47be commit 227e74e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Python - FastAPI, Postgres, tsvector"""
22

33
# Current Version
4-
__version__ = "2.2.4"
4+
__version__ = "2.2.5"

app/api/queue/routes/get.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ def read_queue() -> dict:
3838
return {
3939
"meta": make_meta("success", "Queue table info"),
4040
"data": {
41-
"queued": record_count,
42-
"most_recent": most_recent,
43-
"schema": schema
41+
"queued": record_count,
42+
"most_recent": most_recent,
43+
# "schema": schema
4444
}
4545
}
4646
except Exception as e:

0 commit comments

Comments
 (0)