feat(server): add release versioning#58
Open
GentleCold wants to merge 1 commit into
Open
Conversation
GentleCold
force-pushed
the
feat/release-versioning
branch
from
May 29, 2026 06:50
29c2e08 to
edd069c
Compare
GentleCold
marked this pull request as ready for review
May 29, 2026 06:52
- Add centralized DaseR version helpers for runtime metadata - Log the DaseR version during server startup - Document manual release tagging and dependency extras
GentleCold
force-pushed
the
feat/release-versioning
branch
from
May 29, 2026 06:56
edd069c to
da5b0e4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
daser.versionmodule and use it for FastAPI metadata.python -m daser.serverstarts.Motivation
DaseR needs one visible runtime version source so service logs and API metadata can be tied back to a release. The project also needs a manual release flow and clearer install profiles for development, service runtime, integration, and benchmark environments.
Test plan
ruff check daser/ tests/ruff format --check daser/ tests/PYTHONHASHSEED=0 pytest -q -m "not integration" --ignore=tests/integration --ignore=tests/connector/test_daser_connector.py --ignore=tests/connector/test_gds_transfer.py tests/pre-commit run --all-filespassesIntegration and benchmark runs are N/A for this PR because the change only affects package metadata, startup logging, dependency declarations, and documentation.