-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
4351 lines (4118 loc) · 265 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Changes for 1.8.8rc3
- [ZBX-1909] fixed keyparser to allow keys like "key,{$USERMACRO}" (Vedmak)
- [ZBX-4157] fixed possible truncating of queries while preparing a configuration data for sending to a proxy (Sasha)
- [ZBX-4150] fixed processing of quoted function parameters (Sasha)
Changes for 1.8.8rc2
- [ZBX-4141] fixed possible cycling of server/proxy processes after unsuccessful execution of SQL statement (Sasha)
- [ZBX-4135] fixed item selection in trigger expression (Eduard)
Changes for 1.8.8rc1
- [ZBX-3676] fixed item selection in bar report (Eduard)
- [ZBX-4070] improved performance of handling of trigger functions (Sasha)
- [ZBXNEXT-921] added option to show items without data in latest data (Vedmak)
- [ZBX-2457] changed "type" to "ENGINE" in MySQL upgrade patches for MySQL 5.5 compatibility (Richlv)
- [ZBX-4099] fixed possible crash when processing of functions sum(), min(), max() or diff() in triggers, aggregated checks or calculated items (Sasha)
- [ZBX-3030] fixed event durations in monitoring (Vedmak,Eduard)
- [ZBXNEXT-902] changed API search wildcard from "%" to "*" (Vedmak,Eduard)
- [ZBX-3967] fixed alerter hang on long running alert scripts (Deniss)
- [ZBX-3970] fixed proxy crash after database connection to postgresql is recovered (Deniss)
- [ZBX-3175] fixed value type for 'vfs.fs.size[/var,used]' in data.sql (Sasha)
- [ZBX-4068] updated French translation; thanks to Joseph Bueno (Richlv)
- [ZBX-4066] fixed macros saving in administration (Eduard)
- [ZBXNEXT-900] added support of {TRIGGER.ID} macro in a trigger url (Vedmak,Sasha)
- [ZBX-4045] added check for duplicate hosts or proxies - if found, configuration syncer logs a warning and exits (rudolfs)
- [ZBX-4059] fixed a potential buffer overflow in item parameter parsing (rudolfs)
Changes for 1.8.7
1.8.7rc1 was released as 1.8.7 without any changes
Changes for 1.8.7rc1
- [ZBXNEXT-898] new trigger actions have "trigger = PROBLEM" and "not in maintenance" conditions by default (Vedmak)
- [ZBX-4021] fixed item visibility in case when last value is null (Eduard)
- [ZBX-4052] fixed key macros resolving in item names (Vedmak)
- [ZBX-1357] removed outdated translation strings from all translations (Richlv)
- [ZBX-3998] reload recipient list for database down messages every CacheUpdateFrequency seconds (rudolfs)
- [ZBX-4034] fixed macros resolving in item names (Vedmak)
- [ZBX-4044] removed redundant query "SET CHARACTER SET" (asaveljevs,Vedmak)
- [ZBX-3997] fixed IE9 dragging (Eduard)
- [ZBX-4043] fixed processing of system.cpu.util on Solaris with non-sequential cpu numbers (Sasha)
- [ZBX-4036] fixed period slider position saving in Monitoring->Events (Eduard)
- [ZBX-1010] fixed processing of a vfs.fs.size metric on Solaris with filesystems larger than 2TB (Sasha)
- [ZBX-3874] always enable all trigger severity checkboxes after enabling GUI Messaging in user profile (Eduard)
- [ZBX-3889] fixed deadlocks while processing triggers (Sasha)
- [ZBX-4023] fixed excess spacing and fake plural in graph deletion message (Richlv)
- [ZBX-4016] fixed web monitoring item status on insert and update (Eduard)
- [ZBX-3443] fixed "not selected" working as "all" in Monitoring->Events (Eduard)
- [ZBX-3979] added searchWildcardsEnabled flag in API for searching using wildcards (Eduard)
- [ZBX-4018] fixed server crash on unsupported aggregate items (asaveljevs,Sasha)
- [ZBX-3908] allow empty string for formula field if multiplier is switched off (Eduard)
- [ZBX-3961] added recalculation of nextcheck time after changed flexible intervals (rudolfs)
- [ZBX-3978] fixed time period calculation, do not include upper bound (dimir,Sasha,KB)
- [ZBX-4000] fixed stop propagation (network map element dragging in configuration) in IE9 (Eduard)
- [ZBX-2467] added more command line arguments to objdump to request more debugging information about crashes (asaveljevs)
- [ZBX-3972] added "Now" and "Done" buttons into js calendar - change action after day selection (Eduard)
- [ZBX-3993] fixed transmitting of templated user macros between server and proxy (Sasha)
- [ZBX-4008] updated Japanese translation; thanks to Kodai Terashima (Richlv)
- [ZBX-4005] updated French translation; thanks to Joseph Bueno (Richlv)
- [ZBXNEXT-869] clarify in manpages how the process for runtime signalling is found (Richlv)
Changes for 1.8.6
1.8.6rc2 was released as 1.8.6 without any changes
Changes for 1.8.6rc2
- [ZBX-3990] fixed exiting proxy and server on cache reload using runtime control options (rudolfs)
- [ZBX-3835] fixed possible security vulnerability in redirects (Vedmak)
Changes for 1.8.6rc1
- [ZBX-3968] fixed issues with filtering in monitoring->events in Internet Explorer 7 (KB)
- [ZBX-3469] fixed setting UNKNOWN trigger status when agent goes down (dimir)
- [ZBX-3973] added logging of proxy mode (active/passive) at startup (rudolfs)
- [ZBX-3902] fixed possible zombie states in UNIX, moved watchdog (server) and heartbeats (proxy) to separate processes (main process just waits), added more logging to exiting Windows agent (rudolfs)
- [ZBX-3166] fixed application updating in Template linking event. Changed linked Template color in application page. Added param NOEMPTY for popup page witch allows hide Empty button in application and item pages (Eduard)
- [ZBX-3565] reformating media types in notifications page, adding links to media types (Eduard)
- [ZBX-3784] added validation on duplicate discovery rule name (Eduard)
- [ZBX-3733] make possible to save Device uniqueness criteria status (discovery rule) in cloning event (Eduard)
- [ZBX-3845] check, if this user group is used in the config, if so it cannot be deleted (Eduard)
- [ZBX-3911] fixed wrong trigger expression parsing when key parameters contained "(" (KB)
- [ZBX-3856] fixed new group creation from template page (Eduard)
- [ZBX-3840] fixed possible path disclosure (Vedmak)
- [ZBXNEXT-849] added example MySQL UserParameter to monitor database and table size (Richlv)
- [ZBX-3935] fixed possible function redeclaration error (Vedmak)
- [ZBX-3944] added support of multibyte NIC names for the net.if.* checks under Windows (Sasha)
- [ZBX-3947] fixed compilation under AIX 5.2 with fileset lower than 5.2.0.40 (Sasha)
- [ZBX-3947] fixed compilation under AIX 5.2 with enabled IPv6 (Sasha)
- [ZBX-3426] fixed application unlink and clear when it is linked from template (Eduard)
- [ZBX-1074] fixed compilation errors regarding sem_lock and sem_unlock on HP-UX; thanks to Brian Collins (asaveljevs)
- [ZBX-3877] fixed slow Housekeeper for PostgreSQL 7.4+; thanks to Ildefonso Camargo (dimir)
- [ZBXNEXT-816] added support for reloading configuration cache from the command line (Richlv,Sasha)
- [ZBX-3063] added compatibility with PostgreSQL 9+; thanks to Andrey Groshev for patch (asaveljevs,Vedmak)
- [ZBX-3890] added logging of ORACLE warning messages while connecting to the database (Sasha)
- [ZBX-3880] fixed repeated processing of log-files through proxy when disabling a host or item (Sasha)
- [ZBX-3420] fixed wrong error message being logged in case of DNS resolution errors (asaveljevs,rudolfs)
- [ZBX-3519] fixed unterminated processes when system.run[,wait] times out and added proper output handling for system.run[,nowait] on UNIX (rudolfs)
- [ZBX-3768] fixed 'uptime' and 's' units as according to the documentation (Sasha)
- [ZBX-3490] added support for LVM devices and full path to devices to vfs.dev.read and vfs.dev.write; thanks to Takanori Suzuki (dimir, sasha)
- [ZBX-3862] fixed broken popups in frontend in Internet Explorer 7 (KB)
- [ZBX-3463] fixed MaxHousekeeperDelete configuration parameter being ignored for IBM DB2 (asaveljevs)
- [ZBX-3854] added saving of state of dynamic/fixed setting for time lines on all pages (KB)
- [ZBX-3847] fixed item history clearing not deleting data in trends_uint table (KB)
- [ZBX-3797] fixed processing of vfs.dev.* checks under FreeBSD (Sasha)
- [ZBXNEXT-799] added support of SRV records to net.tcp.dns.query[]; thanks to Edward Rudd (asaveljevs)
- [ZBX-1029] added lookup of Jabber SRV records to Jabber notifications; thanks to Edward Rudd (asaveljevs)
- [ZBXNEXT-792] added type parameter for system.hostname[] on Windows to support both NetBIOS and host names (rudolfs)
- [ZBXNEXT-791] added HostnameItem to Agent and Proxy configuration for setting the default Hostname (rudolfs)
- [ZBX-3192] fixed SNMP index cache to support SNMP target for each entry; thanks to Ilia Sotnikov (dimir)
- [ZBX-3825] fixed errors with single quotes in javascript messages (KB)
- [ZBXNEXT-782] added support of not-supported items in the history cache (Sasha)
- [ZBX-3072] fixed MySQL error when shutting down server (dimir)
- [ZBX-3105] added processing of garbage in configuration files (dimir)
- [ZBX-2083] fixed audit.details field cutting (Vedmak)
- [ZBX-3824] fixed unnecessary synchronization of "profiles" table in DM setup (asaveljevs)
- [ZBX-3821] removed warning messages about failed evaluation of trigger expressions (asaveljevs)
- [ZBX-3826] fixed recovering unsupported icmpping* items when a key has been entered incorrectly (Sasha)
- [ZBX-3766] fixed "Do" button in item form (KB)
- [ZBX-3417] removed trailing and leading space from phrase " - all groups - " (Alexei)
- [ZBX-3806] fixed HTTP pollers being started on Zabbix proxy (asaveljevs)
- [ZBX-3808] updated Brazilian Portuguese translation; thanks to Murilo Moreira de Oliveira (Alexei)
- [ZBX-3682] fixed import of map elements having empty label; thanks to Takanori Suzuki (Alexei)
- [ZBX-3679] fixed incorrect "No nodes defined" when screen selection popup has no elements (Alexei)
- [ZBX-3638] fixed displaying of vertical text in case of special HTML characters (Alexei)
- [ZBX-3582] fixed screen import (Vedmak)
- [ZBX-3801] added check for duplicate template IDs when creating host through API (KB)
- [ZBX-3802] fixed error when try to open custom screen from history link (Vedmak)
- [ZBX-3794] added timeout support to vfs.file.* commands (dimir)
- [ZBX-3747] replaced strcpy() and vsnprintf() calls with safer ones and strerror() with zbx_strerror() which also prints the error code (rudolfs)
- [ZBX-3760] fixed the CPU collector for processing the non-contiguous CPU IDs (Sasha)
- [ZBX-3796] select a graph with the same name if it exists when changing host in monitoring -> graphs (KB)
- [ZBX-3776] treat duplicate UserParameter as error (dimir)
- [ZBX-3728] fixed a warning message when removing a user script (Alexei)
- [ZBX-3731] fixed possible SQL errors when updating trends (Sasha)
- [ZBX-3772] improved performance of the history syncer (Sasha)
- [ZBX-3547] Rewrote performance counters and CPU stats collection for Windows (rudolfs)
- [ZBX-3677] added unit blacklist on the server side (dimir)
- [ZBX-3746] Fixed parsing of trigger expressions containing \\ (KB)
- [ZBX-3744] updated Japanese translation; thanks to Kodai Terashima (Richlv)
- [ZBX-3681] fixed API to leave internal PHP encoding in UTF-8 (Alexei)
- [ZBX-3353] fixed skipping web items in the host "Full clone" operation (Sasha)
- [ZBX-3503] fixed "incorrect usage of quotes" error (KB)
- [ZBX-3740] fixed compilation errors due to undefined SOL_IPV6 (asaveljevs,rudolfs,Sasha)
- [ZBX-2952] added Base64 data line wrapping in Email notifications (dimir)
- [ZBX-3698] fixed error in log wizard when expression had internal parentheses (KB)
- [ZBX-524] added log messages when syncing a proxy configuration data (Sasha)
- [ZBX-3671] fixed ORACLE SQL error when processing of the trigger function count() (Sasha)
Changes for 1.8.5
- [ZBX-3686] updated French translation; thanks to Joseph Bueno (Richlv)
Changes for 1.8.5rc1
- [ZBX-3672] fixed possible hang of history syncers when a zabbix[log] message is added while processing history data (Sasha)
- [ZBX-3644] fixed API permission checks for applications, items and triggers (Vedmak)
- [ZBX-3673] fixed processing of operators & and | in trigger and calculated items expressions (Sasha)
- [ZBX-3660] fixed macro resolving in map labels (Vedmak)
- [ZBX-3659] API exists() methods now return true/false instead of true/error (KB)
- [ZBX-2997] added global regular expression to be sent to proxies (for use with log, logrt and eventlog items) (rudolfs)
- [ZBX-1907] changed logging - when a proxy fails to connect to the server it logs "Still unable to connect" message max once a minute (rudolfs)
- [ZBX-3548] added IPV6_V6ONLY flag (where defined) for binding IPv4 and IPv6 interfaces separately (rudolfs)
- [ZBX-3626] fixed bugs on map export: duplicate image decoding and inserting duplicate map elements; thanks to Takanori Suzuki (KB)
- [ZBX-3453] improve performance of cpu collector (Sasha)
- [ZBX-3610] fixed active agent full buffer bug - stop processing active checks till the buffer is sent (rudolfs)
- [ZBX-3566] fixed error in administration->notifications and added a hint when no mediatypes are defined (KB)
- [ZBX-3628] fixed server crash while processing notification messages with an already deleted trigger (Sasha)
- [ZBX-3075] fixed a regex bug with zero-length strings (rudolfs)
- [ZBX-3621] changed the maximum number of processes for Zabbix daemons (asaveljevs)
- [ZBXNEXT-448] added trigger function logeventid that matches the last event ID to a regex (rudolfs)
- [ZBX-1419] improve and fix database upgrade patches for older versions (Richlv)
- [ZBX-3576] fixed showing triggers with disabled items in monitoring (Vedmak)
- [ZBX-3483] added missing fields in items mass update (Vedmak)
- [ZBX-3435] fixed error that sometimes appear after profile edit (Vedmak)
- [ZBX-2616] bundled DejaVu font upgraded from 2.32 to 2.33 (Richlv)
- [ZBX-1557] changed process_ping logic to return an error if fping doesn't give a value (or '-') for any of the hosts but outputs something (rudolfs)
- [ZBX-3430] fixed disappeared hints for "SSH", "Telnet" and "Database Monitor" item types in item form (Vedmak)
- [ZBX-3578] added arguments to the output when using agent with '-p' or '-t', modified default arguments in win32.c and common.c (rudolfs)
- [ZBX-3514] removed non "regexp" triggers from item log-form menu (Aly)
- [ZBX-3584] fixed allowed_hosts set to 'localhost' for items by default (Vedmak)
- [ZBX-3568] fixed processing of trigger functions with macros in item key parameters in notifications (Sasha)
- [ZBX-3076] disabled generation of events in case if some items or hosts in trigger expression are not active (Sasha)
- [ZBX-3562] fixed user macros in map element label expressions (Aly)
- [ZBXNEXT-508] added dayofmonth to trigger functions (rudolfs)
- [ZBX-3352] made item Y axis min/max items also change when used in screen with Dynamic enabled (Vedmak)
- [ZBX-3523] fixed error when open monitoring->maps and last viewed map was removed (Vedmak)
- [ZBX-3557] fixed possible incorrect usage of internal array pointers in frontend (Aly)
- [ZBX-2979] fixed trigger function time() test (Aly)
- [ZBX-3563] fixed host group filter in graph selection popup (Aly)
- [ZBX-3544] fixed user login method resetting attempts (Aly)
- [ZBX-3555] fixed possible pollers hang while processing ssh.run[] checks (Sasha)
- [ZBXNEXT-408] added zabbix[process,...] internal checks (Sasha)
- [ZBX-2262] added `hosts_templates_2' index (Sasha)
- [ZBX-3537] trigger events are now sorted by timestamp (KB)
- [ZBX-3472] changed item and discovery rule form to display SSH and SNMPv3 auth fields correctly when changing item type (KB)
- [ZBX-3542] reduced the amount of debugging output for configuration cache (asaveljevs)
- [ZBX-3536] made SNMP checks work when DNS resolves to IPv6 address; thanks to Marc Dequènes (asaveljevs,Sasha)
- [ZBX-3541] fixed processing of nodata() function (Sasha)
- [ZBX-3126] all checkboxes in map and screen import are now "on" by default (KB)
- [ZBX-3158] improved links in map element menu (Aly)
- [ZBX-3532] fixed add item to trigger expression from popup menu (Vedmak,Vlad)
- [ZBX-1357] fixed confusing date format in network maps (Richlv)
- [ZBX-3516] fixed items and hosts disappearing from configuration cache indexes (asaveljevs)
- [ZBX-3479] fixed possible hang of agents while processing scripts or net.tcp.service* checks (Sasha)
- [ZBX-3514] fixed log trigger wizard (Aly)
- [ZBX-3515] fixed names of SNMPv3 security levels, again (asaveljevs)
- [ZBX-3411] fixed trigger filter update when changing host (Aly,Vlad)
- [ZBX-3431] fixed severity for log and eventlog or mixed (Vlad)
- [ZBX-2913] fixed timeout handling in processing of web.page.* checks (sasha)
- [ZBX-3176] removed navigation dropdown from applications screen (Vedmak)
- [ZBX-3494] added database monitor items to the queue calculation (asaveljevs)
- [ZBX-3454] fixed clearing item edited using by Trigger-wizard (Vlad)
- [ZBX-3481] fixed massAdd for applications (KB)
- [ZBX-3480] fixed possible crash of server after shutdown of ORACLE server (Sasha)
- [ZBX-3457] in trigger wizard, use double symbol references past 26 entries (Vlad)
- [ZBX-983] fixed error when updating trigger (Vedmak)
- [ZBX-974] recompress some images with pngcrush (Richlv)
- [ZBX-3446] fixed possible hang of pollers - added timeout handler for external scripts (Sasha)
- [ZBX-1690] fixed undefined index when creating action with name that already exists (Vedmak)
- [ZBX-3461] fixed names of IPMI pollers in debug output and the number of items they take (asaveljevs)
- [ZBX-3100] fixed messages in popup when no proxies or discovery checks defined (Vedmak)
- [ZBX-3138] fixed bug when disabling application, webitems were disabled too (Vedmak)
- [ZBX-2951] made interval hidden for trapper items (Vedmak)
- [ZBX-2867] changed order of "Discovery" and "IT services" in configuration menu (Vedmak)
- [ZBX-3460] forbid saving host with enabled IPMI but without IPMI address (Vedmak)
- [ZBX-3047] fixed Zapcat compatibility for trigger expressions (Aly,Sasha,asaveljevs)
- [ZBX-2912] added check for valid UTF-8 characters in the incoming data (Sasha)
- [ZBX-1346] add more user parameter examples (Richlv)
- [ZBX-2922] changed log level from warning to debug for some messages (Sasha)
- [ZBX-3440] Added pagination to slide and discovery configuration (KB)
- [ZBX-3433] fixed removing deleted passive proxies from queue (Sasha)
- [ZBX-416] fixed PostgreSQL errors in configuration sender module when using DM setup (Sasha)
- [ZBX-3346] fixed items being polled more frequently than necessary (Sasha)
- [ZBX-3409] fixed semaphore and shared memory access permissions (Sasha)
- [ZBX-3173] made server-side JSON parser ignore whitespace better (asaveljevs)
- [ZBX-3425] updated Brazilian Portuguese translation; thanks to Murilo Moreira de Oliveira (Richlv)
- [ZBX-3403] fixed SQL statements for auto registration and discovery operations (Sasha)
- [ZBX-3403] removed UNIQUE constraint for autoreg_host_1 index (Sasha)
- [ZBX-3414] expressions for triggers with web items are marked as error in trigger wizard (Vedmak)
- [ZBX-3406] better API validation (Vedmak)
- [ZBX-3413] added escaping of parameters used in LIKE SQL statements (KB)
- [ZBX-3391] fixed wrong comparison operators used for strings (Vlad)
- [ZBX-1346] document LogSlowQueries configuration parameter (Richlv)
- [ZBXNEXT-612] added mapname URL parameter for monitoring->maps (Vedmak)
- [ZBX-886] remove duplicate translation strings (Richlv)
- [ZBX-3384] fixed server crash in a distributed monitoring setup with PostgreSQL (asaveljevs)
- [ZBX-3274] fixed SQLite3 semaphore errors while starting server or proxy (Sasha)
- [ZBXNEXT-614] add Slovak translation; thanks to Marcel Hecko (Richlv)
- [ZBX-2914] add Ubuntu upstart files; thanks to S. Canchon (Richlv)
- [ZBX-3381] negative multipliers for items with value type "numeric (float)" are now allowed (KB)
- [ZBX-1357,ZBX-3462] updated Japanese translation; thanks to Kodai Terashima (Richlv)
- [ZBX-3385] fixed trigger status change record in audit log (Vedmak)
- [ZBX-2825] make profiles form redirect to the last visited page on save or cancel (Vlad)
- [ZBX-3383] fixed error in audit log when filtering by Macro or Template (Vedmak)
- [ZBX-3378] updated Russian translation; thanks to dotneft and zalex_ua (Richlv)
- [ZBX-3350] fixed minor interface bug and it is now not possible to add host name longer than 64 chars (KB)
- [ZBX-3341] fixed host export - valuemap property is now exported as expected (KB)
- [ZBX-3338] updated Ukrainian translation; thanks to zalex_ua (Richlv)
- [ZBX-954] fix minor typos (Richlv)
- [ZBX-1419] don't print an informative message during upgrade if no orphan hosts were found (Richlv)
Changes for 1.8.4
1.8.4rc4 was released as 1.8.4 without any changes
Changes for 1.8.4rc4
- [ZBX-3351] fixed broken support of 1.4.x style configuration file format for WEB interface (Vedmak)
Changes for 1.8.4rc3
- [ZBX-3256] added automatic detection of fping command line option to use for specifying source IP address (asaveljevs)
- [ZBX-3333] fixed icmppingloss[] returning bad values when NIC bonding is used (asaveljevs)
- [ZBX-1985,ZBX-2394] fixed icmppingloss[] returning bad values when fping is capable of pinging both address families (asaveljevs)
- [ZBX-2825] fix after saving the profile it stays in the profile page (Vlad)
- [ZBX-1294] disabled GUI interface action elements for editing a templated trigger (KB)
- [ZBX-3306] fixed minimal value limit for action escalation period (Vedmak)
- [ZBX-3320] fixed host.create, template.create permission error for admin users (Vedmak)
- [ZBX-266] made debugging output for Web scenarios more useful (Sasha)
- [ZBX-1181] fixed infinite looping when failing cURL initialization and showing of such errors in the GUI (asaveljevs,Sasha,Vedmak)
- [ZBX-1181] fixed download speed, response time, and response code not being saved for failed Web scenario steps (asaveljevs)
- [ZBX-2851] fixed Apache hanging when frontend connects to empty database (Vedmak)
- [ZBX-2647] made some of hard coded strings translatable (KB)
- [ZBX-3294] fixed host status change confirmation dialog (Vedmak)
- [ZBX-3301] fixed server crash after libssh2_userauth_list() when processing SSH checks (asaveljevs)
- [ZBX-2395] fixed sending of the same message to the same user using different media types (asaveljevs)
- [ZBXNEXT-586] added sensor[device,sensor,<mode>] check for Linux 2.4 (asaveljevs)
- [ZBXNEXT-586] added sensor[device,sensor,<mode>] check for OpenBSD; thanks to Robert Nagy (asaveljevs)
- [ZBX-3252] fixed graph height calculations when graph height was less then 120px (KB)
- [ZBX-3261] fixed second level template deletion (Aly)
- [ZBX-3295] fixed compilation warnings in eztexting module if code configured without cURL library (Sasha)
- [ZBX-2862] it is now not possible to delete host group or user group used in scripts (KB)
- [ZBX-3281] fixed system.cpu.util[] for all processors combined on NetBSD (asaveljevs)
- [ZBX-3006] fixed some forms <input> elements are put inside <table> tag (Vedmak)
- [ZBXNEXT-176] added Zabbix server name input during setup (Vedmak)
- [ZBX-3253] added schema selection for db2 setup and a configuration file parameter on the server (asaveljevs,Vedmak)
- [ZBX-3239] fixed error in Proxies screen on Oracle, when no proxy defined (Vedmak)
- [ZBX-3273] removed renewed auto registration notifications for already created hosts (Sasha)
- [ZBX-1294] disabled "Add" and "Toggle input method" for templated trigger expressions (KB)
- [ZBX-3223] it is now possible to gather network interface statistics under a normal user on OpenBSD; thanks to Robert Nagy (asaveljevs,Sasha)
- [ZBX-3270] fixed server crash when processing calculated items with non-numeric user macros (asaveljevs)
- [ZBXNEXT-564] added new {PROXY.NAME} and {HOSTNAME} macros for auto registration notifications (Sasha)
- [ZBXNEXT-564] added support of {PROXY.NAME} macro for discovery and trigger notifications (Sasha)
- [ZBX-3269] fixed processing of vfs.dev.read/write metrics for devices with trailing digits (Sasha)
- [ZBX-3115] fixed returned data type for net.tcp.listen under Solaris and FreeBSD (Sasha)
- [ZBX-3115] fixed returned data type for system.users.num metric (Sasha)
- [ZBX-3267] fixed trigger updating through API (Aly)
- [ZBX-3259] fixed log trigger wizard functionality: now it can be used for any item with value type = log, text or char (KB)
- [ZBX-2672] added internal checks zabbix[*] to help items in data.sql (Sasha)
- [ZBX-3255] fixed string escaping under IBM DB2 (asaveljevs,Sasha)
- [ZBX-3201] fixed evaluation of calculated items with multiline expressions (asaveljevs)
- [ZBX-3210] fixed incorrect height scaling in graphs (KB,asaveljevs)
- [ZBX-3231] improved item key validation in the GUI and notification macro parser on the server (KB,asaveljevs)
- [ZBX-3061] fixed screen import problem with "Status of triggers" screen type (Aly)
- [ZBX-3249] added define for frontend graphing on partitioned DB data store (Aly)
- [ZBX-3216] fixed setup not catching existing configuration file on step 6 (Vedmak)
- [ZBX-3240] updated Russian translation; thanks to dotneft and zalex_ua (Richlv)
- [ZBX-3229] improved output of configure script (Richlv,asaveljevs)
- [ZBX-3222] fixed Zabbix returns to incorrect page from acknowledge form (Vedmak)
- [ZBX-2577] fixed template trigger update affects downstream triggers (Vedmak)
- [ZBX-3221] fixed host deletion through API (Aly)
- [ZBX-3220] fixed error when delete host on postgresql db (Vedmak)
- [ZBX-2293] fixed server terminating when sending "database down" alerts using scripts (asaveljevs,Sasha)
- [ZBX-3184] fixed 1000 vs. 1024 multipliers for bits, bytes, and other units in notification macros (asaveljevs)
- [ZBX-3184] fixed negative values with unit suffixes in notification macros (asaveljevs)
- [ZBX-3211] updated Ukrainian translation; renamed locale to uk_ua; thanks to zalex_ua (Richlv)
- [ZBX-3085] fixed possible stop to send data from proxy after shutdown of MySQL server; thanks to Takanori Suzuki (Sasha)
- [ZBX-3169] updated French translation; thanks to Alixen (Alexei)
- [ZBX-3218] server and proxy are no longer built with libcurl by default (asaveljevs)
- [ZBX-3145] fixed user macros resolving (Vedmak)
- [ZBX-3215] fixed filtering by group in trigger selection popup (Vedmak)
- [ZBX-3144] removed parsing of existing expression in trigger expression popup (Vedmak)
- [ZBX-3207] fixed possibility to click on web items in trigger expressions (Vedmak)
- [ZBX-3021] fixed possibility to create dependency between host and template triggers (Vedmak)
- [ZBX-3205] fixed incorrect event duration count (Aly)
- [ZBX-3183] fixed maintenance permission issue (KB)
- [ZBX-3183] added screenname GET parameter support to screens.php (KB)
- [ZBX-2639] added net.if.total and net.if.list items in the help_items table (Sasha)
- [ZBX-1600] added support of value mapping for {ITEM.VALUE} macro in notifications (Sasha)
- [ZBX-3065] fixed undefined variables in maps.php when logged as guest and no maps defined (Vedmak)
- [ZBX-3206] fixed timeout for simple checks (removed hardcoded timeout 3 sec) (Sasha)
- [ZBX-2787] it is no longer possible add invalid time for IT services, like 1:111 or 23:67 or 4:66 and so on (KB)
- [ZBXNEXT-557] added TL compatibility information when executed AIX agent with --version flag (Sasha)
- [ZBX-3195] fixed slow sync of trends data while server shutdown (Sasha)
- [ZBXNEXT-549] added trigger function strlen() (asaveljevs,Vedmak)
- [ZBX-3156] fixed integer trends for child node on master; thanks to Łukasz Reszka (asaveljevs)
- [ZBX-3040] guest users now can't edit trigger comments (KB)
- [ZBX-3123] fixed Oracle SQL errors in processing of IT services (Sasha)
- [ZBXNEXT-205,ZBXNEXT-355] added support of user macros in community, OID, security name and passphrases fields of SNMP items (Sasha,Aly)
- [ZBXNEXT-357] added support of user macros in parameters field of database item; thanks to Kirill Fateev (Sasha)
- [ZBX-3179] fixed memory leaks and 100% CPU usage for proxy with SQLite3 (asaveljevs)
- [ZBXNEXT-538] include ibm_db2.sql and images_ibm_db2.sql files in distribution package (Sasha)
- [ZBX-3107] fixed graph bugs: problem with large values, problem with uptime format (KB)
- [ZBX-2349] unicode support for macros and web scenario steps (KB)
- [ZBX-3137] fixed errors related to deleting an application that is used in a web scenario (KB)
Changes for 1.8.4rc2
- [ZBXNEXT-538] added support for IBM DB2 (Aly,asaveljevs,Sasha)
- [ZBX-1362] optimized alert performance (KB)
- [ZBX-2852] fixed map not updating in slideshow (Vedmak)
- [ZBX-1346] update example agent daemon configuration file for Windows with parameters from Zabbix manual (Richlv)
- [ZBX-2984] fixed incorrect trigger line in graphs. For line drawing was used axis from first item not trigger item (Vedmak)
- [ZBX-3059] different titles for popup menu depending on data type (KB)
- [ZBX-2861] fixed error when adding users to usergroups (KB)
- [ZBX-1492] added confirmation dialog when deleting macros (KB)
- [ZBX-3135] add an example for using standard input in zabbix_sender manpage (Richlv)
- [ZBX-2616] bundled DejaVu font upgraded from 2.31 to 2.32 (Richlv)
- [ZBX-2630] fixed ability to translate various strings in the frontend depending on their context (Richlv)
- [ZBX-3091] fixed error when updating proxy (Vedmak)
- [ZBX-3120] fixed error when creating a new map (Vedmak)
- [ZBX-3042] fixed submitParent field error (KB)
- [ZBX-1038] fixed last(), prev(), diff(), change(), and abschange() not working properly with long textual values (asaveljevs)
- [ZBXNEXT-532] specify timestamp format in zabbix_sender manpage and help output; hint at required item configuration in zabbix_sender manpage (Richlv)
- [ZBX-3103] updated French translation; thanks to Alixen (Richlv)
- [ZBX-3095] fixed processing of 'Host template' condition in actions (Sasha)
- [ZBX-2981] removed unnecessary queries in map permission checks (Vedmak)
- [ZBX-3080] fixed javascript not cached by browsers (Vedmak)
- [ZBX-2661] improved displaying discovery checks in configuration (Vedmak)
- [ZBX-3086] fixed errors when edit hostgroup linkage for hosts and templates (Vedmak)
- [ZBX-3025] resurrected unreachable pollers and StartPollersUnreachable configuration parameter (asaveljevs,Sasha)
- [ZBX-2351] fixed server trying to insert duplicate eventids into the database (asaveljevs,Sasha)
- [ZBX-3069] renamed monitoring graphs combobox "All" entry to "not selected" (Vedmak)
Changes for 1.8.4rc1
- [ZBX-2872] greatly improved API methods consistency (Aly)
- [ZBX-3070] fixed event date format inconsistency (Vedmak)
- [ZBX-3068] fixed possible crash of server while processing passive proxies (Sasha)
- [ZBX-3068] fixed server memory leak while processing passive proxies (Sasha)
- [ZBX-2749] fixed length parameter being ignored for web.page.regexp[] (asaveljevs)
- [ZBX-2749] fixed agent crash in web.page.regexp[] on very long matched fragments (asaveljevs)
- [ZBX-2913] fixed agent becoming unresponsive due to web.page.* checks (asaveljevs)
- [ZBXNEXT-430] added support of net.tcp.listen and net.udp.listen under Linux (Sasha)
- [ZBX-453] fixed --disable-static enabling static compilation (asaveljevs)
- [ZBX-2992] acknowledges are now hidden in event details when turned off (KB)
- [ZBX-3050] fixed that host can be named like an existing template and otherwise (KB)
- [ZBX-3019] fixed templated graphs not being copied to discovered hosts in DM setup; thanks to Alexander Ignatyev (asaveljevs)
- [ZBX-2860] fixed usergroup renaming (Vedmak)
- [ZBX-3027] avg, delta, max, min, sum functions in popup_trexpr.php have a time shift input, so that this parameter now can be specified through GUI (KB)
- [ZBX-2827] added checks when adding or updating maintenances, so that duplicate names could not be added (KB)
- [ZBX-2978] fixed graphs import with Y axis set to an item (Vedmak)
- [ZBX-2507] minimal graph dimension size is set to 20 pixels (Vedmak)
- [ZBX-2665] web scenario steps on graphs now are in correct order (Vedmak)
- [ZBX-2995] fixed crash in zbx_mem_realloc(), reduced memory usage and memory fragmentation in configuration cache (asaveljevs)
- [ZBX-3024] in trigger expression selection popup, expressions are now filtered, depending on item type (KB)
- [ZBX-3023] fixed repeated notifications after maintenance period (Sasha)
- [ZBX-3017] fixed error when try to add dependency to template trigger that is linked to a host (Vedmak)
- [ZBX-3008] fixed server generating multiple unknown events for triggers with multiple items (asaveljevs)
- [ZBX-3011] passwords are no longer shown in HTML when editing media types (Vedmak)
- [ZBXNEXT-510] sending of SMS messages through Ez Texting is now integrated into Zabbix (asaveljevs,Vedmak)
- [ZBX-1425] option ALL is added to host group dropdown when adding or editing host group (KB)
- [ZBX-1675] fixed map element coordinates do not update after the element has been dragged (Vedmak)
- [ZBX-1292] item names are now prefixed with host names, if they are from different hosts in trigger description popup (KB)
- [ZBX-2844] added HTML escaping of screen names in combox box output in monitoring (KB)
- [ZBXNEXT-373] added support for NTLM authentication to Web monitoring (asaveljevs,Vedmak)
- [ZBX-1486] when multiple map elements are selected, pressing "Remove" in editing form removes all selected elements (KB)
- [ZBX-1442] when linking objects during map editing, link "apply" does not close the form any more (KB)
- [ZBX-2986] acknowledges now are hidden in last 20 issue popup when turned off (KB)
- [ZBX-2988] fixed {ITEM.VALUE} macro in Monitoring/Events screen (Sasha)
- [ZBX-2974] fixed possibility to delete templated applications (Vedmak)
- [ZBX-1172] added sorting for audit resource dropdown (Vedmak)
- [ZBX-2982] added IP and port of Zabbix server in dashboard widget "Status of Zabbix" (Vedmak)
- [ZBX-2964] fixed processes failing to start when no IPv6 is available on the system (asaveljevs,Sasha)
- [ZBX-2977] fixed removing unused records in node_cksum table; thanks to Łukasz Reszka (Sasha)
- [ZBX-2946] fixed building from FreeBSD ports with libexecinfo installed; thanks to Dmitry Yakovlev (asaveljevs)
- [ZBX-2957] changed mime type for downloadable locale file (Vedmak)
- [ZBX-2493] fixed obsolete macro used by default; start using different subject and message for default action messages (Richlv)
- [ZBX-2976] fixed server crash when processing zabbix[items_unsupported] under DebugLevel=4 (asaveljevs)
- [ZBX-2950] added popup menus for map elements (Vedmak)
- [ZBX-2967] added filter for hosts configuration screen (Vedmak)
- [ZBX-2962] fixed template macro update (Vedmak)
- [ZBX-2572] added configuration define for zapcat compatibility mode (Vedmak)
- [ZBX-2690] added validation for screens XML (Vedmak)
- [ZBX-2942] increased minimum interval for ICMP pings to 20 ms; thanks to nelsonab (asaveljevs)
- [ZBX-2945] email sender now knows how to handle multiline responses from SMTP servers (asaveljevs)
- [ZBXNEXT-360] zabbix_sender now allows "-" for default hostname in input files; thanks to Dennis Jacobfeuerborn (asaveljevs)
- [ZBX-1908] fixed file and socket descriptors leaking to child processes; thanks to Dan Horak (asaveljevs)
- [ZBX-2960] split agentd userparameters out using includable files, add more MySQL examples (Richlv)
- [ZBXNEXT-458] user macros (e.g., {$MACRO}) can now be used in item and trigger descriptions (asaveljevs,Vedmak)
- [ZBX-2959] fixed trailing whitespace & missing trailing newline in downloaded translations (Richlv)
- [ZBX-2910] fixed 'strerror_from_system undefined' compilation warning on Windows; thanks to Takanori Suzuki (asaveljevs)
- [ZBX-2902] fixed system.cpu.load[] and system.cpu.util[] being slightly exaggerated on Windows; thanks to Kodai Terashima (asaveljevs)
- [ZBX-2954] fixed translations in template delete popups (Vedmak)
- [ZBX-2938] fixed not showing problems on map for hosts in maintenance (Vedmak)
- [ZBXNEXT-238] made zabbix_sender gather as much data as possible before sending (asaveljevs)
- [ZBX-2948] fixed export of trigger dependencies (Vedmak)
- [ZBX-2949] fixed Templates screen Go action 'Delete' (Vedmak)
- [ZBX-2934] added new conf. constants for roundoff configuration (Vedmak)
- [ZBX-2907] fixed errors when action condition has trigger from another node (Vedmak)
- [ZBX-2928] fixed "triggers info" unknown counter, added not classified triggers count (Vedmak)
- [ZBX-2914] Gentoo initscript cleanup (Richlv)
- [ZBX-2914] fixed incorrect references in Fedora initscripts (Richlv)
- [ZBX-2925] empty values for translations won't be written to resulting file (Vedmak)
- [ZBX-2933] fixed js error in IE when Print button pressed (Vedmak)
- [ZBX-2937] fixed missing style files for IE (Vedmak)
- [ZBX-2864] fixed print button creating multiple sid url parameters (Vedmak)
- [ZBX-2899] fixed slideshow delays broken after upgrade from 1.8.2 (Vedmak)
- [ZBX-2923] fixed triggers that depend on problem trigger are shown as problem on map (Vedmak)
- [ZBX-2683] minor updates for the Latvian translation (Richlv)
- [ZBX-2916] fixed duplicate parent map links in monitoring maps (Vedmak)
- [ZBX-2905] fixed single trigger name expanding, unknown problem count and duplicate elements count in network maps (Vedmak)
- [ZBX-2914] unified pidfile path in example Debian initscripts with example config files (Richlv)
- [ZBX-886] removed duplicate locale string S_ACTIONS_BIG (Richlv)
- [ZBX-633] fixed server crash on disconnected IPMI devices (asaveljevs)
- [ZBX-2904] fixed some unknown triggers not shown in status of triggers screen (Vedmak)
- [ZBX-2900] added spaces to "From:" and "To:" email headers (asaveljevs)
- [ZBX-2894] fixed multiple references on same line in map labels (Vedmak)
- [ZBX-2888] fixed host profiles export (Vedmak)
- [ZBX-2890] fixed parsing of negative values in trigger expressions (Vedmak)
- [ZBX-2798] added more checks for unknown nodes to communication between nodes (asaveljevs)
- [ZBX-2716] make all example initscripts point to sbin for daemon path (Richlv)
Changes for 1.8.3
- [ZBX-2875] updated Japanese translation; thanks to Kodai Terashima (Richlv)
- [ZBX-2856] removed debug info (Aly)
- [ZBX-2855] fixed new line symbol for latest Opera browser (Aly)
Changes for 1.8.3rc4
- [ZBX-2226] fixed template item update, when linked to host with existing item with same key (Aly)
- [ZBX-2853] updated Ukrainian translation; thanks to zalex_ua (Richlv)
- [ZBX-1324] replaced more user visible strings ZABBIX with Zabbix (Richlv)
- [ZBX-2836] fixed text items history not displaying all spaces in text (Vedmak)
- [ZBX-2835] improved screen permission checks in frontend (Vedmak)
- [ZBX-2829] fixed web item graphs favourites (Vedmak)
- [ZBX-2812] updated French translation; thanks to Alixen (Vedmak)
- [ZBX-2823] updated Russian translation; thanks to Pustovalov Alexey (Vedmak)
- [ZBX-2817] fixed history links for history and media types (Vedmak)
- [ZBX-2833] fixed JS error in monitoring events screen (Aly)
- [ZBX-2819] fixed showing trends for symbolic items (Vedmak)
- [ZBX-2825] made profile form redirect to the last visited page on successful save (Aly)
- [ZBX-2809] fixed login problem in case of guest user being disabled (Aly)
- [ZBX-2807] fixed email notifications being broken when their subjects have line breaks (asaveljevs)
- [ZBX-2203] fixed superfluous line breaks for values returned by eventlog[] (asaveljevs)
- [ZBX-2803] added detection of the proper type to use in place of socklen_t (asaveljevs)
- [ZBX-2822] fixed js error on node selection (Aly)
- [ZBX-2821] fixed reference to removed icons (Vedmak)
- [ZBX-2784] changed icons style (Vedmak)
- [ZBX-2820] fixed minor visual bugs (Vedmak)
- [ZBX-2766] fixed triggers info in status of triggers page in fullscreen mode (Aly)
Changes for 1.8.3rc3
- [ZBX-2799] fixed map element host in maintenance (Aly)
- [ZBX-2781] fixed timeline in case of usertime going over possible period (Aly)
- [ZBX-2803] fixed agent compilation on HP-UX with the native HP-UX C compiler (asaveljevs)
- [ZBX-2745] improved performance of screen element "History of events" (Aly)
- [ZBX-2774] fixed GUI messaging in DM setup (Aly)
- [ZBX-2786] fixed errors in trigger dependency mass update popup (Vedmak)
- [ZBX-2536] fixed agent crash when processing proc.mem[] and proc.num[] on NetBSD (asaveljevs)
- [ZBX-2671] fixed detection of various system headers during ./configure (asaveljevs)
- [ZBX-2800] fixed undefined variable if updating a trigger with incorrect function (Vedmak)
- [ZBX-2789] forbid active agent items to have 0 interval (Vedmak)
- [ZBX-2794] fixed sorting in configuration web (Vedmak)
- [ZBX-2792] fixed status sorting in maintenances (Vedmak)
- [ZBX-2726] fixed statuses for discovery events (Vedmak)
- [ZBX-2785] creation of empty slideshows prohibited (Vedmak)
- [ZBX-2791] fixed host menu in "top 100 triggers" in ie7 (Vedmak)
- [ZBX-2790] fixed maintenance times reset while configuring maintenance (Vedmak)
- [ZBX-2773] changed buttons css for Dark orange theme (Vedmak)
- [ZBX-2777] fixed map labels when "status only" option is set (Vedmak)
- [ZBX-2775] updated Brazilian Portuguese translation; thanks to Murilo Moreira de Oliveira (Vedmak)
- [DEV-468] improved theme colouring in IE (Aly)
Changes for 1.8.3rc2
- [ZBX-2767] fixed time stamp in German locales (Aly)
- [ZBX-2764] fixed database monitor values not being accepted from proxy (asaveljevs,Sasha)
- [ZBX-2752] improved text colouring (Aly)
- [ZBX-2748] fixed compilation on OpenBSD 4.7 due to undefined KERN_PROC (asaveljevs)
- [ZBX-2758] fixed underlined filter label in Opera (Aly)
- [ZBX-2763] fixed saving user profile (Aly)
- [ZBX-2759] fixed item form not saving params field (Vedmak)
- [ZBX-2762] fixed sql error when "all" hosts is selected in application popup (Vedmak)
- [ZBX-2757] fixed calendar colours in Dark orange theme (Vedmak)
- [ZBX-2754] fixed possible undefined variables in frontend (Aly)
- [ZBX-2761] improved performance in search page (Aly)
- [ZBX-2683] minor updates for the Latvian translation (Richlv)
- [ZBX-2741] updated French translation; thanks to Alixen (Richlv)
- [ZBX-2700] updated Czech translation; thanks to Jakub Kalas (Richlv)
- [ZBX-2739] fixed empty list of items when "all" selected in items popup (Vedmak)
- [ZBX-2747] improved sql when saving triggers (Vedmak)
- [ZBX-2750] fixed undefined index when deleting graph (Vedmak)
- [ZBX-2742] fixed item deletion with postgre (Vedmak)
- [ZBX-2738] fixed problems with Ukrainian locales (Aly)
- [ZBX-2740] fixed js errors in items section in IE (Aly)
Changes for 1.8.3rc1
- [DEV-468] added new frontend theme - Dark orange (Aly)
- [ZBX-2731] fixed permissions problem with hostgroup names containing '[]' (Vedmak)
- [ZBX-2733] fixed the timer process so that it does not recalculate extraneous triggers for an item (asaveljevs)
- [ZBX-2729] improved host-group and host filter selection (Aly)
- [DEV-465] added messaging system (Aly)
- [ZBX-2697] forbid creation of maintenance without hosts/groups (Vedmak)
- [ZBX-2711] added links to host profile in dashboard "last 20 issues" host menu (Vedmak)
- [ZBX-2719] fixed events delay for one minute in frontend (Vedmak)
- [ZBX-2720] in actions conditions trigger host is now displayed (Vedmak)
- [ZBX-2685] fixed map elements not always change position when coords are manually set (Vedmak)
- [ZBX-2664] fixed viewed period and filter status reset in web monitoring (Vedmak)
- [ZBX-2683] removed dead entries and added some translated strings for the Latvian translation (Richlv)
- [ZBX-2682] added Czech translation; thanks to Jakub Kalas (Richlv)
- [ZBX-2669] fixed not showing map label when background image is used (Vedmak)
- [ZBXNEXT-436] added unacknowledged problem display for maps (Vedmak)
- [ZBX-2561] refactored usergroups api, improved item deletion (Vedmak)
- [ZBX-2634] fixed instability of Zabbix processes on Solaris due to them crashing in signal handlers (asaveljevs)
- [ZBX-2670] make it clear in the 'configure' help output that full path to odbc_config should be specified (Richlv)
- [ZBX-2666] fixed detection of resolv.h and net/if.h (asaveljevs)
- [ZBX-2657] fixed bugs with non closing item select popups in bar reports (Vedmak)
- [ZBXNEXT-425] added new macros for acknowledged events count (Vedmak)
- [ZBX-2642] fixed items multiplier field (Vedmak)
- [ZBX-2639] now when do full clone template, linkage list is cleared (Vedmak)
- [ZBX-2598] fixed labels with linebreak in maps (Aly)
- [ZBXNEXT-426] added dashboard option to show unack problems (Vedmak)
- [ZBX-2555] fixed simple checks for FTP, POP, and NNTP protocols so that they close sessions properly (asaveljevs)
- [ZBX-2553] fixed simple checks ignoring server replies (asaveljevs)
- [ZBX-2612] fixed system.stat showing cpu idle and I/O wait time over 100% on AIX (asaveljevs)
- [ZBX-1324] replaced more user visible strings ZABBIX with Zabbix (asaveljevs,Richlv)
- [ZBX-2616] bundled DejaVu font upgraded from 2.30 to 2.31 (Richlv)
- [ZBX-2562] improved sessions store (Aly)
- [ZBXNEXT-424] enhanced status of trigger filter (Vedmak)
- [ZBX-2599] fixed processing of hexadecimal or octal data by proxy (Sasha)
- [ZBX-2597] fixed processing of telnet results with long prompts (Sasha)
- [ZBX-2595] fixed logformat field showing (Maxim Andruhovich / AM)
- [ZBX-2593] fixed possibility to copy item between templates that are linked to same host (Vedmak)
- [ZBX-2585] removed spaces from charts title & fixed date format for chart4.php (Maxim Andruhovich / AM)
- [ZBX-2592] added support of comma character (,) for scripts in action remote commands (Sasha)
- [ZBX-2575] removed outdated and undocumented environment variables from alert scripts (asaveljevs)
- [ZBX-2574] improved fixed graph Y axis measurement (Aly)
- [ZBX-2576] small text changes in administration/audit (Vedmak)
- [ZBX-1857] fixed item form correct processing, removed refreshing when item type is changed (Maxim Andruhovich / AM)
- [ZBX-2528] fixed default language loading before using phrases, warning messages removed which were displayed after login (Maxim Andruhovich / AM)
- [ZBXNEXT-343] added possibility to unlink and clear templates when mass update hosts templates (Vedmak)
- [ZBX-1930] all top indents of icon labels now is equal (Maxim Andruhovich / AM)
- [ZBX-2152] fixed names of SNMPv3 security levels (asaveljevs)
- [ZBX-2563] fixed warnings in m4/libunixodbc.m4 with newer autotools (asaveljevs)
- [ZBX-2543] fixed password reset when edit user profile and auth type is not internal (Vedmak)
- [ZBX-2524] fixed deleting media types (Aly)
- [ZBX-2557] fixed incorrect message when add proxy with name that already exist (Vedmak)
- [ZBX-2492] fixed Japanese translation, all sprintf and their placeholders have been removed from phrases from all languages (Maxim Andruhovich / AM)
- [ZBX-2551] fixed not shown errors in configuration/triggers (Vedmak)
- [ZBX-2552] fixed multiple events for triggers with complicated expressions (Sasha)
- [ZBX-2532] fixed outdated information in "server info" screen element (Sasha)
- [ZBXNEXT-377] added support of passive mode for proxies (Sasha)
- [ZBX-2556] added dropdown length limit in frontend (Aly)
- [ZBX-2548] fixed sorting in items popup when adding items to simple graph, disabled dropdown with tooltip showing filtration added as well (Maxim Andruhovich / AM)
- [ZBX-2547] fixed errors in installation (Aly)
- [ZBX-2277] fixed menu position on screen (Aly)
- [ZBX-2339] fixed height of row in resource "Plain text" in screens (Aly)
- [ZBX-2459] fixed setting trigger value to unknown on disabling (Aly)
- [ZBX-2414] added PHP session module check as requirement in dashboard and installation (Maxim Andruhovich / AM)
- [ZBX-2526] fixed graph refresh problem when referred from screens page (Aly)
- [ZBX-2525] improved actions API code (Vedmak)
- [ZBX-2324] fixed guest user settings not being stored (Vedmak)
- [DEV-461] improved map creation/editing by adding align option (Aly)
- [ZBX-2518] fixed new map saving (Aly)
- [ZBX-2469] fixed screen API (Vedmak)
- [ZBXNEXT-396] added optional parameters 'from' and 'to' to zabbix[queue] (asaveljevs)
- [ZBX-2511] fixed compilation on FreeBSD with IPv6 due to FD_SETSIZE being undefined (asaveljevs)
- [ZBX-2503] fixed server and proxy crash with Oracle in cases DBUser and DBPassword parameters were not specified (asaveljevs)
- [ZBX-2074] fixed web scenarios showing incorrect speed (Vedmak)
- [ZBX-2486] fixed syntax error in 1.6 PostgreSQL upgrade script (asaveljevs)
- [ZBX-2336] fixed 'system.hostname' being empty on Windows hosts with names longer than 15 characters (asaveljevs)
- [ZBX-2251] removed error displaying in area of graphics (Maxim Andruhovich / AM)
- [ZBX-1327] page is now remembered correctly after performing actions (Vedmak)
- [ZBX-1211] fixed cell spacing in empty cells (Maxim Andruhovich / AM)
- [ZBX-2372] fixed bug with date in local language, now short and long month names shown correctly (Andruhovich Maxim / AM)
- [ZBX-2385] added macro {TRIGGER.PROBLEM.EVENTS.PROBLEM.UNACK} (Vedmak)
- [ZBX-2040] annoying "double check" popups removed from copy to & mass update actions of items and triggers (Maxim Andruhovich / AM)
- [ZBX-2482] fixes in chart graphs avg calc (Aly)
- [ZBX-1477] fixed moving screen elements with spans (Vedmak)
- [ZBXNEXT-279] added links to parent elements for item and trigger form (Vedmak)
- [ZBX-2376] port parameter to tcp and tcp_perf is now mandatory (asaveljevs)
- [ZBX-2376] added ldap, ldap_perf, ntp, and ntp_perf simple checks (asaveljevs)
- [ZBX-808] renamed service.ntp parameter of net.tcp.service{.perf} to ntp (asaveljevs)
- [ZBX-2011] plain ASCII subjects are no longer base64-encoded, fixes issues with email to SMS gateways (asaveljevs)
- [ZBXNEXT-319] multirow inserts are now used for PostgreSQL 8.2 and higher (asaveljevs)
- [ZBXNEXT-392] our daemons no longer crash after "strace -p" (asaveljevs)
- [ZBXNEXT-138] our daemons can now listen on multiple IPs, see ListenIP configuration parameter (asaveljevs)
- [ZBX-2031] fixed comparison of empty strings with Oracle that led to duplicate rows in dservices (asaveljevs)
- [ZBX-2409] fixed server crash when deleting unreachable hosts in discovery (asaveljevs)
- [DEV-461] changes in GUI configuration menu (Aly)
- [ZBX-2473] fixed timescroll most right position when "now" (Aly)
- [ZBX-1193] improved macros form (Vedmak)
- [ZBX-2035] fixed host full cloning (Vedmak)
- [ZBX-1986] fixed empty Y axis if item values are zeros (Aly)
- [ZBX-2492] updated Japanese translation; thanks to Kodai Terashima (Richlv)
- [ZBX-1357] update Hungarian translation; thanks to Laszlo Szabo (Richlv)
- [ZBX-2489] fixed server crash when receiving data using the old protocol (asaveljevs)
- [ZBX-2474,ZBXNEXT-378] fixed page refresh on filter change, now all filters hiding and showing works without refresh (Maxim Andruhovich / AM)
- [ZBX-2488] changed filter from Web Monitoring to External Check (Maxim Andruhovich / AM)
- [ZBX-2483] fixed showing latest data by filter when clicking from dashboard with GUI option 'Dropdown first entry' -> None (Maxim Andruhovich/AM)
- [ZBX-1529] fixed macros expand to nothing in templates (Vedmak)
- [ZBX-2461] fixed complex bugs with trigger expressions (Maxim Andruhovich / AM)
- [ZBX-1357] updated German translation; thanks to Peter Schultz (Richlv)
- [ZBX-2319] fixed escaping locales on download (Aly)
- [ZBX-2460] fixed auto adding host group to updated host (Aly)
- [ZBX-2367] improved using DISTINCT rule in queries in API (Aly)
- [ZBX-2408] fixed mute button in status of triggers page (Aly)
- [ZBX-2477] fixed dynamic graphs disappear from screens (Vedmak)
- [ZBX-1346] clarify some parameter values in the example configuration files (Richlv)
- [ZBX-2471] fix location of the space in a translatable string (Richlv)
- [ZBX-954] fix Hungarian language name (Richlv)
- [ZBX-2457] change 'type' keyword to 'ENGINE' for table creation in MySQL schema (Richlv)
- [ZBX-2466] fixed item filter form (Vedmak)
- [ZBX-1607] now trigger line is visible in all Zabbix themes in all states and severity in corresponding severity colour mixed with opposite colour which stored in defines in hex (Maxim Andruhovich / AM)
- [ZBX-2105] fixed acknowledging events from dashboard for different nodes (Aly)
- [ZBX-2441] fixed handling of begin/commit/rollback statements with temporarily unavailable SQL server (Sasha)
- [ZBX-2432] fixed warning message in templates when template has linked templates (Maxim Andruhovich / AM)
- [ZBX-2325] improved groups/hosts selecting for filter dropdowns (Vedmak)
- [ZBX-2433] fixed time not updated on slides when now is selected (Vedmak)
- [ZBX-2452] fixed parsing of integer values from SNMP's Hex-STRING (asaveljevs)
- [ZBX-2313] forbid to add graph from templates to screen (Vedmak)
- [ZBX-1503] added information message after host delete action, about host being deleted (Maxim Andruhovich / AM)
- [ZBX-2418] fixed bug with JavaScript URL parser, anchor was recognized as part of file (Maxim Andruhovich / AM)
- [ZBXNEXT-323] improved bad performance of the trends for large number of items (Sasha)
- [ZBXNEXT-327] more intuitive load balancing of pollers with a single item queue (asaveljevs)
- [ZBXNEXT-326] more efficient synchronization of configuration data (asaveljevs)
- [ZBX-2153] fixed server crash due to unaligned memory access (asaveljevs)
- [ZBX-2092] fixed label line height in maps, now all lines have the same line height (Maxim Andruhovich / AM)
- [DEV-377] improved global search (Aly)
- [ZBX-1510] fixed history view bound by minute issue (Aly)
- [ZBX-2339] fixed row height for type of information "text" (Aly)
- [ZBX-2201] improved history page (Aly)
- [ZBX-2359] fixed graph lines for fixed Y axis with items draw functions "All" (Aly)
- [ZBXNEXT-335] links starting with http(s) are now clickable in hosts inventory (Vedmak)
- [ZBX-1537] fixed multiple displaying of same host, from which were deleted graph, when deleting mass graphs (Maxim Andruhovich / AM)
- [ZBX-1263] fixed misleading log messages that referenced agent for any kind of unsupported item (asaveljevs)
- [ZBXNEXT-58] added zabbix[{history_log,history_text,history_uint,trends_uint}] internal checks (asaveljevs)
- [ZBX-2446] fixed compilation on AIX 5.3 with OS level 5300-05 or earlier (Sasha)
- [ZBX-2027] fixed selecting wrong host after cancelling trigger comment (Vedmak)
- [ZBX-2253] fixed delete confirmation dialogue referring to empty element (Vedmak)
- [ZBX-2370] fixed duration value in monitoring events for multiple problem triggers (Vedmak)
- [ZBX-507] made UserParameters work with zabbix_agent(d) -p and -t (asaveljevs)
- [ZBX-2326] fixed XSS vulnerability in triggers page; later independently discovered by VUPEN Security (Aly)
- [ZBX-2326] fixed dynamic chart titles, now all symbols are rendered correctly (Maxim Andruhovich / AM)
- [ZBX-2250] value mapping is now applied for {ITEM.LASTVALUE} macro inside triggers description (Vedmak)
- [ZBX-1436] fixed trigger events display after next steps monitoring -> triggers -> click on any event time (Maxim Andruhovich / AM)
- [ZBX-1532] added screen name to visual screen editing form (when adding screen rows and cols) (Maxim Andruhovich / AM)
- [ZBX-2438] fixed configuration of ssh2 on FreeBSD. Thanks to Alex Deiter (asaveljevs)
- [ZBX-2423] added custom colour input for link elements (Vedmak)
- [ZBX-2100] fixed group with templates but without hosts breaks map editing issue (Aly)
- [ZBX-1591] fixed "advanced icons" for image type map elements (Aly)
- [ZBX-2379] fixed trigger expression editing with trigger builder (Maxim Andruhovich/AM)
- [ZBX-1882] fixed selecting items from disabled hosts for graphs (Aly)
- [ZBX-1126] fixed large numbers processing for values stored as 'Delta' (Sasha)
- [ZBXNEXT-241] extended proxy screen to show proxy vps and item count (Vedmak)
- [DEV-460] improved host-group and maps icons info in Zabbix maps (Aly)
- [ZBXNEXT-338] added caching of eventids (Sasha)
- [ZBX-1438] fixed not deleting data from trends_uint table when deleting an item (Vedmak)
- [ZBX-2276] fixed dashboard discovery status header (Aly)
- [ZBX-2377] fixed converting html special chars in graphs' legend (Aly)
- [ZBX-2311] fixed Host group empty value selection for items filtering (Aly)
- [ZBXNEXT-313] implemented string pool for configuration cache (asaveljevs)
- [ZBX-2417] fixed timeout handling for passive checks on agent side (Sasha)
- [ZBX-1873] added slideshow delay multiplier and fixed slides not showing graphs (Vedmak)
- [ZBX-2282] fixed availability updating of IPMI hosts, monitored by proxy (Sasha)
- [ZBX-2412] fixed deleting maps with API (Aly)
- [ZBX-2341] fixed cutting 20 bytes instead of 20 symbols in char/log/text item values (Vedmak)
- [ZBX-2407] fixed repeated message on cookie size limit (Aly)
- [ZBX-2406] removed filter from plaintext history (Aly)
- [ZBX-2263] fixed permission checks in bar reports (Aly)
- [ZBX-2270] fixed item filtering (Aly)
- [ZBX-2401] fixed host name in dynamic graphs in screens (Aly)
- [ZBXNEXT-325] added StartDBSyncers parameter for parallel writing to DB (Sasha)
- [ZBX-1906] fixed possibility to add identical checks for discovery (Vedmak)
- [ZBX-2384] fixed status of triggers elements in screens (Aly)
- [ZBX-1824] fixed parsing map labels containing item references with user macros (Vedmak)
- [ZBXNEXT-321] decreased number of selects from DB while processing trends data (Sasha)
- [ZBX-1505] fixed user macros not resolved in frontend (Vedmak)
- [ZBX-1902] fixed some possibilities to create incorrect linkage (Vedmak)
- [ZBX-2386] rows per page limit increased (Vedmak)
- [ZBX-2306] fixed zoom position (Aly)
- [ZBX-2306] improved starting zoom on edges (Aly)
- [ZBX-2132] added date format constants to locales, changed zbx_date2str function to meet regional formats and date translation (Maxim Andruhovich/AM)
- [ZBXNEXT-311] improved speedup dbconfig synchronization (Sasha)
- [ZBX-2360] added multiple acknowledging for OK>UNKNOWN>OK and PROBLEM>UNKNOWN>PROBLEM events (Vedmak,Sasha)
- [ZBX-2374,ZBX-2633] updated Ukrainian translation; thanks to zalex_ua (Richlv)
- [ZBX-2347] fixed last 20 issues in event details showing less than 20 issues (Vedmak)
- [DEV-459] made improvements in discovery page generation (Aly)
- [ZBX-2148] added preview button in graphs form (Aly)
- [ZBX-2337] fixed error when selecting a web item in trigger configuration (Vedmak)
- [ZBX-2306] fixed links for graphs in screens (Aly)
- [ZBX-633] removed linkage of OpenIPMI library to Agents in "configure" script (Sasha)
- [ZBX-633] more debug information in checks_ipmi.c module (Sasha)
- [ZBX-2362] fixed processing of logrt[] checks under Windows (Sasha)
- [ZBX-2356] fixed error while performing group actions when creating an item (Vedmak)
- [ZBX-2355] fixed error when trying to massupdate trigger severity (Vedmak)
- [ZBX-2354,ZBX-2635,ZBX-2648] updated Russian translation; thanks to dotneft and zalex_ua (Richlv)
- [ZBX-2352] fixed typo in the default locale (Richlv)
- [ZBX-2312] fixed event order in "monitoring triggers" and "last 20 events" (Vedmak)
- [ZBX-2264] added opportunity to translate class.cuser.php and config.inc.php (AM)
- [ZBXNEXT-311] improved the speed of dbconfig synchronization (Sasha)
- [ZBX-2378] renamed calculated item field 'Expression' to 'Formula', changed trigger option 'Multiple TRUE events' to use 'PROBLEM' instead (Richlv)
- [ZBX-2329] fixed screen renaming (Aly)
- [ZBX-2315] fixed multiple issues with JS scrollbar (Aly)
- [ZBX-2321] fixed log items appearing in the wrong order (Alexei,asaveljevs,Sasha)
- [DEV-458] added marks on maps if elements trigger changed status recently (Aly)
- [ZBX-2290] added export/import of map images (Vedmak)
- [ZBX-2290] fixed image update with oracle db (Vedmak)
- [ZBX-2317] updated French translation; thanks to alixen (Richlv)
- [ZBX-2283] fixed incorrect time calculating in slidebar (Aly)
- [ZBX-2261] fixed username hiding in acknowledge comments (AM)
- [ZBX-2305] fixed actions getting lost in an event-busy environment (asaveljevs)
- [ZBX-2303] fixed GET/POST methods in processing web scenario steps. Thanks to Hannu Ylitalo (Sasha)
- [ZBXNEXT-293] processes now provide more information on why they terminate (asaveljevs)
- [ZBX-2304] fixed "no permission" error when screen contains simple graphs with web item (Vedmak)
- [ZBX-2268] denied creation of pie/exploded graphs with more than one sum item (Vedmak)
- [ZBX-2298] added constant to defines to be able configure default Y axis position: left or right (AM)
- [ZBX-2174] fixed a small memory leak in SNMP checks (asaveljevs)
- [ZBX-1648,ZBX-2300] fixed caching of "Database monitor" items. Thanks to Kirill Fateev (Sasha)
- [ZBX-2290] fixed screen cells moving (Vedmak)
- [ZBX-2301] fixed "configure" script with libssh2-1.0.0 library (Sasha)
- [ZBX-2296] fixed possible heavy loaded server crash when using internal checks (Sasha)
- [ZBX-2295] added additional units to graphs Y axis (Aly)
- [ZBX-2285] fixed sending of active items multiple times (asaveljevs,Sasha)
- [ZBX-2266] fixed server crash when processing malformed calculated items (asaveljevs)
- [ZBX-1346] use single quotes in example frontend configuration file (Richlv)
- [ZBX-2274] fixed trigger expression corruption with trigger wizard (AM)
- [ZBX-2273] add support of macro {TRIGGER.EVENTS.UNACK} for map labels (Vedmak)
- [ZBX-2279] fixed error when changing graph name case (Vedmak)
- [ZBX-2252] fixed server crash and infinite looping in telnet checks (asaveljevs)
- [ZBX-2275] fixed loss of the log-data if Zabbix server is unavailable (Sasha)
- [DEV-457] improved dashboard favourite selection (Aly)
- [DEV-457] improvements in dynamic map link indicators form (Aly)
- [ZBX-2258] fixed applications import (Vedmak)
- [ZBX-1357,ZBXNEXT-376,ZBXNEXT-412] update Brazilian Portuguese translation; thanks to edson (Richlv)
- [ZBX-2254] added update time for monitoring triggers screen (Vedmak)
- [ZBX-1886] added js translations (Vedmak)
- [ZBX-2245] added missing functions in trigger expression builder (Vedmak)
- [ZBX-2190] fixed trigger expression check for syntax (AM)
- [ZBX-2242] fixed agent crash on HP-UX when processing logrt[] items (asaveljevs,Sasha)
- [ZBXNEXT-288] improved server performance by not storing function lastvalue in database (asaveljevs,Sasha)
- [ZBX-1753] added permission check for trigger sound notifications (Aly)
- [ZBX-2246] added trigger wizard for logrt item (AM)
- [ZBX-2241] fixed graph X axis for big periods (Aly)
- [ZBX-2241] fixed text collide in graphs (Aly)
- [ZBX-2232] fixed bug with last event duration time in event details (AM)
- [ZBX-2243] fixed bug when cannot select template for item filter by host (Vedmak)
- [ZBX-2240] fixed "undefined index" in monitoring latest data (Vedmak)
- [ZBX-954] fix minor typos (Richlv)
Changes for 1.8.2
- [ZBX-2116] fixed black images instead of vertical text in monitoring->overview (Vedmak)
- [ZBX-2084] fixed JSON decoding class, which didn't work due to PCRE backtrace limit, enabled native PHP JSON functions, rewrote code with sockets (AM)
- [ZBX-2239] fixed mutex (un)locking so that zabbix_server does not become forever defunct when killed (asaveljevs)
- [ZBX-1983] fixed port validation in host agent port, IPMI port and in discovery checks ports (now supports port ranges like "21-80,465") (AM)
- [ZBX-2228] fixed compilation under FreeBSD with enabled LDAP (Sasha)
- [ZBX-2236] fixed processing of Telnet checks by Zabbix proxy (Sasha)
- [ZBX-2234] fixed icon for mass open action in status of triggers (Aly)
- [ZBX-2233] fixed processing of action condition 'Trigger <>' (Sasha)
- [ZBX-1357] updated French translation; thanks to alixen (Richlv)
- [ZBX-2048] fixed sorting in screens dropdown (Vedmak)
- [ZBX-2221] fixed expanding/collapsing categories in "Latest Data" (Aly)
- [ZBX-2225] fixed linkage if templated items are used in graphs as Y axis min and max values (Sasha)
- [ZBX-2225] complete rewrite of the server code for template linkage (Sasha)
- [ZBX-2210] added template replace option for hosts mass update (Vedmak)
- [ZBX-2219] fixed graphs data in data.sql (Aly)
- [ZBX-1345] time filter redesigned, sliders moved to top inside filter (Vedmak)
- [ZBX-2151] fixed header sorting in overview for items and triggers (AM)
- [DEV-456] added filter to dashboard (Aly)
- [ZBX-2191] remove broken trigger from the default dataset (Richlv)
- [ZBX-2172] fixed object available scripts sorting alphabetically (AM)
- [ZBX-2217] fixed JS error in status of triggers page in IE (Aly)
- [ZBX-2199] fixed time output format when time is less then 1 ms (AM)
- [ZBX-1956] fixed deletion of last row or col in screen (AM)
- [ZBX-1956] added cursor pointer on minus (remove) icons in screens (AM)
- [ZBX-1347] added support of hostnames and keys with spaces in sender input file (Sasha)
- [ZBX-2189] fixed compilation under AIX 5.3 (Sasha)
- [ZBX-1229] added comparison between IPv4, IPv4-mapped and IPv4-compatible allowed server addresses (Dmitry)
- [ZBX-1949] fixed "housekeeping" procedure for the table "housekeeper" itself, added configuration parameter "MaxHousekeeperDelete" for the server (Dmitry)
- [ZBX-2173] fixed too long URL for webgraph when many websteps are defined (Vedmak)
- [ZBX-2139] fixed collecting of active checks after configured with user macro (Sasha)
- [ZBXNEXT-238] added a command line option to zabbix_sender to send metrics in real time when reading from stdin (asaveljevs)
- [ZBX-1000] enabled zabbix_sender to read its input from stdin; thanks to leo (asaveljevs)
- [ZBX-2011] fixed e-mail sending format to meet 'SMTP/MIME e-mail' standards since UTF-8 is used. Thanks to Olexiy Zagorskiy. (Dmitry)
- [ZBX-2136] fixed handling of logitems with logtimefmt in db cache (asaveljevs)
- [ZBX-2193] updated Russian translation; thanks to dotneft (Richlv)
- [ZBX-2185] added view of parent template of linked template to host (Aly)
- [ZBX-2179] fixed errors connected with Triggers Info screen element (Vedmak)
- [ZBX-2184] added maintenance info to dashboard latest issues (Aly)
- [ZBX-1772] changed frontend timezone to match PHP server (Aly)
- [DEV-455] added configurable filter to "Status of triggers" screen element (Aly)
- [DEV-454] implemented screen export (Aly)
- [ZBX-2144] fixed internal and aggregate checks for hosts monitored by a proxy (asaveljevs)
- [ZBX-2052] fixed sending of regexps to agents (asaveljevs,Sasha)
- [ZBX-2129] fixed links from monitoring to configuration when All nodes are selected (Vedmak)
- [ZBX-2146] fixed error when try to view slideshow without slides (Vedmak)
- [ZBX-2161] added permission checks for map link triggers (Vedmak)
- [ZBX-2169] fixed adding dependencies to triggers on mass update (Aly)
- [ZBX-2157] fixed script permissions (Vedmak)
- [ZBX-2135] fixed screens ignore nodes "All" option in selection dropdown (Vedmak)
- [ZBX-1954] fixed config file errors if special chars are used in db password (Vedmak)
- [ZBX-2075] admins now have access only to users they share usergroup with [action operations] (Vedmak)
- [ZBX-2147] fixed permission check for item configuration (Vedmak)
- [ZBX-2158] fixed map image deletion (Vedmak)
- [ZBX-2155] ipv6 addresses are now case insensitive (Vedmak)
- [ZBX-2005] fixed graph being deleted when any of its items are deleted (Vedmak)
- [ZBX-2163] fixed possibility to acknowledge events regardless of GUI events settings (Aly)
- [ZBX-2160] fixed permission issue in reports when accessing by user or admin (Aly)
- [ZBX-1346] explicitly note that hostname in configuration files is case sensitive (Richlv)
- [ZBX-2006] added explicit dependency on "lber" library to gain better portability on upcoming Fedora "ld" changes. Thanks to Dan Horak. (Dmitry)
- [ZBX-1575] added UnsafeUserParameters configuration option for agents (asaveljevs)
- [ZBX-2108] added checking double values for "out of range" errors for the MySQL (Sasha)
- [ZBX-2114] improvements in SQL filtering of hosts and templates by nodes (Aly)
- [ZBX-18,ZBX-1018,ZBX-1070,ZBX-1123,ZBXNEXT-96,ZBX-2143] dealing with database problems in a uniform way for all database engines (asaveljevs,Sasha)
- [ZBX-2089] fixed computing calculated items for proxied hosts (asaveljevs,Sasha)
- [ZBX-2109] disabled Web monitoring for disabled hosts and hosts under maintenance (asaveljevs,Sasha)
- [ZBX-2121] events from Windows eventlog with type 'EVENTLOG_SUCCESS' are treated as 'Information' in Zabbix as in Windows (Dmitry)
- [ZBX-1994] using /proc/sys instead of the deprecated sysctl() on Linux (asaveljevs)
- [ZBXNEXT-236] added support of comma delimited list of host groups in aggregate checks (Sasha)
- [ZBXNEXT-236] added support of item keys with brackets ("") in aggregate checks (Sasha)
- [ZBXNEXT-236] added support of arrays in item key parameters (Sasha)
- [ZBX-1371] improved performance of the configuration screens hostgroups, templates, hosts (Aly)
- [DEV-452] support of s,m,h,d,w,T suffixes in trigger expressions and functions (asaveljevs,Vedmak)
- [ZBX-1357] added Ukrainian translation; thanks to zalex_ua (Richlv)
- [ZBX-2013] fixed error in trigger test screen (Vedmak)
- [ZBX-2087] fixed permission scheme in actions (Aly)
- [ZBX-2067] fixed undefined variable errors in actions screen (Aly)
- [ZBX-2053] fixed evaluating of case sensitivity on the server/agent side of regular expressions (Dmitry)
- [ZBX-2077] added support of Failure/Success Audit eventlog severity (Sasha)
- [ZBXNEXT-257] added support of time-based disabling of data collection for items (asaveljevs,Aly,Sasha)
- [ZBX-2051] fixed memory leak in processing of calculated items (Alexei)
- [ZBX-886] removed duplicate and outdated strings from locales (Richlv)
- [ZBX-1790] restored support of the hyphen (-) in item key names (Sasha)
- [ZBX-1962] explicit 'not monitored' response for active agents on disabled hosts (asaveljevs)
- [ZBX-1522] fixed server crash on an undefined user macro (asaveljevs)
- [ZBX-2039] fixed pattern matching in function count (asaveljevs)
- [ZBXNEXT-119] added support for time shifted functions (asaveljevs)
- [ZBX-1878] reverted map label background drawing (Aly)
- [ZBX-2016] fixed code with "_itow_s()" and "zbx_wsnprintf" to avoid possible run-time memory corruption. Thanks to Takanori Suzuki. (Dmitry)
- [ZBX-2059] fixed special char treatment in XML export (Aly)
- [ZBX-1655] improved error message on map saving with circular reference (Aly)
- [ZBX-1823] improved map element labels expansion in map editing screen (Aly)
- [ZBX-1991] added sequences for autoincrement fields to oracle.sql (Sasha)
- [ZBX-2045] fixed trigger editor not preserving element ordering (Vedmak)
- [ZBX-2003] fixed evaluation of division and subtraction (asaveljevs)
- [ZBX-2029] fixed monitoring triggers showing triggers with true dependencies (Vedmak)
- [ZBX-1902] fixed error when creating dependency for a trigger that belongs to the same template (Vedmak)
- [ZBX-1705] fixed various front-end problems with Oracle database (Alexei)
- [ZBX-1299] added check for the minimal (1.0.0) libssh2 library version (Dmitry)
- [ZBX-1975] fixed permission check in graphs with web items (Aly)
- [ZBX-2023] improved trigger configuration page (Aly)
- [DEV-453] implemented import/export of Zabbix maps (Aly)
- [ZBX-1320] fixed graph header alignment (Vedmak)
- [ZBX-2041] minor configuration comment change about LogFile parameter for Windows agent (Dmitry)
- [ZBX-1876] added remarks to configuration files of Zabbix server and proxy about fping6 (Dmitry)
- [ZBX-1876] fixed processing of ICMP pings when "fping" or "fping6" binaries are missing (Dmitry)
- [ZBX-1995] fixed errors when save/update web scenario with existing name (Vedmak)
- [ZBX-2014] fixed pie chart in screen renders last hour of data only (Vedmak)
- [ZBX-2025] fixed deletion of actions (Vedmak)
- [ZBX-3] fixed logging into syslog, Zabbix log levels are properly linked to syslog levels (Dmitry)
- [ZBX-2022] fixed link colour picker in maps in IE7 (Vedmak)
- [ZBX-1968] fixed error in log item history in IE8 (Vedmak)
- [ZBX-2020] added requirements check for PHP max_input_time (Vedmak)
- [ZBX-1958] fixed problem with a lot of digits in float values (Vedmak)
- [ZBX-1853] fixed template/host full clone with triggers with dependencies (Vedmak)
- [ZBX-1999] fixed bug when cannot create simple check item with macro in parameters (Vedmak)
- [ZBX-1269] fixed offscreen popups (Vedmak)
- [ZBX-1679] fixed error sometimes appearing when using Print button (Vedmak)
- [ZBX-1980] added requirements check for PHP upload_max_filesize (Vedmak)
- [ZBX-2002] refresh timer is now restarted instead of stopped when checkbox is checked (Vedmak)
- [ZBX-1961] added support of '%' prompt for telnet.run[] check (Sasha)
- [ZBX-1939] fixed errors when unicode chars are used in item keys (Vedmak)
- [ZBX-1996] fixed JS error in IE7 in maps (Aly)
- [ZBX-1328] improved host group mass deletion caption (Richlv)
- [DEV-450] added support of LogSlowQueries option (Sasha)
- [ZBX-1974] removed "Dropdown first entry" "1.6.2 comp mode" option (Vedmak)
- [ZBX-1826] fixed error when changing node in monitoring web (Vedmak)
- [ZBX-1943] fixed refresh time selection in dashboard widgets (Vedmak)
- [ZBX-1929] include eventlog.c and eventlog.h files in distribution package (Richlv)
- [ZBX-1897] include CREDITS file in distribution package (Richlv)
- [ZBXNEXT-229] further updates for Brazilian Portuguese translation; thanks to murilex (Richlv)
- [ZBX-1945] speed improvement for synchronization between nodes (Sasha)
- [ZBX-1940] fixed map creation if Zabbix doesn't contain images (Aly)
- [ZBX-1938] fixed permission check inefficiency in charts (Aly)
- [ZBX-1957] fixed compilation errors under OpenBSD (Sasha)
- [ZBX-1869] fixed graph max Y most top value calculation (Aly)
- [ZBX-1948] fixed node disappearing after node deleted and then created with same ID (Vedmak)
- [ZBXNEXT-225] update Brazilian Portuguese translation; thanks to murilex (Richlv)
- [DEV-137] add basic bootstrap script (Richlv)
- [ZBX-1944] fixed no permission error when trying to view simple graph from childnodes (Vedmak)
- [ZBX-1871] made Zabbix not require mbstring_overload to be enabled (Vedmak)
- [ZBX-1862] fixed host creation with link to templates with trigger dependencies (Aly)
- [ZBX-1879] fixed unnecessary line breaks in IE7 (Vedmak)
- [ZBX-1931] fixed process of sending active checks to ensure every active item is located in the server cache (Dmitry)
- [ZBX-1935] remove incorrect item and fix minor typo in the default Windows template (Richlv)
- [ZBX-1650] allowed to pass "-" (dash) in parameters for "UserParameter" flexible parameters (Dmitry)
- [ZBX-1923] fixed processing of data sent by 1.4, 1.6 agents not allowing wrong "eventid" values (Dmitry)
- [ZBX-1763] fixed SLA showing red line when there is no problem (Vedmak)
- [ZBX-1922] fixed compilation of Zabbix agent under ac AIX 5.1/5.2 (Sasha)
- [ZBX-1899] fixed sticky starttime in graphs (Aly)
- [ZBX-1785] fixed starttime in screens, slides on screen/slide switch (Aly)
- [ZBX-1784] improved displaying big numbers and units in graphs (Aly)
- [ZBX-1764] fixed right Y axis problem if on left Y axis no data (Aly)
- [ZBX-1912] fixed nonstandard font vertical text display (Vedmak)
- [ZBX-1915] fixed template/host name check on creation/update (Aly)
- [ZBX-1820] fixed graph preview in configuration graph form (Aly)
- [ZBX-1777] fixed evaluating of the maintenance periods (Sasha)
- [ZBX-1513] fixed resetting user password when updating user and HTTP auth is enabled (Vedmak)
- [ZBX-1904] fixed naming procedure for discovered IPv6 hosts without DNS provided by replacing all not-allowed symbols with '_' (Dmitry)
- [ZBX-1877] template itself in template linkage popup is now disabled (Vedmak)
- [ZBX-1896] fixed no permission error when trying to view history for a web item (Vedmak)
- [ZBX-1860] fixed line breaks at the beginning of exported XML file (Vedmak)
- [ZBX-1881] fixed checkbox selection cookies (Vedmak)
- [DEV-163] improved the description of "perf_counter" check in the "help_items" table (Dmitry)
- [ZBX-1324] replaced more user visible strings ZABBIX with Zabbix (Richlv)
- [ZBX-1859] fixed map element image (Aly)
- [ZBX-954] fix minor typos and removed // comments (asaveljevs,Richlv)
Changes for 1.8.1
- [ZBX-1850] fixed warnings when saving host with enabled profile (Vedmak)
- [ZBX-1779] fixed incorrect number of problems in Host Status widget (Vedmak)
- [ZBX-1849] fixed colours of trigger severity in Host Status widget (Vedmak)
- [ZBX-1757] fixed oracle 1.8 upgrade patch, not null constraints (Vedmak)
- [ZBX-1762] fixed errors when editing media types (Vedmak)
- [DEV-445] added support of system.stat[] under AIX (Sasha)
- [ZBX-1633] fixed sysmaps in PostgreSQL upgrade patch (Sasha)
- [ZBX-1617] fixed triggers duplicating in template linking for discovered hosts (Sasha)
- [ZBX-1840] fixed bad performance of the node synchronization - fixed database index (Sasha)
- [ZBX-1742] fixed processing of "system.uptime" check under Windows to return values as integers (Dmitry)
- [ZBX-1786] fixed not remembered group when using paging in export screen (Vedmak)
- [ZBX-1735] added "ERROR" words to some error messages in data cache module (Dmitry)
- [ZBX-1321] fixed displaying of large unsigned int values in latest data (Vedmak)
- [ZBX-1838] fixed value mapping in overview screen (Aly)
- [ZBX-1788] fixed proxy configuration form showing hosts from all nodes (Vedmak)
- [ZBX-954] fix typo in default trigger names (Richlv)
- [ZBX-1746] fixed problems viewing map element (Aly)
- [ZBX-1763] applied patch with translation for some javascript strings (Aly)
- [DEV-447,DEV-448] added support of net.if.* under Windows (Sasha)
- [ZBX-1582] fixed processing ssh.run[...] check to avoid the server crashing on libssh2 timeout (Dmitry)
- [ZBX-1688] hosts, user doesn't have permission to, are shown gray in hostgroup configuration screen (Vedmak)