-
Notifications
You must be signed in to change notification settings - Fork 0
Release/v0.0.5 #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 15 commits
92f98c0
3db7072
cad4cd4
5ed5def
03fae64
6f1f0bf
8a96900
587c15b
a15edf0
e089e5f
c598614
b550207
424639e
ceba597
7fc1307
fbc5bed
5222424
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,8 @@ | ||
| # package marker for api submodules | ||
| """ | ||
| Package exports for the `api` module namespace. | ||
| Api module for the resolver package. | ||
|
|
||
| Copyright (c) 2026 Stefan Kumarasinghe. | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the | ||
| License. See http://www.apache.org/licenses/LICENSE-2.0 for details. | ||
| """ |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,45 +1,16 @@ | ||
| """ | ||
| Routes initialization and shared data models for API endpoints. | ||
|
|
||
| Copyright (c) 2026 Stefan Kumarasinghe | ||
| Copyright (c) 2026 Stefan Kumarasinghe. | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the | ||
| License. You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| License. See http://www.apache.org/licenses/LICENSE-2.0 for details. | ||
| """ | ||
|
|
||
| from __future__ import annotations | ||
|
|
||
| from fastapi import APIRouter | ||
|
|
||
| from api.routes.analyze import router as analyze_router | ||
| from api.routes.causal import router as causal_router | ||
| from api.routes.correlation import router as correlation_router | ||
| from api.routes.events import router as events_router | ||
| from api.routes.forecast import router as forecast_router | ||
| from api.routes.health import router as health_router | ||
| from api.routes.jobs import router as jobs_router | ||
| from api.routes.logs import router as logs_router | ||
| from api.routes.metrics import router as metrics_router | ||
| from api.routes.ml import router as ml_router | ||
| from api.routes.slo import router as slo_router | ||
| from api.routes.topology import router as topology_router | ||
| from api.routes.traces import router as traces_router | ||
|
|
||
| router = APIRouter() | ||
|
|
||
| router.include_router(health_router) | ||
| router.include_router(analyze_router) | ||
| router.include_router(metrics_router) | ||
| router.include_router(logs_router) | ||
| router.include_router(traces_router) | ||
| router.include_router(correlation_router) | ||
| router.include_router(slo_router) | ||
| router.include_router(topology_router) | ||
| router.include_router(events_router) | ||
| router.include_router(forecast_router) | ||
| router.include_router(causal_router) | ||
| router.include_router(ml_router) | ||
| router.include_router(jobs_router) | ||
|
|
||
| __all__ = ["router"] | ||
|
Comment on lines
14
to
45
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR metadata describes v0.0.5 as dated 2026-04-21, but the changelog entry is dated 2026-04-17. Please align the changelog release date with the intended release date (or adjust the PR description) so version history is consistent.