Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]



## [v2.2.0] - 2025-09-08

### Fixed

- Handle error return values in rate limit tests for linter (9597171)

### Documentation

- Update .env.example with rate limiting configuration (73a9d63)

### CI/CD

- Add cleanup job (workflow) (cdf5dc7)

### Maintenance

- Update for next version (version) (80d5451)

### Style

- Add missing newline at end of workflow file (5266ab2)
- Fix formatting and add missing newlines (f2f373a)

## [v2.1.0] - 2025-09-08

### Maintenance
Expand Down
4 changes: 2 additions & 2 deletions internal/handler/covid_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ func (h *CovidHandler) HealthCheck(w http.ResponseWriter, r *http.Request) {
health := map[string]interface{}{
"status": "healthy",
"service": "COVID-19 API",
"version": "2.2.0",
"version": "2.2.0",
"timestamp": time.Now().UTC().Format(time.RFC3339),
}

Expand Down Expand Up @@ -355,7 +355,7 @@ func (h *CovidHandler) GetAPIIndex(w http.ResponseWriter, r *http.Request) {
endpoints := map[string]interface{}{
"api": map[string]interface{}{
"title": "Sulawesi Tengah COVID-19 Data API",
"version": "2.2.0",
"version": "2.2.0",
"description": "A comprehensive REST API for COVID-19 data in Sulawesi Tengah (Central Sulawesi)",
},
"documentation": map[string]interface{}{
Expand Down