[pkg-nagios-changes] [Git][nagios-team/nagvis][master] 4 commits: New upstream version 1.10.4
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Tue May 26 14:11:14 BST 2026
Bas Couwenberg pushed to branch master at Debian Nagios Maintainer Group / nagvis
Commits:
b99c7e8d by Bas Couwenberg at 2026-05-26T15:07:48+02:00
New upstream version 1.10.4
- - - - -
49b9eea7 by Bas Couwenberg at 2026-05-26T15:07:53+02:00
Update upstream source from tag 'upstream/1.10.4'
Update to upstream version '1.10.4'
with Debian dir d35cf3a62c3dd8d559ea71f18ac3978c7929f703
- - - - -
66ed97fe by Bas Couwenberg at 2026-05-26T15:08:27+02:00
New upstream release.
- - - - -
567af9d4 by Bas Couwenberg at 2026-05-26T15:09:05+02:00
Set distribution to unstable.
- - - - -
4 changed files:
- ChangeLog
- debian/changelog
- share/frontend/nagvis-js/js/ajaxActions.js
- share/server/core/defines/global.php
Changes:
=====================================
ChangeLog
=====================================
@@ -1,3 +1,6 @@
+1.10.4
+ * FIX: Moving lines snaps back to original position because comma-separated coordinates are incorrectly filtered out before saving
+
1.10.3
* FIX: Saving map elements incorrectly applied all attributes after the unchecked-checkbox submission fix
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+nagvis (1:1.10.4-1) unstable; urgency=medium
+
+ * Team upload.
+ * New upstream release.
+
+ -- Bas Couwenberg <sebastic at debian.org> Tue, 26 May 2026 15:08:54 +0200
+
nagvis (1:1.10.3-1) unstable; urgency=medium
* Team upload.
=====================================
share/frontend/nagvis-js/js/ajaxActions.js
=====================================
@@ -6,8 +6,14 @@ function saveObjectAttr(objId, attr) {
let urlPart = "";
for (const key in attr)
// parseInt() returned NaN, because value was set to "auto";
- // but also allow relative coordinate strings (contain '%')
- if (!isNaN(attr[key]) || isRelativeCoord(attr[key])) urlPart += "&" + key + "=" + escapeUrlValues(attr[key]);
+ // but also allow relative coordinate strings (contain '%') and
+ // comma-separated line endpoint coordinates (e.g. "100,500")
+ if (
+ !isNaN(attr[key]) ||
+ isRelativeCoord(attr[key]) ||
+ (typeof attr[key] === "string" && attr[key].includes(","))
+ )
+ urlPart += "&" + key + "=" + escapeUrlValues(attr[key]);
call_ajax(
oGeneralProperties.path_server +
=====================================
share/server/core/defines/global.php
=====================================
@@ -24,7 +24,7 @@
*****************************************************************************/
// NagVis Version
-const CONST_VERSION = '1.10.3';
+const CONST_VERSION = '1.10.4';
// Set PHP error handling to standard level
// Different levels for php versions below 5.1 because PHP 5.1 reports
View it on GitLab: https://salsa.debian.org/nagios-team/nagvis/-/compare/21fe7325ab8585eed64745a6460f7b2b9b59d274...567af9d491bb678d0459b87ef9c84a578ff7238f
--
View it on GitLab: https://salsa.debian.org/nagios-team/nagvis/-/compare/21fe7325ab8585eed64745a6460f7b2b9b59d274...567af9d491bb678d0459b87ef9c84a578ff7238f
You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-nagios-changes/attachments/20260526/280643a7/attachment-0001.htm>
More information about the pkg-nagios-changes
mailing list