mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
prepare v2.0.4
This commit is contained in:
parent
a5bc1ca8a0
commit
ec3c55aa81
7 changed files with 19 additions and 6 deletions
|
|
@ -18,7 +18,7 @@ body:
|
|||
attributes:
|
||||
label: Version
|
||||
description: What version of hyperglass are you currently running?
|
||||
placeholder: v2.0.3
|
||||
placeholder: v2.0.4
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
|
|
|
|||
2
.github/ISSUE_TEMPLATE/2-bug-report.yaml
vendored
2
.github/ISSUE_TEMPLATE/2-bug-report.yaml
vendored
|
|
@ -22,7 +22,7 @@ body:
|
|||
attributes:
|
||||
label: Version
|
||||
description: What version of hyperglass are you currently running?
|
||||
placeholder: v2.0.3
|
||||
placeholder: v2.0.4
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
|
|
|
|||
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -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).
|
||||
|
||||
## 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
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ cd /opt/hyperglass
|
|||
docker compose down
|
||||
docker compose rm -f
|
||||
git fetch
|
||||
git checkout v2.0.3
|
||||
git checkout v2.0.4
|
||||
docker compose build
|
||||
docker compose up
|
||||
```
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
from datetime import datetime
|
||||
|
||||
__name__ = "hyperglass"
|
||||
__version__ = "2.0.3"
|
||||
__version__ = "2.0.4"
|
||||
__author__ = "Matt Love"
|
||||
__copyright__ = f"Copyright {datetime.now().year} Matthew Love"
|
||||
__license__ = "BSD 3-Clause Clear License"
|
||||
|
|
|
|||
2
hyperglass/ui/package.json
vendored
2
hyperglass/ui/package.json
vendored
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "2.0.3",
|
||||
"version": "2.0.4",
|
||||
"name": "ui",
|
||||
"description": "UI for hyperglass, the modern network looking glass",
|
||||
"author": "Matt Love",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
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."
|
||||
authors = [
|
||||
{ name = "thatmattlove", email = "matt@hyperglass.dev" }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue