diff --git a/.github/ISSUE_TEMPLATE/1-feature-request.yaml b/.github/ISSUE_TEMPLATE/1-feature-request.yaml index d73bc97..28c3fd4 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.2 + placeholder: v2.0.3 validations: required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/2-bug-report.yaml b/.github/ISSUE_TEMPLATE/2-bug-report.yaml index 9ca5d2c..475399f 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.2 + placeholder: v2.0.3 validations: required: true - type: textarea diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c3d05e..2ac360e 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.3 - 2024-06-16 + +### Fixed + +- [#262](https://github.com/thatmattlove/hyperglass/issues/262): Fix issue where Mikrotik output was improperly parsed and displayed an error as a result. +- Fixed issue where incorrect error styles were displayed. +- Fixed issue where 'results' accordion component did not re-open when closed. +- Fixed issue where pattern-based directive rules failed validation. + +### Changed + +- Set default logo width (back) to 50%, adjusted how the `web.logo.width` setting is handled in the UI. + ## 2.0.2 - 2024-06-01 ### Fixed diff --git a/docs/pages/installation/upgrading.mdx b/docs/pages/installation/upgrading.mdx index eb60054..88118da 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.2 +git checkout v2.0.3 docker compose build docker compose up ``` diff --git a/hyperglass/constants.py b/hyperglass/constants.py index 6bb2081..ae18ce9 100644 --- a/hyperglass/constants.py +++ b/hyperglass/constants.py @@ -4,7 +4,7 @@ from datetime import datetime __name__ = "hyperglass" -__version__ = "2.0.2" +__version__ = "2.0.3" __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 e2bc813..c00f1f3 100644 --- a/hyperglass/ui/package.json +++ b/hyperglass/ui/package.json @@ -1,5 +1,5 @@ { - "version": "2.0.2", + "version": "2.0.3", "name": "ui", "description": "UI for hyperglass, the modern network looking glass", "author": "Matt Love", diff --git a/pyproject.toml b/pyproject.toml index 6d5865f..ad01d2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hyperglass" -version = "2.0.2" +version = "2.0.3" description = "hyperglass is the modern network looking glass that tries to make the internet better." authors = [ { name = "thatmattlove", email = "matt@hyperglass.dev" }