Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
c1e98c8
replace report_issue and resolve_issue endpoints with "issue_handling"
Abh1ramManugur1 Jun 16, 2026
016f7b9
Update CHANGELOG.md
Abh1ramManugur1 Jun 16, 2026
63bb523
Bump actions/checkout from 6 to 7
dependabot[bot] Jun 19, 2026
4262296
Remove legacy export endpoint
Abh1ramManugur1 Jun 22, 2026
a843279
remove legacy export button from transient download dropdown
Abh1ramManugur1 Jun 22, 2026
39ae084
remove helper modules
Abh1ramManugur1 Jun 22, 2026
7b3e015
Add drf-spectacular to Blast
Abh1ramManugur1 Jun 22, 2026
bd70241
Create Swagger UI page to render OpenAPI Schema
Abh1ramManugur1 Jun 22, 2026
a9553a1
Use @extend_schema to catch endpoints not seen by drf-spectacular
Abh1ramManugur1 Jun 22, 2026
abc1d99
Create named nested serializers to avoid conflicting generic nested s…
Abh1ramManugur1 Jun 22, 2026
34442fe
Merge branch '413-issue-handling' into api-revamp
manning-ncsa Jun 22, 2026
5dbde0d
Merge branch '410-remove-legacy-export' into api-revamp
manning-ncsa Jun 22, 2026
a0a5336
Merge remote-tracking branch 'origin/dependabot/github_actions/action…
manning-ncsa Jun 22, 2026
e97dfeb
Update drf-spectacular settings and relocate urls
Abh1ramManugur1 Jun 23, 2026
cfb5d4e
code linting
manning-ncsa Jun 23, 2026
8c16c88
Remove post method
Abh1ramManugur1 Jun 25, 2026
23b1201
Merge branch 'main' into api-revamp
manning-ncsa Jul 5, 2026
e0e8383
Merge remote-tracking branch 'abhiram/417-remove-post-results' into a…
manning-ncsa Jul 5, 2026
0d6e5d3
Revert changes to serializers.py
manning-ncsa Jul 5, 2026
2fdd6fe
Merge branch 'main' into 418-openapi-spec
manning-ncsa Jul 5, 2026
95a5579
WIP: refactoring add_transient update form handler
manning-ncsa Jul 10, 2026
9b37f09
Rename unit test to test_update_tansient
manning-ncsa Jul 10, 2026
fecf380
Fix bug in test_add_tansients_by_definition
manning-ncsa Jul 10, 2026
73e43a5
Fix bugs in add_transient so test_update_tansient passes
manning-ncsa Jul 10, 2026
5c4644f
Merge branch 'main' into omnibus
manning-ncsa Jul 11, 2026
acb3518
update changelog
manning-ncsa Jul 11, 2026
dae70a3
Merge branch '417-remove-post-results' into omnibus
manning-ncsa Jul 11, 2026
d50e475
Update changelog
manning-ncsa Jul 11, 2026
977931a
Merge branch 'update-transient-refactor' into omnibus
manning-ncsa Jul 11, 2026
8806aa5
Removed Nested Serializers to avoid changing API output
Abh1ramManugur1 Jul 17, 2026
2314b9c
Merge remote-tracking branch 'abhiram/418-openapi-spec' into 418-open…
manning-ncsa Jul 19, 2026
56c9457
code linting
manning-ncsa Jul 19, 2026
8234c54
Merge tag 'v1.13.1' into omnibus
manning-ncsa Jul 20, 2026
d1fa510
Merge branch 'omnibus' into 418-openapi-spec
manning-ncsa Jul 20, 2026
4e20096
Remove transient POST endpoint
manning-ncsa Jul 20, 2026
9f90dc2
Revise Alias API endpoints
manning-ncsa Jul 20, 2026
6ef5ccf
Remove obsolete alias_exists function
manning-ncsa Jul 20, 2026
fe73419
Update changelog
manning-ncsa Jul 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker_image_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
docker-images: false
swap-storage: true
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Prepare
id: prep
run: |
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,28 @@ Types of changes:
- `Fixed`: for any bug fixes.
- `Security`: in case of vulnerabilities.

## [x.y.z]

### Added

- Incorporated new `drf-spectacular` package to dynamically render OpenAPI spec and an interactive
Swagger UI for the Blast API.

### Changed

- Issue report and resolve condensed to a single endpoint named `issue_handling`, functionality preserved.

### Removed

- Removed POST request handling from results view function rendered obsolete in v1.8.0.
- Removed the obsolete, optional transient creation API endpoint
`/api/transient/post/name=<str:transient_name>&ra=<str:transient_ra>&dec=<str:transient_dec>` controlled
by the `ALLOW_API_POST` environment variable.

### Fixed

- Fixed bugs and corrected names of unit tests related to the handler functions in `add_transient()`.

## [1.13.1]

### Fixed
Expand Down
146 changes: 0 additions & 146 deletions app/api/components.py

This file was deleted.

72 changes: 0 additions & 72 deletions app/api/datamodel.py

This file was deleted.

Loading