Skip to content
Snippets Groups Projects
Commit 884a9953 authored by geant-release-service's avatar geant-release-service
Browse files

Finished release 0.76.

parents 3bf4a515 8c0fc877
No related branches found
No related tags found
No related merge requests found
......@@ -436,4 +436,8 @@ def get_nren_regions(host):
data = []
jsonschema.validate(data, NREN_REGION_LIST_SCHEMA)
# ugly hack: if a region isn't on the list of recognised regions, prune it from the region list
# TODO: figure out something that isn't this
recognised_regions = ['EAP']
data = [d for d in data if d['region'] in recognised_regions]
return data
......@@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
## [0.76] - 2024-12-05
- POL1-869: Fix issue where if unrecognized regions are used, no services are populated for the NREN.
## [0.75] - 2024-11-13
- POL1-857: Fix issue with Grafana not properly escaping certain values for the home dashboard.
- Fix connection pool thread exhaustion.
......
......@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='brian-dashboard-manager',
version="0.75",
version="0.76",
author='GEANT',
author_email='swd@geant.org',
description='',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment