Skip to content

Commit 489a993

Browse files
committed
Bump version to 1.10.2
1 parent 27e203c commit 489a993

10 files changed

Lines changed: 34 additions & 9 deletions

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1+
1.10.2
2+
13
1.10.1
4+
* Feature: NagVis popup dialogs show white/light theme when browser or OS is in dark mode
5+
* FIX: JavaScript crash on maps with BW lines when only one of the in/out perfdata labels is matched
6+
* FIX: Geomap source leaks lat/long into map config causing PHP 8.2 dynamic property deprecation warnings
7+
* FIX: Fix PHP memory exhaustion on maps with large host/servicegroups by lazily loading group members on demand (#437)
8+
* FIX: Updating role permissions silently fails when there are many maps due to PHP max_input_vars limit being exceeded
9+
* FIX: Worldmap lines with both endpoints relative to hosts disappear after zoom or page refresh
10+
* FIX: Setting zoom to "Fill screen" on an empty map corrupts the URL with zoom=NaN and makes the map disappear
211

312
1.10.0
413
* FIX: Align code standards with PSR-12 (#378 Thanks to miken32)

Makefile

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SHELL=/bin/bash
2-
VERSION=1.10.1
2+
VERSION=1.10.2
33
NAME=nagvis-$(VERSION)
44

55
SED ?= sed
@@ -21,6 +21,29 @@ dist:
2121
git archive --format=tar --prefix=$(NAME)/ HEAD | gzip > $(NAME).tar.gz
2222

2323
create-tag:
24+
@fragments=$$(find changelog.d -maxdepth 1 -name '*.md' ! -name 'README.md') ; \
25+
if [ -n "$$fragments" ]; then \
26+
echo "ERROR: changelog fragments remain in changelog.d/ — run tools/changelog-release.sh first" ; \
27+
exit 1 ; \
28+
fi
29+
@if git tag -l "nagvis-$(VERSION)" "nagvis-$(VERSION).0" | grep -q .; then \
30+
echo "ERROR: version $(VERSION) is already tagged — bump the version first (make version)" ; \
31+
exit 1 ; \
32+
fi
33+
@if ! git diff --quiet || ! git diff --cached --quiet; then \
34+
echo "ERROR: uncommitted changes present — commit the changelog and version bump first" ; \
35+
exit 1 ; \
36+
fi
37+
@upstream=$$(git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null) ; \
38+
if [ -z "$$upstream" ]; then \
39+
echo "ERROR: current branch has no upstream — push the changelog and version commits first" ; \
40+
exit 1 ; \
41+
fi ; \
42+
unpushed=$$(git rev-list --count HEAD ^$$upstream) ; \
43+
if [ "$$unpushed" != "0" ]; then \
44+
echo "ERROR: $$unpushed unpushed commit(s) — push the changelog and version commits first" ; \
45+
exit 1 ; \
46+
fi
2447
V=$(VERSION) ; if [ $${#V} -eq 3 ]; then \
2548
TAG=nagvis-$$V.0 ; \
2649
else \

changelog.d/feat-dark-mode-popups.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/fix-bw-line-js-crash.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/fix-geomap-php82-dynamic-property.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/fix-lazy-load-group-members.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/fix-role-perms-max-input-vars.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/fix-worldmap-relative-lines.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/fix-zoom-fill-empty-map.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

share/server/core/defines/global.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*****************************************************************************/
2525

2626
// NagVis Version
27-
const CONST_VERSION = '1.10.1';
27+
const CONST_VERSION = '1.10.2';
2828

2929
// Set PHP error handling to standard level
3030
// Different levels for php versions below 5.1 because PHP 5.1 reports

0 commit comments

Comments
 (0)