sinoptik/CHANGELOG.md

189 lines
4.5 KiB
Markdown
Raw Permalink Normal View History

2022-05-07 21:50:59 +02:00
# Changelog
All notable changes to Sinoptik will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
2022-05-07 21:54:53 +02:00
## [Unreleased]
2024-02-27 16:01:59 +01:00
## [0.2.11] - 2024-02-27
### Security
* Updated dependencies, fixes security advisories:
* [RUSTSEC-2024-0003](https://rustsec.org/advisories/RUSTSEC-2024-0003)
* [RUSTSEC-2023-0072](https://rustsec.org/advisories/RUSTSEC-2024-0072)
### Fixed
* Fix clippy issue
* Tweak/fix tests; reduce required accuracy for geocoded coordinates
2023-11-03 10:38:12 +01:00
## [0.2.10] - 2023-11-03
### Security
* Update dependencies
([RUSTSEC-2020-0071](https://rustsec.org/advisories/RUSTSEC-2020-0071.html),
[RUSTSEC-2023-0044](https://rustsec.org/advisories/RUSTSEC-2023-0044.html))
### Changed
* Switch to Rocket 0.5 RC4
* Update dependency on `cached`
### Fixed
* Fix clippy issues
2023-08-25 20:48:17 +02:00
## [0.2.9] - 2023-08-25
### Changed
* Update release Gitea Actions workflow; add seperate job to release Debian
package to the new repository
### Security
* Update dependencies ([RUSTSEC-2023-0044](https://rustsec.org/advisories/RUSTSEC-2023-0044))
2023-06-04 12:08:36 +02:00
## [0.2.8] - 2023-06-05
### Added
* Print the version on lift off (#30)
* Add a `/version` endpoint to the API (#30)
### Changed
* Update dependency on `cached`
### Fixed
* Properly attribute the PAQI metric in its description(s)
### Removed
* No longer provide a map for the PAQI metric; the map used is only for pollen
## [0.2.7] - 2023-05-26
### Fixed
* Switch back to the original Buienradar color scheme/maps key (#27)
* Fix the token used to publish the crate to the Cargo package index
## [0.2.6] - 2023-05-24
2023-05-24 22:17:31 +02:00
### Added
* Add full release Gitea Actions workflow
### Changed
* Simplify Gitea Actions check, lint and test workflow
* Improve no known map colors found error description
### Fixed
* Update coordinates of Eindhoven in tests (Nomatim changed its geocoding)
* Increase sampling area to 31×31 pixels (#26)
* Switch to new Buienradar color scheme/maps key (#27)
## [0.2.5] - 2023-03-24
2023-03-24 13:09:53 +01:00
### Added
* Add Gitea Actions workflow for cargo
### Changed
* Updated dependencies on `cached`, `chrono-tz` and `geocoding`
### Fixed
* Fix float comparison in tests
* Fix clippy issues
### Security
* Update dependencies ([RUSTSEC-2023-0018](https://rustsec.org/advisories/RUSTSEC-2023-0018.html))
2022-07-05 14:46:51 +02:00
## [0.2.4] - 2022-07-05
### Added
* Add proper error handling and show them via the API (#25)
### Changed
* Run map refresher as an ad hoc liftoff fairing in Rocket
* Changed emojis in log output
### Removed
* Removed `AQI_max` and `pollen_max` from the forecast JSON introduced in
version 0.2.0
### Fixed
* Verify sample coordinate bounds (#24)
* Default to current time if `Last-Modified` HTTP header is missing for
retrieved maps
2022-05-21 09:51:59 +02:00
## [0.2.3] - 2022-05-21
### Fixed
* Update the examples in `README.md`
* Fix tests by adding missing type
* Fix map key color code for level 8 used by map sampling
2022-05-10 15:05:57 +02:00
## [0.2.2] - 2022-05-10
### Changed
* Switch to Rocket 0.5 RC2
### Fixed
* Fix timestamps for map samples not being correct (AQI, PAQI, UVI metrics) (#22)
* Valid samples/items will no longer be discarded too early
## [0.2.1] - 2022-05-08
2022-05-08 14:04:05 +02:00
### Added
* Add tests for the merge functionality of the combined provider (PAQI)
### Fixed
* Filter out old item/samples in combined provider (PAQI)
## [0.2.0] - 2022-05-07
2022-05-07 21:54:53 +02:00
### Added
* Add `AQI_max` and `pollen_max` to the forecast JSON (only when the PAQI
metric is selected) (#20)
2022-05-07 21:50:59 +02:00
## [0.1.0] - 2022-03-07
Initial release.
2024-02-27 16:01:59 +01:00
[Unreleased]: https://git.luon.net/paul/sinoptik/compare/v0.2.11...HEAD
[0.2.11]: https://git.luon.net/paul/sinoptik/compare/v0.2.10...v0.2.11
2023-11-03 10:38:12 +01:00
[0.2.10]: https://git.luon.net/paul/sinoptik/compare/v0.2.9...v0.2.10
2023-08-25 20:48:17 +02:00
[0.2.9]: https://git.luon.net/paul/sinoptik/compare/v0.2.8...v0.2.9
2023-06-04 12:08:36 +02:00
[0.2.8]: https://git.luon.net/paul/sinoptik/compare/v0.2.7...v0.2.8
[0.2.7]: https://git.luon.net/paul/sinoptik/compare/v0.2.6...v0.2.7
2023-05-24 22:17:31 +02:00
[0.2.6]: https://git.luon.net/paul/sinoptik/compare/v0.2.5...v0.2.6
2023-03-24 13:09:53 +01:00
[0.2.5]: https://git.luon.net/paul/sinoptik/compare/v0.2.4...v0.2.5
2022-07-05 14:46:51 +02:00
[0.2.4]: https://git.luon.net/paul/sinoptik/compare/v0.2.3...v0.2.4
2022-05-21 09:51:59 +02:00
[0.2.3]: https://git.luon.net/paul/sinoptik/compare/v0.2.2...v0.2.3
2022-05-10 15:05:57 +02:00
[0.2.2]: https://git.luon.net/paul/sinoptik/compare/v0.2.1...v0.2.2
2022-05-08 14:04:05 +02:00
[0.2.1]: https://git.luon.net/paul/sinoptik/compare/v0.2.0...v0.2.1
2022-05-07 21:54:53 +02:00
[0.2.0]: https://git.luon.net/paul/sinoptik/compare/v0.1.0...v0.2.0
2022-05-07 21:50:59 +02:00
[0.1.0]: https://git.luon.net/paul/sinoptik/commits/tag/v0.1.0