prepare v2.0.4

This commit is contained in:
thatmattlove 2024-07-01 00:01:03 -04:00
parent a5bc1ca8a0
commit ec3c55aa81
7 changed files with 19 additions and 6 deletions

View file

@ -18,7 +18,7 @@ body:
attributes: attributes:
label: Version label: Version
description: What version of hyperglass are you currently running? description: What version of hyperglass are you currently running?
placeholder: v2.0.3 placeholder: v2.0.4
validations: validations:
required: true required: true
- type: textarea - type: textarea

View file

@ -22,7 +22,7 @@ body:
attributes: attributes:
label: Version label: Version
description: What version of hyperglass are you currently running? description: What version of hyperglass are you currently running?
placeholder: v2.0.3 placeholder: v2.0.4
validations: validations:
required: true required: true
- type: textarea - type: textarea

View file

@ -4,6 +4,19 @@ All notable changes to this project 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). 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).
## 2.0.4 - 2024-06-30
### Fixed
- [#267](https://github.com/thatmattlove/hyperglass/issues/267): Fixed issue where responses were incorrectly cached, resulting in no data being shown in the AS Path viewer.
- [#268](https://github.com/thatmattlove/hyperglass/issues/268): Fixed issue where some Mikrotik commands failed to execute properly.
- [#269](https://github.com/thatmattlove/hyperglass/issues/269): Updated documentation regarding `structured.rpki.mode`.
- Removed unnecessary logging statements which caused logging errors.
- Fixed issue where validation of structured BGP route data may have failed under certain conditions.
### Changed
- Error responses are no longer cached.
## 2.0.3 - 2024-06-16 ## 2.0.3 - 2024-06-16
### Fixed ### Fixed

View file

@ -5,7 +5,7 @@ cd /opt/hyperglass
docker compose down docker compose down
docker compose rm -f docker compose rm -f
git fetch git fetch
git checkout v2.0.3 git checkout v2.0.4
docker compose build docker compose build
docker compose up docker compose up
``` ```

View file

@ -4,7 +4,7 @@
from datetime import datetime from datetime import datetime
__name__ = "hyperglass" __name__ = "hyperglass"
__version__ = "2.0.3" __version__ = "2.0.4"
__author__ = "Matt Love" __author__ = "Matt Love"
__copyright__ = f"Copyright {datetime.now().year} Matthew Love" __copyright__ = f"Copyright {datetime.now().year} Matthew Love"
__license__ = "BSD 3-Clause Clear License" __license__ = "BSD 3-Clause Clear License"

View file

@ -1,5 +1,5 @@
{ {
"version": "2.0.3", "version": "2.0.4",
"name": "ui", "name": "ui",
"description": "UI for hyperglass, the modern network looking glass", "description": "UI for hyperglass, the modern network looking glass",
"author": "Matt Love", "author": "Matt Love",

View file

@ -1,6 +1,6 @@
[project] [project]
name = "hyperglass" name = "hyperglass"
version = "2.0.3" version = "2.0.4"
description = "hyperglass is the modern network looking glass that tries to make the internet better." description = "hyperglass is the modern network looking glass that tries to make the internet better."
authors = [ authors = [
{ name = "thatmattlove", email = "matt@hyperglass.dev" } { name = "thatmattlove", email = "matt@hyperglass.dev" }