From ec3c55aa81773fb22989ec267e131bc98a493d88 Mon Sep 17 00:00:00 2001 From: thatmattlove Date: Mon, 1 Jul 2024 00:01:03 -0400 Subject: [PATCH] prepare v2.0.4 --- .github/ISSUE_TEMPLATE/1-feature-request.yaml | 2 +- .github/ISSUE_TEMPLATE/2-bug-report.yaml | 2 +- CHANGELOG.md | 13 +++++++++++++ docs/pages/installation/upgrading.mdx | 2 +- hyperglass/constants.py | 2 +- hyperglass/ui/package.json | 2 +- pyproject.toml | 2 +- 7 files changed, 19 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1-feature-request.yaml b/.github/ISSUE_TEMPLATE/1-feature-request.yaml index 28c3fd47..233828e2 100644 --- a/.github/ISSUE_TEMPLATE/1-feature-request.yaml +++ b/.github/ISSUE_TEMPLATE/1-feature-request.yaml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/2-bug-report.yaml b/.github/ISSUE_TEMPLATE/2-bug-report.yaml index 475399f6..f575849e 100644 --- a/.github/ISSUE_TEMPLATE/2-bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/2-bug-report.yaml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ac360ef..e8b0b5fd 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/docs/pages/installation/upgrading.mdx b/docs/pages/installation/upgrading.mdx index 88118dac..f70da5ed 100644 --- a/docs/pages/installation/upgrading.mdx +++ b/docs/pages/installation/upgrading.mdx @@ -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 ``` diff --git a/hyperglass/constants.py b/hyperglass/constants.py index ae18ce9a..5fb0870f 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -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" diff --git a/hyperglass/ui/package.json b/hyperglass/ui/package.json index c00f1f37..b50ba478 100644 --- a/hyperglass/ui/package.json +++ b/hyperglass/ui/package.json @@ -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", diff --git a/pyproject.toml b/pyproject.toml index ad01d2e9..c5cf96fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" }