Skip to content

Commit

Permalink
prepare v2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
thatmattlove committed Jul 1, 2024
1 parent a5bc1ca commit ec3c55a
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1-feature-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2-bug-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/installation/upgrading.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion hyperglass/constants.py
Original file line number Diff line number Diff line change
Expand 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"
Expand Down
2 changes: 1 addition & 1 deletion hyperglass/ui/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]" }
Expand Down

0 comments on commit ec3c55a

Please sign in to comment.