This repository has been archived by the owner on Jan 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
ChangeLog
5641 lines (5300 loc) · 363 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 2.0.3
2.0.3rc2 was released as 2.0.3 without any changes
--------------------------------------------------------------------------------
Changes for 2.0.3rc2
Bug fixes:
.......PS. [ZBX-5625] fixed resolving of host and template-level macros in SNMP OID field (Sasha)
..F....... [ZBX-5627] fixed missed placeholder brackets in multiple pages (Eduard, Pavels)
..F....... [ZBX-5578] fixed multiple IE issues in screens (Eduard)
..F....... [ZBX-5612] fixed inability to view item data overview when host group doesn't have any triggers (Toms)
--------------------------------------------------------------------------------
Changes for 2.0.3rc1
New features:
...GI..... [ZBX-5171] got rid of agent ipv6 library dependency on older HP-UX machines (dimir)
........S. [ZBX-5450] added support of "KMGTsmhdw" suffixes in the second parameter of count() function (Sasha)
A.F....... [ZBX-1357] added American English translation; thanks to Zabbix translators (Richlv)
A......... [ZBX-2060] implemented the "expandExpression" parameter for the trigger.get and triggerprototype.get methods (Pavels)
A.F....... [ZBXNEXT-1253] implemented flicker-free screens (Eduard)
........S. [ZBX-5318] added remote commands in expanded {ESC.HISTORY} macro (Sasha)
A.F....... [ZBX-1357] added Chinese (Taiwan) translation; thanks to Zabbix translators (Richlv)
A.F....... [ZBX-1357] updated Chinese (China), Brazilian Portuguese, French, German, Japanese, Latvian, Polish, Spanish, Russian and Ukrainian translations; thanks to Zabbix translators (Richlv)
..F....... [ZBXNEXT-583] added the maintenance filter to the trigger status page (Pavels)
A......... [ZBX-5351] implemented the "selectTimeperiods" parameter for the maintenance.get method (Pavels)
..F....... [ZBX-4972] added the ability to edit map links in the element mass update form (Pavels)
Bug fixes:
..F....... [ZBX-5578] fixed graph inner interval selection in screens (Eduard)
A......... [ZBX-954] fixed missing doublequote in import error message when a network map references non-existent trigger (Richlv)
...G...... [ZBX-5473] fixed agent crash under FreeBSD and Linux when started with -p or -t vfs.dev.read/write (Sasha)
..F....... [ZBX-5513] fixed HTTP authentication without directly passing password (Eduard)
..F....PS. [ZBX-4852] fixed calculation of update interval if flexible intervals are used (Andris, Sasha)
A......... [ZBX-5434] fixed validation of linking template items to host (Eduard)
..F....... [ZBX-5514] fixed SQL query in get_min_itemclock_by_itemid function (Eduard)
A......... [ZBX-5510] fixed item name selecting using group filter (Eduard)
..F....... [ZBX-2939] fixed login button link in HTTP auth mode (Eduard)
..F....... [ZBX-5406] fixed error when exporting template with another template with screens linked to it (Vedmak)
....I..... [ZBX-5509] fixed upgrade patch to execute it on MySQL 5.0.28 or earlier (Sasha)
...G...PS. [ZBX-5383] limited maximum data size accepted via Zabbix communication protocol to 128 MB (Andris)
..F....... [ZBX-5198] fixed usage of 'memory_get_peak_usage' function that appeared in PHP 5.2 (Vedmak)
..F....... [ZBX-5466] fixed dependency adding when copying triggers to host and when full cloning host (Toms)
..F....... [ZBX-5466] added copying of triggers that reference web monitoring items (Toms)
A......... [ZBX-5466] improved warning message for trigger circular dependencies (Toms)
A......... [ZBX-5466] added template name in the warning message when linking template to a host and there were dependencies from that template to another template that was not linked to that host (Toms)
A.F....... [ZBX-4316] improved message for web step status code validation error, added validation in the API (Vedmak)
..F....... [ZBX-5445] fixed hint not removed in dashboard when widget content is refreshed (Vedmak)
..F....... [ZBX-5490] fixed textarea maxlength validation (Eduard)
A......... [ZBX-5461] fixed error when createing trigger prototype with PHP 5.1 (Vedmak)
..F....... [ZBX-5487] fixed sorting in dashboard system status and host status widget popups (Vedmak)
..F....... [ZBX-5480] fixed icon default state for host elements in map (Eduard)
....I..... [ZBX-5479] removed inode item prototype from OS Windows template (Sasha)
........S. [ZBX-5235] fixed update of the "lifetime" field when linking a template to a host (Sasha)
..F....... [ZBX-4025] fixed duplicate HTTP step name checking (Eduard)
.......PS. [ZBX-5240] fixed unwanted server shutdown if housekeeper cannot access MySQL database (Andris)
..F....... [ZBX-4482] fixed guest user theme not applied (Toms)
..F....... [ZBX-5441] fixed audit logging when adding IT service causing notice message and wrong audit log (Toms)
..F....... [ZBX-5204] changed the color of inactive tabs to blue in the classic theme (Pavels)
..F....... [ZBX-5393] fixed translation escaping in HTML areas causing some languages to display incorrect text (Toms)
..F....... [ZBX-5393] fixed broken target selection in action form (Toms)
A.F....... [ZBX-5489] removed API methods CAlert->create(), CAlert->delete(), CEvent->create(), CEvent->delete(), CEvent->deleteByTriggerIDs() (Eduard)
.......PS. [ZBX-5483] fixed response to sender requests with missing fields (Sasha)
..F....... [ZBX-5429] fixed hintbox displaying when menu is shown (Eduard)
..F....... [ZBX-5444] fixed maintenance hint not accessible if user has no permissions (Toms)
..F....... [ZBX-5444] added functionality to hints, and now all newlines are converted to <br> tag (Toms)
..F....... [ZBX-5444] fixed host in maintenance not highlighted by adding icon to hosts in maintenance (Toms)
..F....... [ZBX-5444] fixed "last 20 issue" widget lines being 2px higher than other table lines in dashboard (Toms)
..F....... [ZBX-5444] made host names with maintenance description correctly aligning in new lines in Monitoring -> Triggers when browser window width is changed (Toms)
..F....... [ZBX-5488] fixed web item macros in map labels (Eduard)
..F....... [ZBX-5437] fixed error when templated trigger description contains interface macro (Vedmak)
..F....... [ZBX-5411] fixed map element link sorting in element configuration form (Vedmak)
..F....... [ZBX-5465] fixed the "Filter by host group" select not being populated in the availability report page filter (Pavels)
..F....... [ZBX-5465] corrected the labels for the host group and host filter on the "by host" availability report page (Pavels)
..F....... [ZBX-5465] fixed wrong template being selected when returning to the "by template" availability report from a graph (Pavels)
.......PS. [ZBX-5485] fixed resolving of {HOST.NAME} macro on proxy in item keys (Sasha)
...GI..PS. [ZBX-5386] fixed ODBC items to become unsupported when NULL value returned (dimir)
....I..P.. [ZBX-5469] enabled possibility to use more than one application in proxy web monitoring for single host (dimir)
A.F....... [ZBX-5292] allowed empty user macro values (Eduard)
..F....... [ZBX-5471] fixed error when copying trigger from a host template that's linked to that host (Vedmak)
..F....... [ZBX-5460] fixed link color in Dark Orange Theme bar text in Configuration -> Hosts -> Host (Toms)
..F....... [ZBX-5317] fixed adding links for map elements (Vedmak)
A......... [ZBX-5440] added check for user group mass update function if no user group IDs are provided (Toms)
A......... [ZBX-5440] fixed inability to remove last user and last permission from user group (Toms)
..F....... [ZBX-5353] improved login form layout when increasing text size in Firefox; thanks to Andrey Bondarenko (Pavels)
A.F....... [ZBX-5409] changed item value macros for items without data to be resolved into "UNKNOWN" (Pavels)
..F....... [ZBX-5409] fixed value mappings in the Latest data, item history pages and in plain text screen items and trigger names (Pavels)
..F....... [ZBX-5419] added session termination upon logout (Toms)
..F....... [ZBX-5419] added guest session termination after login (Toms)
..F....... [ZBX-4168] fixed the "problem display" dashboard filter not being applied to the "Latest 20 issues" block (Pavels)
........S. [ZBX-5435] fixed memory leak in a history syncer process (Andris)
..F....... [ZBX-5393] improved language encoding lookup for Windows (Toms)
..F....... [ZBX-5393] secured javascript files, when translation contains apostrophes (Toms)
..F....... [ZBX-5393] fixed undefined LC_MESSAGES on Windows (Toms)
..F....... [ZBX-5393] fixed language support for 64bit Windows (Toms)
..F....... [ZBX-5393] fixed undefined index for Greek language on Windows (Toms)
..F....... [ZBX-5399] fixed group list selection for super admin users (Eduard)
..F....... [ZBX-5417] fixed macros being expanded in trigger overview trigger names (Pavels)
..F....... [ZBX-5417] removed the select item key button from the LLD form (Pavels)
..F....... [ZBX-5389] fixed broken Monitoring->Graph when used with Oracle (Toms)
..F....... [ZBX-5422] fixed the outdated browser warning page not being displayed when magic quotes are enabled (Pavels)
..F....... [ZBX-5422] disabled switching to compatibility mode for IE (Pavels)
..F....... [ZBX-5392] fixed the "no permission" error when repeatingly deleting items from the item list (Pavels)
...G...... [ZBX-5358] fixed converting to UTF8 of interface name in net.if.discovery check (Sasha)
....I..... [ZBX-5359] improved performance of MySQL patches for migrating to the 2.0 schema (Sasha)
.......PS. [ZBX-5397] fixed resolving of {HOST.IP}, {HOST.DNS} and {HOST.CONN} macros in item key parameters (Sasha)
..F....... [ZBX-5410] fixed displaying of a visible host name in the dynamic graphs (Sasha)
........S. [ZBX-5347] fixed creating of multiple entries in graphs based on LLD prototypes (Sasha)
..F....... [ZBX-5257] fixed trigger prototype form not being populated with data when editing a trigger prototype (Pavels)
A......... [ZBX-5307] added a validation rule to prevent dependencies from a trigger to a trigger inherited from it (Pavels)
A......... [ZBX-5307] fixed inherited trigger dependencies not being validated on hosts (Pavels)
A......... [ZBX-5307] fixed an undefined index error when importing a trigger, that depends on an unexisting trigger (Pavels)
A......... [ZBX-5307] fixed errors when importing item prototypes without applications (Pavels)
..F....... [ZBX-5396] fixed entries sorting by host groups in dashboard "system status", "host status" and "web monitoring" (Toms)
..F....... [ZBX-5108] fixed undefined index errors when deleting a templated item from the list (Pavels)
....I..... [ZBX-5125] added more validation of duplicates in upgrade patches (1.8 -> 2.0) (dimir)
........S. [ZBX-4527] removed length limitation of the alerter script command line (Sasha)
..F....... [ZBX-5385] fixed "service down" cells not filled in Monitoring -> Discovery with the classic theme (Toms)
A......... [ZBX-5308] fixed trigger dependencies not being overridden by new triggers in parent templates (Toms)
........S. [ZBX-5367] fixed assignment of elements to a maintenance mode by the timer process (Sasha)
..F....... [ZBX-5364] added showing application and templated screen subentities when full cloning host or template (Vedmak)
A......... [ZBX-5370] fixed errors on importing of maps (Vedmak)
..F....... [ZBX-2771] fixed localization of popups in Monitoring->Events (Vedmak)
..F....... [ZBX-5360] fixed editing large inventory fields in the host mass update form (Vedmak)
..F....... [ZBX-5352] fixed displaying the "Change" column when the change for the value is non-significant (Vedmak)
A......... [ZBX-5363] fixed importing templates which use item as min/max value in graph (Vedmak)
A......... [ZBX-5345] fixed "group" option in the "configuration.export" method (Vedmak)
A.F....... [ZBX-5371] unified multiple import-related error messages (Pavels)
A......... [ZBX-5250] fixed the "macros" parameter in the host.massremove and template.massremove methods (Pavels)
A.F....... [ZBX-5351] fixed an undefined index error when deleting maintenance time intervals (Pavels)
A.F....... [ZBX-5351] fixed time intervals being recreated when updating maintenances (Pavels)
..F....... [ZBX-5355] fixed translated string escaping in the map pop up menu script (Pavels)
..F....... [ZBX-5257] changed technical host names to visible host names in several places (Pavels)
..F....... [ZBX-5257] fixed incorrect links to parent trigger and graph prototypes in the configuration forms (Pavels)
..F....... [ZBX-5257] fixed multiple navigation panel issues (Pavels)
...G...... [ZBX-4430] fixed -t and -p options for Windows 2000/XP agent (Sasha)
...G...... [ZBX-1829] improved system.uname check to support latest Windows versions (Sasha)
...G...... [ZBX-5103] fixed compatibility of the agent with Windows 2000 (Sasha)
....I..... [ZBX-5357] fixed typos in help_items item key descriptions (Richlv)
--------------------------------------------------------------------------------
Changes for 2.0.2
2.0.2rc2 was released as 2.0.2 without any changes
--------------------------------------------------------------------------------
Changes for 2.0.2rc2
Bug fixes:
........S. [ZBX-5031] fixed possible history syncer crash while processing JMX items (Sasha)
........S. [ZBX-4976] fixed {HOST.CONN}, {HOST.IP) and {HOST.DNS} macro substitution for global scripts (Sasha)
A......... [ZBX-5349] fixed graph prototypes being created with an incorrect flag (Pavels)
--------------------------------------------------------------------------------
Changes for 2.0.2rc1
New features:
...GI..... [ZBXNEXT-1268] add resource information (version, description etc.) to Windows binaries (dimir)
A.F....... [ZBX-1357] updated French, German, Japanese and Russian translations; thanks to Zabbix translators (Richlv)
..F....... [ZBX-4281] separated links to hosts and templates for host groups on search page (Vedmak)
..F....... [ZBX-3003] added support for suffixes in map label trigger expression macro function parameter (Vedmak)
Bug fixes:
..F....... [ZBX-5348] fixed validation of itemid parameter for popup_bitem.php (Pavels)
..F....... [ZBX-5311] fixed error when delete proxy that is used by discovery rule (Vedmak)
....I..... [ZBX-5125] allow unique index in hosts_groups in database upgrade scripts (1.8 -> 2.0) (dimir)
....I..... [ZBX-5125] default discovery groupid in database upgrades scripts (1.8 -> 2.0) (dimir)
..F....... [ZBX-5267] fixed error when delete single host group (Vedmak)
..F....... [ZBX-5319] fixed incorrect calculation of action escalation steps delay (Vedmak)
....I..... [ZBX-5320] fixed the default path to an agent configuration file in the default data (Sasha)
A.F....... [ZBX-4963] fixed inherited trigger prototypes lacking certain data (Pavels)
..F....... [ZBX-5273] fixed the host configuration form when using SQLite (Pavels)
A......... [ZBX-5290] fixed slow query in "Host status" dashboard widget for large setups (Toms)
A......... [ZBX-5086] fixed templated triggers losing those dependencies which were added additionally to host trigger when saving a host without making any changes (Toms)
A......... [ZBX-5086] fixed just one dependency added to host trigger when linking template with a trigger which has several dependencies (Toms)
A......... [ZBX-5086] improved template linkage circularity check; added more precise exception messages (Toms)
A.F....... [ZBX-4317] fixed inability to link templates with trigger dependency using mass update (Toms)
..F....... [ZBX-3053] fixed trigger expression testing when an item key contains the "+" character (Pavels)
..F....... [ZBX-2876] fixed GUI messaging working in popups i.e. pages without menus (Toms)
..F....... [ZBX-4930] improved translations for import error messages (Vedmak)
..F....... [ZBX-5253] fixed color of disabled host link on search page (Vedmak)
A.F....... [ZBX-5281] fixed error when creating an item without delay_flex field specified (Vedmak)
..F....... [ZBX-3284] fixed messages for discovery rule manipulations (Vedmak)
..F....... [ZBX-2586] fixed localization of the date in the header on the trigger status page (Pavels)
..F....... [ZBX-5070] fixed SQL error on logout with HTTP authentication (Toms)
..F....... [ZBX-4741] fixed authentication configuration page still using "profiles" table (Toms)
..F....... [ZBX-3637] fixed "IT Services availability report" generating wrong weekly timing (Toms)
..F....... [ZBX-3637] fixed notification report ignoring daylight saving time (Toms)
..F....... [ZBX-3782] fixed {HOSTNAME} macro not working in map labels trigger expression macro (Vedmak)
.......... [ZBXNEXT-1256] changed partition discovery keys for Solaris and Linux example userparams, so that example file may be directly included (Richlv)
..F....... [ZBX-5236] fixed some map element rendering ignoring the "Problem display" map option (Pavels)
A......... [ZBX-5252] fixed multiple level templated application inheritance (Pavels)
..F....... [ZBX-2183] fixed change column in latest data for items with 'unixtime' units (Vedmak)
A.F....... [ZBX-2055] added flexible intervals and time periods validation (Vedmak)
..F....... [ZBX-5045] fixed audit error message when deleting global macros (Pavels)
..F....... [ZBX-3387] fixed incorrect frontend language shown as active in the user profile (Vedmak)
..F....... [ZBX-2046] fixed paging when element count changes (Vedmak)
A......... [ZBX-5060] fixed inability to mass update host inventory mode (Toms)
A......... [ZBX-4929] optimized host group SQL queries (Eduard)
....I..... [ZBX-5168] added missing and fixed existing help_items as per documentation (dimir, Sasha)
........S. [ZBX-5218] fixed generating of triggers without functions when editing a trigger prototype expression (Sasha)
..F....... [ZBX-3001] fixed media sorting in user profile (Vedmak)
..F....... [ZBX-5159] fixed macro resolving in trigger description (Vedmak)
..F....... [ZBX-5144] fixed PostgreSQL injection in the database configuration setup form (Pavels)
A......... [ZBX-5232] fixed import of templated low level discoveries (Pavels)
A......... [ZBX-5232] fixed errors when importing empty low level discoveries and items without applications (Pavels)
.D........ [ZBX-2510] clarified in the Zabbix sender manpage which parameters from the agent config file sender supports (Richlv)
A.F....... [ZBX-4007] fixed using screen elements with resources from child nodes (Pavels)
A.F....... [ZBX-4007] fixed not being able to add screens from a child node to a slideshow (Pavels)
..F....... [ZBX-4007] fixed undefined index when switching nodes in the screen selection pop up (Pavels)
A......... [ZBX-4007] fixed node criteria being applied when passing the "screenitemids" parameter to screen.get (Pavels)
A......... [ZBX-4007] fixed hostgroup.get returning the "graphid" property (Pavels)
..F....... [ZBX-5108] fixed permission check errors caused by empty user groups (Pavels)
A......... [ZBX-5208] fixed updating interfaces via host.massupdate (Pavels)
A......... [ZBX-5208] fixed main interface validation in hostinterface.massremove (Pavels)
A......... [ZBX-5208] fixed host.update only accepting arrays of interfaces and not working with a single interface (Pavels)
..F....... [ZBX-5237] fixed event CSV export (Pavels)
..F....... [ZBX-5179] fixed filter layout on low resolution screens (Pavels)
..F....... [ZBX-3853] changed several message strings (Pavels)
A......... [ZBX-5213] fixed usergroup.massupdate failing when updating only permissions or users (Pavels)
..F....... [ZBX-5145] fixed PosgreSQL error when inserting an audit record if the X_FORWARDED_FOR header value is too long (Pavels)
..F....... [ZBX-5065] fixed inability to delete a service with soft linked dependencies (Toms)
A.F....... [ZBX-5065] added circularity check for IT services (Toms)
..F....... [ZBX-2501] fixed subnodes not opening when parent node is opened in IT services (Toms)
..F....... [ZBX-2506] fixed ordering for dashboard filter; fixed multisort function (Toms)
A......... [ZBX-5079] fixed returning triggers and graphs with no permissions and incorrect counts for templates (Toms)
..F....... [ZBX-2854] fixed table sorting icon positioning (Toms)
..F....... [ZBX-5107] fixed ability to select entities more than once in popups (Toms)
--------------------------------------------------------------------------------
Changes for 2.0.1
2.0.1rc2 was released as 2.0.1 without any changes
--------------------------------------------------------------------------------
Changes for 2.0.1rc2
Bug fixes:
...G...... [ZBX-5094] removed trailing backslash from returned value {#FSNAME} by Windows agent (Sasha)
--------------------------------------------------------------------------------
Changes for 2.0.1rc1
New features:
A.F.....S. [ZBX-5150] added support of Numeric (unsigned) type for aggregated items (Sasha)
........S. [ZBXNEXT-1259] added a script file existence and permissions check for the "Script" media type (Sasha)
...G...... [ZBXNEXT-801] maximum number of monitored disks increased to 1024, with dynamic increasing of shared memory size (Andris)
....I..... [ZBXNEXT-1256] added example Solaris partition LLD user parameter (Richlv)
A.F....... [ZBX-5074] redesigned action configuration page (Eduard)
..F....... [ZBX-1357] updated Brazilian Portuguese, French, Greek, Japanese, Ukrainian and Russian translations; thanks to Zabbix translators (Richlv)
..F....... [ZBXNEXT-1019] updated jQuery to 1.7.2 and jQuery UI to 1.8.20 (Vedmak)
..F....... [ZBXNEXT-829] added Zabbix server availability check (Vedmak)
Bug fixes:
..F....... [ZBX-2801] removed incorrect message after removing of master node (Sasha)
..F....... [ZBX-5188] fixed incorrect graph themes being used for graphs from child nodes (Pavels)
A......... [ZBX-5155] fixed importing of triggers with dependencies from 1.8 to 2.0 (Pavels)
..F....... [ZBX-5184] fixed availability displaying for all types in host properties (Toms)
..F....... [ZBX-5136] fixed XML import handling of short and long empty tag syntax (Vedmak)
..F....... [ZBX-5154] fixed host group tab not adding selected hosts to the host group (Toms)
A.F....... [ZBX-5176] fixed trigger events not being deleted when changing it to a templated trigger (Pavels)
........S. [ZBX-5042] fixed server crash while synchronizing host_inventory table (Sasha)
........S. [ZBX-5042] fixed possible SQL errors during node synchronization (Sasha)
..F....... [ZBX-5133] fixed error when adding the first map element (Toms)
A......... [ZBX-5115] fixed API object names being case sensitive (Pavels)
....I..... [ZBX-5058] init.d scripts updated for Zabbix 2.0 (Andris)
..F....... [ZBX-5143] fixed regular expression deletion action ignoring cancelation in confirmation dialog (Vedmak)
........S. [ZBX-5148] fixed linking of item prototypes by a discovery rule (Sasha)
....I..... [ZBX-5061] fixed Oracle SQL errors when executing data.sql (Sasha)
........S. [ZBX-5123] fixed Oracle SQL error while linking a template by server (Sasha)
..F....... [ZBX-5156] fixed incorrect values in node edit form (Vedmak)
A......... [ZBX-5140] fixed usermacro.get returning macros from all nodes by default (Vedmak)
..F....... [ZBX-5106] fixed trigger dependencies not being mapped to new triggers when cloning a host (Pavels)
..F....... [ZBX-5106] fixed trigger dependencies on web triggers not being removed when cloning a host (Pavels)
..F....... [ZBX-5128] fixed pagefilter->groupid (Eduard)
..F....... [ZBX-5073] fixed parent template links in items, triggers, graphs and discovery rules (Eduard)
..F....... [ZBX-5104] fixed severity colors in trigger forms (Vedmak)
..F....... [ZBX-5104] fixed trigger severity control working incorrectly on fast clicks (Vedmak)
..F....... [ZBX-5119] fixed maintenance till day (Eduard)
..F....... [ZBX-5105] fixed server name not shown in page title (Vedmak)
..F....... [ZBX-4863] fixed graph Y marker positions and values when setting a minimum value for the Y scale (Pavels)
A.F....... [ZBX-4861] fixed excess queries upon no-change graph saving (Toms)
A.F....... [ZBX-5090] fixed errors when fully cloning a host that contains trigger prototypes with web items in the expression (Pavels)
....I..... [ZBXNEXT-1256] fixed example Linux partition LLD item (Richlv)
.......PS. [ZBX-4980] fixed error in decoding of big base64 encoded values (Andris)
..F....... [ZBX-5081] fixed simple slide show update changing slideids in a database (Toms)
A......... [ZBX-5092] fixed the get method "nodeids" parameter not working in some APIs (Pavels)
..F....... [ZBX-5000] fixed "all" shown instead of "not selected" in Monitoring -> Discovery (Toms)
.......PS. [ZBX-4793] fixed processing of SNMP strings terminated with a NUL character (Sasha)
.......PS. [ZBX-4793] added support for display-hint when getting SNMP octet string values (dimir)
..F....... [ZBX-5080] fixed incorrect JavaScript parameter encoding in the map editor (Pavels)
..F....... [ZBX-5245] fixed subfilter going out of screen when there are too many items (Toms)
..F....... [ZBX-4974] fixed showing of groups w/o templates when linking a template (Toms)
..F....... [ZBX-5096] fixed error when creating a hostgroup with too long name (Vedmak)
..F....... [ZBX-4985] improved hostgroup area icon layout (Vedmak)
..F....... [ZBX-5078] fixed item prototype application linking when fully cloning a host (Pavels)
A.F....... [ZBX-5053] fixed Y max/min value validation for calculated graph scales (Eduard)
A.F....... [ZBX-5029] fixed inherited item interface being updated incorrectly when changing it's type (Pavels)
A.F....... [ZBX-4958] fixed undefined indexes when switching auth method (Eduard)
..F....... [ZBX-5071] fixed macros being deleted when leaving the "macro" and "value" fields empty (Pavels)
.......PS. [ZBX-5076] fixed possible server or proxy crash when using Calculated, DB Monitor, SSH or Telnet items (Sasha)
A.F....... [ZBX-5032] fixed media type selection in user properties (Eduard)
..F....... [ZBX-4864] fixed graph Y axis label alignment (Pavels)
..F....... [ZBXNEXT-1225] fixed multiple design issues (Pavels)
..F....... [ZBX-4932] fixed weekly top 100 trigger report using incorrect time period (Pavels)
..F....... [ZBX-3106] fixed supported types for calculated items (Toms)
A......... [ZBX-5030] fixed IT services query in Oracle (Eduard)
....I..... [ZBX-5041] changed {HOSTNAME} macro to {HOST.NAME} in the default templates (Sasha)
A.F....... [ZBX-4974] fixed and improved several popups (Toms)
..F....... [ZBX-5020] fixed undefined functions prior requirement check in setup.php (Toms)
..F....... [ZBX-5016] fixed graph borders in screens (Eduard)
A......... [ZBX-4962] fixed varchar default saving in MySQL (Eduard)
..F....... [ZBX-4977] fixed GUI messaging (Eduard)
A......... [ZBX-4994] fixed SQL error when trying to remove host interface used in items (Vedmak)
..F....... [ZBX-4918] fixed value mapping when resolving {ITEM.LASTVALUE} and {ITEM.VALUE} macros (Vedmak)
..F....... [ZBX-5013] fixed requirements check in frontend setup (Vedmak)
A......... [ZBX-4923] fixed IDs sorting before update and delete (Eduard)
A......... [ZBX-5026] fixed error messages when creating IT Service (Eduard)
...G...... [ZBX-3897] fixed processing of proc.num[] item under FreeBSD; thanks to Jim Riggs (Sasha)
--------------------------------------------------------------------------------
Changes for 2.0.0
Bug fixes:
A......... [ZBX-5025] fixed "undefined index" error when updating specific trigger properties (Pavels)
..F....... [ZBX-5004] fixed error when importing linked templates (Vedmak)
--------------------------------------------------------------------------------
Changes for 2.0.0rc6
New features:
..F....... [ZBX-1357] updated Brazilian Portuguese, French, Russian and Ukrainian translations; thanks to Zabbix translators (Richlv)
Bug fixes:
....I..... [ZBXNEXT-973] changed units to "bps" for monitoring of network traffic items (Sasha)
....I..... [ZBXNEXT-973] changed colors in the "MySQL operations" graph (Sasha)
...G...PS. [ZBXNEXT-1220] fixed compilation errors on Solaris (dimir)
--------------------------------------------------------------------------------
Changes for 2.0.0rc5
New features:
..F.I..... [ZBXNEXT-1225] added the "Classic" frontend theme (Pavels)
..F....... [ZBX-1357] updated Brazilian Portuguese, Dutch, Greek, Russian and Ukrainian translations; thanks to Zabbix translators (Richlv)
...G...PS. [ZBXNEXT-1220] added support of monitoring of log files larger than 2GB (Sasha)
...G...... [ZBX-3151] added support of monitoring files larger than 2GB in the vfs.file.size[] item (Sasha)
Bug fixes:
..F....... [ZBX-5005] fixed escaping of percent character in translation string (Vedmak)
A......... [ZBX-4997] fixed inherited item interfaces being set to null when updated by importing parent template (Eduard)
....I..... [ZBX-5003] backticked table and field names in the MySQL scheme and default data (Sasha)
..F....... [ZBX-5002] fixed undefined index error when rendering a node tree in a DM setup (Pavels)
A.F....... [ZBX-5008] fixed updating users that do not belong to the selected node (Pavels)
.......PS. [ZBX-4980] fixed trapper process crash/hang on decoding big base64 encoded values (Andris)
--------------------------------------------------------------------------------
Changes for 2.0.0rc4
New features:
..F....... [ZBX-4815] forbade deleting IT services that have dependencies (Pavels)
..F....... [ZBX-4815] all status-related fields will now be disabled when choosing "do not calculate" in the IT service configuration form (Pavels)
..F....... [ZBX-4815] implemented multiselect support for the IT service dependency pop up (Pavels)
A......... [ZBXNEXT-1189] implemented the service.getsla method (Pavels)
A......... [ZBXNEXT-1189] implemented the "selectTrigger", "selectParentDependencies" and "selectAlarms" parameters for the service.get method (Pavels)
..F....... [ZBXNEXT-1189] improved the design of the SLA report page (Pavels)
..F....... [ZBXNEXT-1196] redesigned frontend setup form (Toms)
...G...... [ZBXNEXT-1188] added support of "agent.hostname" check (Sasha)
..F....... [ZBX-1357] updated Brazilian Portuguese, Czech, Dutch, Greek, Japanese, Latvian, Polish, Russian, Spanish and Ukrainian translations; thanks to Zabbix translators (Richlv)
..F....... [ZBXNEXT-1181] redesign host mass update page (Eduard)
Bug fixes:
..F....... [ZBX-4945] fixed several map element selection not working on Command + Click on Macs (Pavels)
..F....... [ZBX-4978] fixed frontend setup welcome image (Toms)
..F....... [ZBX-4944] fixed translation string in top100 report (Vedmak)
..F....... [ZBX-4957] removed error column from item prototypes list, removed 'not supported' status from item prototype edit form (Vedmak)
..F....... [ZBX-4981] triggers that reference items created by LLD or web monitoring items are not exported for now (Vedmak)
A.F....... [ZBX-4956] fixed incorrect trigger existence checks (Pavels)
..F....... [ZBX-4815] improved IT service configuration and SLA report page performance (Pavels)
..F....... [ZBX-4815] fixed IT service sorting on the service configuration page (Pavels)
..F....... [ZBX-4815] fixed IT service configuration pop up menu translation (Pavels)
..F....... [ZBX-4815] fixed IT service status update when changing the linked trigger severity (Pavels)
A......... [ZBX-4815] fixed sorting for results returned by the "selectDependencies" and "selectParentDependencies" parameters for service.get (Pavels)
..F....... [ZBX-4960] fixed LDAP frontend messages, fixed message in 'Latest data' (Vedmak)
..F....... [ZBX-4920] fixed templates from 1.8 XML being dependent on 'hosts' rules (Vedmak)
...G...PS. [ZBX-4942] do not send prototypes for active agent to process (dimir)
....I..PS. [ZBX-4941] added default DBHost configuration parameter value "localhost" (dimir)
....I..... [ZBX-4471] fixed warnings when applying 2.0 dbpatches (dimir)
..F....... [ZBX-4969] fixed item key param macro not resolved in simple graph popup (Vedmak)
..F....... [ZBX-4964] added requirements checks for PHP xmlreader and xmlwriter (Vedmak)
..F....... [ZBX-4967] fixed template full clone (Toms)
..F....... [ZBX-3148] fixed user macro not expanded in trigger names (Toms)
..F....... [ZBX-4493] fixed host popup menu overlapping the screen range (Toms)
..F....... [ZBX-4924] fixed deletion of template screens (Vedmak)
..F....... [ZBX-4953] fixed unclear messages in setup.php (Toms)
..F....... [ZBX-4402] added contexts for ambiguous translations (Vedmak)
A.F....... [ZBX-4915] fixed host group filtering without hosts or templates (Eduard)
A......... [ZBXNEXT-1189] implemented permission checks for the "selectDependencies" service.get parameter (Pavels)
..F....... [ZBXNEXT-1189] fixed service ordering on the SLA report page (Pavels)
..F....... [ZBXNEXT-1189] fixed "Graph" links not being displayed for services with children on the SLA report page (Pavels)
..F....... [ZBXNEXT-1189] fixed time period not being remembered when following a link to a detailed service SLA report (Pavels)
..F....... [ZBXNEXT-1189] fixed problem reasons not being displayed for parent services on the SLA report page (Pavels)
..F....... [ZBXNEXT-1189] fixed service status and problems being calculated if the service status algorithm is set to "do not calculate" (Pavels)
A.F....... [ZBXNEXT-1189] fixed service status not being updated when changing the severity of a linked trigger (Pavels)
..F....... [ZBX-4857] added validation for empty username, public and private keys in an item form (Sasha)
..F....... [ZBX-4938] fixed constant not used in CAction.php (Toms)
..F....... [ZBX-4926] fixed inability to add simple graphs and plain text elements to screen templates (Toms)
........S. [ZBX-4921] fixed possible SQL errors while processing LLD data with long values (Sasha)
........S. [ZBX-4889] fixed execution of GUI Scripts for disabled hosts (Sasha)
..F.....S. [ZBX-4412] fixed updating of trigger last change by significant event (Sasha)
A......... [ZBX-4880] fixed error 'JSON-rpc error generation failed. No such error' in API (Vedmak)
..F....... [ZBX-4922] fixed importing of linked templates (Vedmak)
..F....... [ZBX-4895] fixed host proxy exported as ID (Vedmak)
.......PS. [ZBX-4857] fixed poller hanging on SSH check when using public key authentication (dimir)
..F....... [ZBX-4914] fixed graph name encoding in form preview (Vedmak)
........S. [ZBX-4881] fixed slow select queries from partitioned history tables (Sasha)
..F....... [ZBX-4495] fixed hintbox positioning (Toms)
..F....... [ZBX-4903] fixed sorting in 'Overview' screen (Vedmak)
A......... [ZBX-4927] fix proxy deletion message and remove excess space from the audit record (Richlv)
..F....... [ZBX-4900] improved performance of 'Status of Zabbix' dashboard widget (Vedmak)
...G...... [ZBX-4905] fixed processing of system.swap.in/out[,pages] under Linux 2.6 (Sasha)
...G...... [ZBX-4907] fixed processing of system.swap.in/out[,sectors/count] under Linux (Sasha)
..F....... [ZBX-4902] fixed errors in configuration export (Vedmak)
........S. [ZBX-4910] fixed updating of "SNMPv3 priv passphrase" field in low-level discovered SNMPv3 items (Sasha)
........S. [ZBX-4884] fixed incorrect calculation of items using option "Delta (speed per second)" after recovery from unsupported state (Sasha)
........S. [ZBX-4671] fixed truncation of the calculated item formula (Sasha)
........S. [ZBX-4893] fixed linking of item applications by a discovery rule (Sasha)
..F....... [ZBX-4649] fixed screen editing not working properly after moving content to another cell (Toms)
..F....... [ZBX-4875] fixed inability to drag/sort graph item with long description in graph form (Toms)
--------------------------------------------------------------------------------
Changes for 2.0.0rc3
New features:
....I..... [ZBXNEXT-973] redesign of existing templates (Alexei, Sasha)
..F....... [ZBX-4869] added support for nested screens import (Vedmak)
A.F....... [ZBXNEXT-1161] implemented the service API (Pavels)
A.F....... [ZBXNEXT-1126] redesign global script execution (Eduard)
...GI..... [ZBXNEXT-584] added support of multiple servers in active check mode; thanks to Takanori Suzuki (Sasha)
..F.I..... [ZBX-3721] design improvements (Pavels)
A.F....... [ZBXNEXT-908] redesign Configuration->Host->Graphs (Eduard)
..F....... [ZBX-4738] improved the host interface selection in the item mass update form (Pavels)
...G...... [ZBX-4635] added support for optional first parameter to vfs.dev.* on Solaris (dimir)
..F....... [ZBXNEXT-1153] added support for nested templates in import (Vedmak)
..F....... [ZBX-1357] updated Czech, French, German, Greek, Japanese, Polish, Russian, Spanish and Turkish translations; thanks to Zabbix translators (Richlv)
Bug fixes:
A.F....... [ZBX-4890] fixed creating hosts by administrators (Pavels)
..F....... [ZBXNEXT-1161] fixed multiple IT service validation issues (Pavels)
.......PS. [ZBX-4793] fixed processing of quoted strings in dynamic SNMP indexes (Sasha)
.......PS. [ZBX-4709] fixed processing of quoted strings in SNMP items (Sasha)
........S. [ZBX-4882] fixed processing of quoted strings in SNMP lld rules (Sasha)
..F....... [ZBX-3219] added newlines to script execution error messages (Vedmak)
..F....... [ZBX-4348] fixed graph values not displayed for regular user (Toms)
..F....... [ZBX-4698] fixed selected host group forgotten if "remember selected" is disabled (Toms)
..F....... [ZBX-4871] fixed templates listed when adding log items in history (Toms)
..F....... [ZBX-4862] fixed Error when trying to remove additional templates in the host mass update form (Toms)
....I..... [ZBX-3929] removed deprecated Switch module from gen_schema.pl and get_data.pl scripts (Sasha)
..F....... [ZBX-4738] fixed several checkboxes state not being saved after an unsuccessful item mass update (Pavels)
..F....... [ZBX-4865] fixed error bar in case of error with words longer than screen (Toms, Pavels)
........S. [ZBX-4840] improved slow SQL queries in processing of {ITEM.VALUE} and {ITEM.LOG.*} macros (Sasha)
..F....... [ZBX-4572] fixed incorrect value input in GUI configuration form raising critical error (Vedmak)
..F....... [ZBX-4841] fixed inability to select other but the first of the discovery checks for a discovery rule in popup.php (Toms)
..F....... [ZBX-4110] renamed 'Password' to 'Key passphrase' in action form (Vedmak)
..F....... [ZBX-4686] fixed the "Change" link not being accessible for graph type screen items in embedded screens (Pavels)
..F....... [ZBX-4836] fixed undefined variables in actionconf.php when trying to add maintenance status; fixed some random ordering for conditions (Toms)
..F....... [ZBX-4829] fixed incorrect redirect in 'insert trigger' popup in trigger expression builder (Vedmak)
A......... [ZBX-4784] fixed inherited triggers being updated on any host update (Vedmak)
........S. [ZBX-4824] fixed memory leak while switching item to not supported status (Sasha)
..F....... [ZBX-4830] fixed error when trying to create item without host (Vedmak)
..F....... [ZBX-4676] fixed link to triggers from dashboard 'system status' widget not reseting host filter (Vedmak)
..F....... [ZBX-4568] fixed new host groups not populated with selected group when 'remember selected' is disabled in GUI settings (Vedmak)
..F....... [ZBX-4583] fixed possible processing of null as object in CUIwidget (Vedmak)
..F....... [ZBX-4740] fixed host filter when switching to 'configuration of items' from another host configuration page (Vedmak)
...G...... [ZBX-4195] fixed memory leak while processing unsupported performance counters by Windows agent (Sasha)
....I..PS. [ZBX-4780] removed vfs.fs.discovery returned value limit when processed by proxy (dimir)
...G...... [ZBX-4802] improved memory de-allocation code clarity (Andris)
..F....... [ZBX-4739] fixed mass update failing with many items selected (Toms)
..F....... [ZBX-4821] fixed flexible interval update using item mass update form (Vedmak)
..F....... [ZBX-4806] fixed "New flexible interval" not shown in item form (Toms)
A.F....... [ZBX-4790] fixed *ERROR*s in trigger expressions in items.php; fixed undefined variables when filtering without host (Toms)
..F....... [ZBX-3725] added check for xml file size exceeds upload_max_filesize php setting (Vedmak)
A.F....... [ZBX-3991] forbid passive proxy interfaces with ip 0.0.0.0 (Vedmak)
..F....... [ZBX-3152] fixed messages are shown even if all severities are unchecked (Vedmak)
....I..... [ZBXNEXT-397] removed records from "ids" table to prevent SQL errors while adding a new item (Sasha)
..F....... [ZBX-4811] added 'filter' and 'lifetime' fields to discovery rules export (Vedmak)
...G...... [ZBX-4801] fixed processing of proc.num[] and proc.mem[] checks with name of processes more than 15 characters (Sasha)
..F....... [ZBX-4792] fixed missing field "Allowed hosts" when item type Zabbix trapper (Toms)
..F....... [ZBX-4038] fixed warnings for incorrect input values (Toms)
..F....... [ZBX-4781] fixed error message when copying items to multiple hosts (Toms)
--------------------------------------------------------------------------------
Changes for 2.0.0rc2
New features:
........S. [ZBXNEXT-1162] improved performance of processing of triggers by history syncers and timer processes (Sasha)
A.F....... [ZBXNEXT-1149] import of nested maps, import form redesign (Vedmak)
........S. [ZBXNEXT-744] added support of {ITEM.ID} and {TRIGGER.EXPRESSION} macros in notifications and commands (Sasha)
A.F....... [ZBXNEXT-914] redesign Administration->DM (Eduard)
Bug fixes:
..F....... [ZBX-4788] fixed trigger severity being reset when changing dependencies via mass update (Sasha)
..F....... [ZBX-4787] fixed graph axis item selection popup shows only monitored hosts (Vedmak)
..F....... [ZBX-4779] fixed new groups import (Vedmak)
..F....... [ZBX-4775] fixed discovery rules import (Vedmak)
..F....... [ZBX-4700] fixed errors in item list when using interface related macro in template item key (Vedmak)
..F....... [ZBX-4761] fixed "&" escaping in form inputs (Pavels)
.......PS. [ZBX-4749] fixed proxy crash on exit when deleting trend cache (dimir)
..F....... [ZBX-4778] fixed port field validation in creating discovery rule (Toms)
A.F....... [ZBX-4718] fixed Graph axis item cloning in host Full Clone (Toms)
A......... [ZBX-4621] fixed macro update using host.massupdate (Vedmak)
A.F....... [ZBX-4697] fixed error when massupdate group for hosts that belongs to different groups (Vedmak)
A.F....... [ZBX-4257] fixed creating discovery rules, items and item prototypes (Pavels)
..F....... [ZBX-4765] fixed filter fields being unset when saving of discovery rule fails (Vedmak)
..F....... [ZBX-4736] fixed undefined variable in Inventory Hosts (Toms)
..F....... [ZBX-4764] fixed critical error in Administration->Notifications (Toms)
..F....... [ZBX-4753] properly pluralized "Last n issues" message in dashboard (Vedmak)
..F....... [ZBX-3613] updated notification sounds; fixed sound playback in profile (Toms, Vedmak)
..F....... [ZBX-4713] fixed ACK status for triggers visible in Dashboard and Screens (Toms)
..F....... [ZBX-4752] fixed creating SNMPv1 item prototypes with data type "boolean" (Vedmak)
..F....... [ZBX-4702] fixed dynamic item saving in Screens (Eduard)
A.F....... [ZBX-4257] fixed updating templated items (Pavels)
A.F....... [ZBX-4710] fixed replacing graph Y axis item prototypes when cloning a discovery rule (Pavels)
A.F....... [ZBX-4710] fixed deleting hosts when a graph prototype uses a normal item for it's Y scale (Pavels)
..F....... [ZBX-4365] added plural translation support for the failed login attempt message (Pavels)
..F....... [ZBX-4365] fixed user being redirected to the dashboard after trying to login with an incorrect password (Pavels)
--------------------------------------------------------------------------------
Changes for 2.0.0rc1
New features:
....I...S. [ZBX-4751] removed "WITH OIDS" option from PostgreSQL database scheme (Sasha)
....I..PS. [ZBXNEXT-397] added support of web monitoring by Zabbix proxy (Sasha)
..F....... [ZBX-3531] configuration export/import (Vedmak)
...G...PS. [ZBX-4581] added time unit symbols support to aggregate items (dimir)
A.F....... [ZBX-4333] implemented dependency validation in trigger::adddependencies (Pavels)
A.F....... [ZBX-4333] implemented dependency inheritance in the trigger.adddependencies and trigger.deletedependencies methods (Pavels)
..F....... [ZBXNEXT-904] redesign Configuration->Screens (Eduard)
..F....... [ZBX-4600] trigger dependencies will now be deleted when executing a mass update with no dependencies selected (Pavels)
A......... [ZBX-4563] changed the hostmacro related UserMacro method interfaces (Pavels)
..F....... [ZBX-4563] improved SQL query debug log design (Pavels)
..F....... [ZBX-4537] improved include_once statements to make Zabbix code easier to reuse (Alexei)
..F....... [ZBXNEXT-1113] redesign Configuration->Host->Discovery rules (Eduard)
..F....... [ZBXNEXT-1107] redesign Configuration->Audit (Eduard)
....I..PS. [ZBX-2604] added processing of not supported items monitored by a proxy (Sasha)
..F....... [ZBXNEXT-903] redesign Configuration->Items (Eduard)
..F....... [ZBXNEXT-909] redesign Configuration->Discovery (Eduard)
Bug fixes:
..F....... [ZBX-3528] fixed letter numbering of long lists (Vedmak)
...G.J.PS. [ZBX-4725] fixed processing lld rules with macros in a key (Sasha)
..F....... [ZBX-4730] removed incorrect JS function call in the event history screen (Pavels)
..F....... [ZBX-3522] fixed errors when inserting too long values in the user_history and profiles tables (Vedmak)
A.F....... [ZBX-4333] fixed trigger inheritance when calling trigger.update whithout a trigger expression (Pavels)
..F....... [ZBX-4333] fixed host trigger mass update (Pavels)
..F....... [ZBX-4333] fixed trigger dependency copying (Pavels)
.......S.. [ZBX-4629] fixed processing Y axis min/max values for graph prototypes (Sasha)
..F....... [ZBX-4641] fixed errors in a "Discovery checks" popup (Sasha)
A.F....... [ZBX-4202] fixed SQL performance in tr_status.php - combined similar queries, user data SQL access only once, triggerids retrieval optimization (Toms)
A.F....... [ZBX-4647] fixed trigger and item prototype inheritance (Pavels)
..F....... [ZBX-4467] fixed the ZBX_MAX_PERIOD constant not affecting the timebar control (Pavels)
A......... [ZBX-4562] fixed mediatype.update returning incorrectly formatted result (Toms)
..F....... [ZBX-4187] fixed dashbord fonts on popup. fixed js error on last 20 issues (Toms)
A.F....... [ZBX-4607] fixed the script.getscriptbyhosts method returning scripts from nodes defferent from hosts (Pavels)
A.F....... [ZBX-4607] fixed the script "Host groups" parameter (Pavels)
A......... [ZBX-4607] fixed the script.get methods "selectHosts" and "selectGroups" options (Pavels)
..F....... [ZBX-4607] fixed new ID generation in DM setup (Pavels)
..F....... [ZBX-4253] fixed menu link inconsistency in tr_status.php (Toms)
..F....... [ZBX-4554] fixed ordering (Toms)
..F....... [ZBX-4295] fixed icons ending outside map. Removed icon resizing responsible for infinite loop (Toms)
..F....... [ZBX-4296] fixed popup menu unavailable for disabled hosts (Toms)
....I..... [ZBX-4693] fixed hosts table foreign key constraint error during database upgrade (dimir, Sasha)
A.F....... [ZBX-4563] fixed host macro IDs being regenerated when updating macros (Pavels)
A.F....... [ZBX-4563] fixed several macro validation issues (Pavels)
..F....... [ZBX-4563] fixed macro sorting (Pavels)
..F....... [ZBX-3735] fixed login form to send passwords via POST not GET; thanks to Joseph Bueno (Alexei)
A......... [ZBX-954] increased API version to 1.4, Zabbix 1.8.x is using 1.3 (Alexei)
A.F....... [ZBX-4604] fixed the "change" link not being accessible for graph type screen items in embedded screens (Pavels)
........S. [ZBX-4560] fixed low level discovery error messages to start with uppercase 'Cannot ...' (Alexei)
..F....... [ZBX-4677] fixed minor typo in class.cscript.php; thanks to Łukasz Jernaś (Alexei)
..F.....S. [ZBX-4261] fixed disovery rules in the queue calculation (Sasha)
...G...... [ZBX-4624] fixed processing of system.cpu.switches metric (Sasha)
..F....... [ZBX-4623] fixed host group visibility for non superadmins. (Toms)
........S. [ZBX-4662] fixed server crash while linking a template with DebugLevel=4 (Sasha)
..F....... [ZBX-1335] improved Item filter. (Eduard)
..F....... [ZBX-4630] fixed "Trigger overview" screen. (Eduard)
.......PS. [ZBX-4628] fixed an "invalid number of fields" error when syncing configuration on proxy (Sasha)
A.F....... [ZBX-4593] fixed "trigger info" type screen item resource validation (Pavels)
A.F....... [ZBX-4599] fixed errors in building select queries in Event.get() (Pavels)
..F....... [ZBX-1787] fixed gradient element rendering if the value exceeds the max Y scale value (Pavels)
A.F....... [ZBX-4494] fixed some types of screen items not being returned by Screen.get() (Pavels)
.......PS. [ZBX-4591] more secure substituting of macros in item keys and dynamic SNMP OIDs (Sasha)
..F....... [ZBX-4598] fixed audit error when saving triggers (Pavels)
A.F....... [ZBX-4598] fixed templated trigger inheritance (Pavels)
..F....... [ZBX-3373] fixed host interfaces filtering in items. (Eduard)
..F....... [ZBX-4110] fixed "ssh key" field and "password" field names in items. (Eduard)
..F....... [ZBX-3466] fixed creating new item without hostname. (Eduard)
..F....... [ZBX-1601] fixed clear history and trends of items for templates. (Eduard)
..F....... [ZBX-3330,ZBX-4280] fixed remembering of item filter parameters. (Eduard)
..F....... [ZBX-2662,ZBX-3304] fixed reset button style in filter. (Eduard)
..F....... [ZBX-2071] fixed IPMI sensors with trailing spaces in items. (Eduard)
..F....... [ZBX-2631] fixed flexible interval configuration in items. (Eduard)
..F....... [ZBX-4596] fixed trigger prototype deletion. (Eduard)
..F....... [ZBX-2515] set 15 minutes autologout as default for new users (Alexei)
..F....... [ZBX-4580] fixed trigger info pop up in the item configuration list (Pavels)
--------------------------------------------------------------------------------
Changes for 1.9.9
New features:
..F....... [ZBX-4558] added audit logging when udpating and creating triggers (Pavels)
..F....... [ZBXNEXT-1066] removed the "Monotoring - Hosts" page (Pavels)
..F....... [ZBXNEXT-1066] remade the "Search" page layout (Pavels)
..F....... [ZBXNEXT-1066] added the host pop up menu to the "Events", "Event details", "Latest data" and "Overview" pages (Pavels)
..F....... [ZBXNEXT-1066] added the "Host screens" link to all of the host pop up menus (Pavels)
A.F.....S. [ZBXNEXT-814] added support of disabling media types (Alexei)
...GI..... [ZBXNEXT-1024] added support for more vm.memory.size modes for various platforms (asaveljevs, dimir)
..F....... [ZBXNEXT-1019] updated jQuery to 1.7.1 and jQuery-ui to 1.8.17 (Vedmak)
..F....... [ZBXNEXT-1058] added an item lifetime indicator icon in the item configuration (pavels, Sasha)
..F....... [ZBXNEXT-1058] changed the default discovery rule 'lifetime' field value to 30 days (pavels, Sasha)
A.......S. [ZBX-4479] added possibility to add a dependency from a template to a host (Sasha, Slava)
..F....... [ZBX-4483] added transparency support for image resizing (Pavels)
..F....... [ZBXNEXT-905] redesign Configuration->Triggers (Eduard)
..F....... [ZBXNEXT-912] redesign Configuration->Slide shows (Eduard)
..F.I...S. [ZBXNEXT-406] replaced an older 'status' check to an internal 'zabbix[host,<type>,available]' check (asaveljevs, Sasha)
..F.I..... [ZBX-4009] added new option in map configuration which enables macros expanding (Vedmak)
..F.I...S. [ZBX-3286] added ability to automatically delete low level discovered resources (Sasha, Vedmak)
........S. [ZBX-2806] improved processing of escalations (dimir, Sasha)
..F....... [ZBX-1357] updated Brazilian Portuguese, Dutch, French, Greek, Latvian, Polish, Russian and Ukrainian translations; thanks to Zabbix translators (Richlv)
A.F....... [ZBX-3527] improved host form to allow selection of default interface (Vedmak)
A.F.....S. [ZBX-4262] added support of item prototypes for graph y axis min/max (pavels, Sasha)
A.F....... [ZBX-4311] fixed graph prototype name validation (Pavels)
A.F....... [ZBXNEXT-906] redesign Configuration->Host groups (Eduard)
....I..... [ZBX-4024] new build process for database schema and data, also new location of database related files; db data file uses transactions now (Alexei)
Bug fixes:
A......... [ZBX-4586] implemented item's application validation in the Item.update and Item.create API methods (Pavels)
.......P.. [ZBX-4577] fixed possible SQL errors when updating a configuration on a proxy (Sasha)
..F....... [ZBX-4106] fixed "Status of triggers" screen element layout (Vedmak)
A.F....... [ZBX-4558] fixed deleting child template triggers when moving a trigger to a template (Pavels)
A......... [ZBX-4558] fixed child template trigger attributes being reset when updating a template trigger (Pavels)
..F....... [ZBX-4558] fixed trigger form "type" field value being inverted (Pavels)
A......... [ZBX-4520] removed possibility to create dependencies from hosts to templates (Pavels)
..F....... [ZBX-4467] removed the warning message when setting the zoom to "All" in screen monitoring (sanja)
..F....... [ZBX-4434] fixed validation of duplicated user macros; fixed some error messages (sanja)
....I...S. [ZBX-4555] fix compilation error on Solaris (get rid of INT_MAX dependency) (dimir, Sasha)
..F....... [ZBX-4523] fixed impossibility to correctly translate some parts of Zabbix (sanja)
..F....... [ZBX-4513] refactored value mappings form (Vedmak)
..F....... [ZBX-4477] fixed new expressions created on each Zabbix regexp update (Vedmak)
..F....... [ZBXNEXT-1058] fixed confirmation pop-up showing up on auto refresh in latest data (Pavels)
....I..... [ZBX-2701] removed empty value mappings from a default data (Sasha)
A.F....... [ZBX-4505] fixed global macro recreation instead of updating (Pavels)
..F....... [ZBX-4505] fixed audit message appearing when saving an unchanged global macro (Pavels)
A......... [ZBX-4519] fixed impossibility to delete template : Unknown column 'h.name' (sanja)
..F....... [ZBX-4468] removed possibility to add to value mappings few items with same name (Slava)
..F....... [ZBX-4483] added proper icon image resizing (Pavels)
..F....... [ZBX-4456] fixed error position in IT services form (Vedmak)
..F....... [ZBX-4470] fixed node initialization in DM setup (Pavels)
..F....... [ZBX-4407] fixed import hosts from 1.8 version (sanja)
A......... [ZBX-4425] fixed item prototype interface mapping when cloning a discovery rule (Pavels)
..F....... [ZBX-4459] fixed values are cleared when try to add incorrect value mapping, negative values now allowed (Vedmak)
..F....... [ZBX-4458] fixed js error in global macro form, changed layout to be consistant with other places (Vedmak)
..F....... [ZBX-4449] fixed IT services SLA graph permission checks (Pavels)
A......... [ZBX-4448] fixed proxy interface validation (Pavels)
..F....... [ZBX-4455] fixed the 'sortorder' field validation in the IT services form (Pavels)
..F....... [ZBX-4427] fixed map element host group highlighting (Pavels)
..F....... [ZBX-4446] fixed event duration calculation (Pavels)
........S. [ZBX-2806] fixed possible double notification messages (dimir,Sasha)
A......... [ZBX-4425] fixed unsetting interface when performing Item::udpate requests (Pavels)
..F....... [ZBX-4436] fixed wrong sql query in discovery popup (Slava)
....I..... [ZBX-4429] fixed problem with wrong mysql comment tag and warning in mysql function when update to 1.9.8 (Slava)
........S. [ZBX-4418] fixed possible SQL errors while processing of time functions (Sasha)
..F....... [ZBX-4336] fixed problem with item status clearing when changing to active in frontend (Slava)
A.F....... [ZBX-4260] replaced event sorting by 'clock' with 'eventid' (Pavels)
..F....... [ZBX-4381] fixed permission check in SLA reports (Pavels)
..F....... [ZBX-4411] remade the zbx_stripos() function whithout the use of mb_stripos() (Pavels)
..F....... [ZBX-4015] fixed multiple XSS issues (Pavels)
..F....... [ZBX-4334] changed disabled triggers and scenarios to be shown by default (sanja)
A......... [ZBX-4403] fixed low level discovery rule creation (Pavels)
..F.I...S. [ZBX-3832] removed support of aggregated graph items (pavels, Sasha)
..F....... [ZBX-4235] fixed operations with decimal numbers for certain locales (Pavels)
A.F....... [ZBX-4382] fixed missing dates in the midle of graph axis (sanja)
A.F....... [ZBX-3366] fixed API sorting (Eduard)
--------------------------------------------------------------------------------
Changes for 1.9.8
New features:
- [ZBX-3104] implemented the screen item API (Pavels)
- [ZBXNEXT-913] redesign Configuration->IT Services (Eduard)
- [ZBXNEXT-907] redesign Configuration->Applications (Eduard)
- [ZBX-3271] implemented the _x() and _xn() function for context dependent translations (pavels, Richlv, Vedmak)
- [ZBX-3498] removed items from unmonitored hosts from the 'Add graph' and 'Add simple graph' pop-ups in the 'Favourite graphs' widget (Pavels)
- [ZBX-3498] removed the 'Status' column from the 'Add simple graph' pop-up (Pavels)
- [ZBXNEXT-1019] updated jQuery to 1.7 (Vedmak)
- [ZBX-1357] added initial Greek translation (Richlv)
- [ZBXNEXT-911] redesign Configuration->Web (Eduard)
- [ZBXNEXT-579] added support for vfs.fs.discovery (with both {#FSNAME} and {#FSTYPE}) on FreeBSD, NetBSD and OpenBSD (asaveljevs)
- [ZBXNEXT-580] added support for {#FSTYPE} for vfs.fs.discovery on AIX, HP-UX, Linux, Solaris and Windows (asaveljevs)
- [ZBX-3074] moved the 'Status' column in the item list to the left (Pavels)
- [ZBX-1357] updated Brazilian Portuguese, Japanese, Polish, Russian and Ukrainian translations; thanks to Zabbix translators (Richlv)
- [ZBX-2960] added example userparameter for partition discovery on Linux (Richlv)
Bug fixes:
- [ZBX-3104] fixed screen item "Parameter" field validation and some minor screen item bugs (Pavels)
- [ZBX-3593] fixed misaligned server name on top of the page (sanja)
- [ZBX-3771] fixed possible 'Lock wait timeout' while processing lld rules (Sasha, pavels)
- [ZBX-4139] fixed "Last n issues" widget label ignoring variable that sets the amount of issues (Richlv)
- [ZBX-4359] fixed potentially incorrectly named index on node_cksum table (Richlv, Sasha)
- [ZBX-4188] fixed nclob problem for Oracle (Vedmak)
- [ZBX-4279] added an error message when trying to delete an item, that's being used as a min/max Y axis value for graphs (Pavels)
- [ZBX-4282] fixed errors when importing templates with trigger dependencies (Pavels)
- [ZBX-4108] updated FSF mailing address (Richlv)
- [ZBX-4244] fixed inline-block container resizing in object lists in IE8 (Pavels)
- [ZBX-4297] fixed error in top 100 triggers report (Vedmak)
- [ZBX-4258] fixed link to the template prototype item in the caption of the item editing form (Pavels)
- [ZBX-3510] fixed discovery and it's prototype cloning when cloning a host or template (Pavels)
- [ZBX-3674] fixed possible editing of lld created elements (Vedmak)
- [ZBX-3113] made nanoseconds patch mandatory for upgrading from 1.8 to 2.0 (asaveljevs)
- [ZBX-3468] fixed error messages and warnings with enabled SQLite3 support in front-end (Alexei)
- [ZBX-4056] fixed dependencies not added when template linked to host (Vedmak)
- [ZBX-4315] fixed the 'close' link in the tooltips (Pavels)
- [ZBX-3675] fixed items created via API for template have wrong interfaceid on linked host (Vedmak)
- [ZBX-4212] fixed creation of trigger expression with "])" in item key (Vedmak)
- [ZBXNEXT-675] reduced surrounding whitespace for Switch, Cloud, Crypto-router, UPS, Hub and Router map icons (Elvis, Richlv)
- [ZBX-4305] removed CREDITS file (Richlv)
- [ZBX-2504] replaced 'Groups' by 'Replace host groups' in host mass-update form to avoid confusion (Alexei)
- [ZBX-2960] added defaults for example userparameters vfs.dir.size (/tmp) and proc.cpu (zabbix_agentd) to avoid errors in 'zabbix_agentd -p', documented them (Richlv)
- [ZBX-2960] clarified what happens if proc.cpu does not match any processes (Richlv)
- [ZBX-2960] made mysql.ping example userparameter a but more efficient by avoiding extra 'wc' invocation (Richlv)
- [ZBX-3710] renamed "Zabbix Java Proxy" to "Zabbix Java Gateway" (asaveljevs)
- [ZBX-4179] fixed compilation on OpenBSD: `NS_DEFAULTPORT' undeclared (asaveljevs)
- [ZBX-3885] fixed error when update trigger prototype with wrong data (Vedmak)
- [ZBX-3857] fixed creation and sorting of trigger prototypes (Vedmak)
- [ZBX-4245] fixed error when add operation condition in action (Vedmak)
- [ZBX-4265] fixed iconmappig API permission check (Pavels)
- [ZBX-4283] fixed template creation being reported as an update (Richlv)
- [ZBX-3749] escaped HTML entities in the web step "required" field (Pavels)
--------------------------------------------------------------------------------
Changes for 1.9.7
New features:
- [ZBX-1346] add example user parameter to monitor mail queue length from mailq (Richlv)
- [ZBXNEXT-429] make range select work in a more intuitive fashion (Eduard)
- [ZBXNEXT-910] redesign Configuration->Maintenance (Eduard)
- [ZBX-4222] added more clear labels 'Escalation period' and 'Default escalation period' in configuration of actions (Alexei)
- [ZBXNEXT-485] improved simple checks key syntax as in other item keys (Sasha)
- [ZBXNEXT-916] redesign Administration->Users, Users groups, User Profile (Eduard)
- [ZBXNEXT-951] added possibility to calculate CPU load per processor: system.cpu.load[percpu,avgX] (rudolfs)
- [ZBXNEXT-965] added redirect to a special warning page when user browser is not supported by Zabbix (Eduard)
- [ZBX-4167] updated requirements screen for frontend (Vedmak)
- [ZBXNEXT-918] redesign Administration->Media types (Eduard)
- [ZBXNEXT-915] redesign Administration->Authentication (Eduard)
- [ZBXNEXT-966] update jQuery to 1.6.4 (Eduard)
- [ZBX-1357] updated Brazilian Portuguese, Dutch, German, Japanese, Polish, Russian, Slovak and Ukrainian translations; thanks to Zabbix translators (Richlv)
Bug fixes:
- [ZBX-3892] added support for low-level discovery template to action condition check (dimir)
- [ZBX-4169] fixed filter reset after timeline change in Monitoring->latest data->History of log item (Vedmak)
- [ZBX-3753] fixed possibility to remove host interface that is in use (Vedmak)
- [ZBX-4238] fixed resolving of discovery macros in 'Formula' field for calculated items, 'Executed script' for SSH and Telnet items and 'Additional parameters' for Database monitor items (Sasha)
- [ZBX-4153] fixed links to acknowledge and returning back to requester page (Eduard)
- [ZBX-4174] made database monitor items not require interface (asaveljevs, Vedmak)
- [ZBX-3881] fixed delay being set to 0 when changing item type from trapper to agent in item update form (Vedmak)
- [ZBX-4115] added support for $(DESTDIR) for installing Zabbix Java proxy (dimir)
- [ZBX-1020] added support for --sysconfdir, changed default installation directories (dimir, Richlv)
- [ZBX-3912] fixed popup object selection for IE (Eduard)
- [ZBX-4132] fixed checkbox cookie work (Eduard)
- [ZBX-3635] fixed situation when templated trigger can reference items from another template not linked to a host (Vedmak)
- [ZBX-4107] fixed map element configuration form layout (Vedmak)
- [ZBX-4219] replaced {HOSTNAME} by {HOST.NAME} in data.sql (Alexei)
- [ZBX-3540] removed unused node properties: timezone, history keeping, trend keeping (Alexei)
- [ZBX-3275] fixed deleting of master node, it shouldn't delete other nodes (Alexei)
- [ZBX-4209] fixed warning in latest data when navigating from monitoring->hosts page (Alexei)
- [ZBX-4208] fixed Brazilian Portuguese being reported as just Portuguese in locale code (Richlv)
- [ZBX-4151] fixed timer crash due to heap memory corruption (asaveljevs)
- [ZBX-3755] fixed latest values in cloned items (Sasha)
- [ZBX-3165] fixed layout of item prototypes form (Vedmak)
- [ZBX-3342] fixed translation of graphs "Generated in x sec" stamps (Vedmak)
- [ZBX-3926] fixed "Hide/Show selected" filter in history of log items (Vedmak)
- [ZBX-4119] fixed items like simple check require agent interface on host, now any interface is enough (asaveljevs, Vedmak)
- [ZBX-3745] fixed error message when link template with discovery rule to host that does not have needed interface (Vedmak)
- [ZBX-3896] fixed broken triggers after removed item that is used in trigger (Vedmak)
- [ZBX-4106] fixed layout of "Status of host triggers" screen element (Vedmak)
- [ZBX-4061] fixed errors when try to delete already deleted regular expression (Vedmak)
- [ZBX-4058] fixed working time updating in Administration->General->Working time (Vedmak)
- [ZBX-4060] fixed error when save map with link updated to connect new element (Vedmak)
- [ZBX-4166] fixed error in dashboard when configured to show unacknowledged only (Vedmak)
- [ZBX-4003] fixed error when try to use not existing host group as group for discovered hosts (Vedmak)
- [ZBX-4165] fixed failing insert into proxy_dhistory queries on the proxy side (rudolfs)
- [ZBX-2882] fixed wrong item vfs.file.cksum[/vmlinuz] for some templates (Sasha)
- [ZBX-3870] fixed data deletion order in proxy configuration synchronization (deniss, rudolfs)
- [ZBX-3707] fixed possible empty action conditions (Vedmak)
- [ZBX-4171] fixed server crash in add_value_suffix() under DebugLevel=4 (asaveljevs)
- [ZBX-3930] fixed errors when return to some specific screens from profile screen (Vedmak)
- [ZBX-3400] fixed calculation of graph header font size, Zabbix will decrease it to fit graph width (Alexei)
- [ZBX-4105] fixed removal of host groups in configuration of dashboard, thanks to Pustovalov Alexey (Alexei)
- [ZBX-3939] fixed warning messages when looking at the history of several selected log items (Alexei)
- [ZBX-3493] fixed warnings when removing and clearing a template (Alexei)
- [ZBX-4143] fixed cases with upgrade patch sometimes attempting to reference tables that were not created yet (Richlv, Sasha)
- [ZBX-3618] extended allowed syntax for host interface DNS names (Vedmak)
- [ZBX-3999] fixed map border (Alex, Sasha, Eduard)
- [ZBX-3946] fixed errors when create trigger with dependencies (Vedmak)
- [ZBX-3921] fixed change link shown for maps in slide show (Vedmak)
- [ZBX-4082] fixed error in Monitoring->Triggers when acknowledges are disabled (Vedmak)
- [ZBX-4080] fixed host header info shown for creation form (Vedmak)
- [ZBX-3987] fixed errors when change host in Monitoring->Graphs (Vedmak)
- [ZBX-4114] fixed icon maps form height on dragging (Vedmak)
- [ZBX-4101] fixed excess borders in screen cell configuration form (Vedmak)
- [ZBX-3786] fixed incorrect inheritance of items when template is linked to another template linked to host (Vedmak)
- [ZBX-1207] fixed host full clone with custom graphs (Vedmak)
--------------------------------------------------------------------------------
Changes for 1.9.6
New features:
- [ZBXNEXT-747] added direct SNMP trap monitoring for snmptrapd and embed perl or SNMPTT (Eduard, rudolfs, Vedmak)
- [ZBX-4116] fixed ibm_db2 update patch for help_items table (rudolfs)
- [ZBXNEXT-895] redesign general->Macros (Eduard)
- [ZBXNEXT-899] redesign general->Images (Eduard)
- [ZBXNEXT-785] support of automatic selection of map icon element depending on element type (Eduard, Vedmak)
- [ZBX-3683] removed the obsolete item zabbix[log] (Sasha)
- [ZBXNEXT-891] redesign general->Value mapping (Eduard)
- [ZBXNEXT-889] redesign general->Regular expressions (Eduard)
- [ZBXNEXT-885] redesign general->Housekeeper, Working time and Other (Eduard)
- [ZBXNEXT-871] redesign general->gui (Eduard)
- [ZBX-1357] updated German, Japanese, Latvian, Polish, Russian, Turkish and Ukrainian translations; thanks to Zabbix translators (Richlv)
- [ZBXNEXT-863] renamed "host profile" to "host inventory" (dimir)
Bug fixes:
- [ZBX-3647] fixed parsing of parameter in external scripts to work like in normal keys and added support for multiline output (Sasha)
- [ZBX-2530] renamed "system.cpu.util" item parameters for solaris from "wait" to "iowait", from "kernel" to "system" (deniss)
- [ZBX-4049] fixed memory leak in configuration syncer (rudolfs)
- [ZBX-4017] fixed host deletion using api (Vedmak)
- [ZBX-4029,ZBX-4037] fixed inconsistent and untranslatable strings in frontend and clarified frontend messages (Richlv)
- [ZBX-4010] fixed undefined constant SVC_SNMPv2 in discovery action conditions (Richlv)
- [ZBX-3775] fixed html formatting in Overview (Eduard)
- [ZBX-4001] fixed nearly duplicate strings, clarified error messages and removed obsolete translation strings (Richlv, Sasha)
- [ZBX-4004] fixed typos in function names (Richlv)
- [ZBX-4002] fixed template name being reported as host name when incorrect characters were used (Richlv)
--------------------------------------------------------------------------------
Changes for 1.9.5
New features:
- [ZBXNEXT-831] macros in interface IP addresses and DNS names are resolved in cache (rudolfs)
- [ZBXNEXT-841] added "config" table to configuration cache, refresh_unsupported now is read from cache and synced with proxies (rudolfs)
- [ZBXNEXT-807] implemented configuration cache for triggers (asaveljevs)
- [ZBXNEXT-674] added host area functionality for maps (Aly, Vedmak)
- [ZBXNEXT-738] added configurable colors and blinking for alarm states OK/PROBLEM (KB)
- [ZBXNEXT-827] move misc/conf to the top level source directory (Richlv)
- [ZBXNEXT-746] added trigger sorting by severity and host name (KB)
- [ZBX-1357] updated Latvian, Russian and Ukrainian translations; thanks to Zabbix translators (Richlv)
- [ZBXNEXT-783] added Inventory -> Overview report and filter to Inventory -> Hosts (KB)
- [ZBXNEXT-467] renamed net.tcp.dns(.query)[] to net.dns(.record)[], added Windows support, retrans and timeout parameters and IP parameter support for UNIX (rudolfs)
- [ZBX-3828] added Turkish translation; thanks to Murat Koç (Richlv)
- [ZBXNEXT-677] added system.hw.* and system.sw.* items for Linux (rudolfs)
- [ZBXNEXT-780] all items (including user parameters and external checks) can also return only whitespace (rudolfs)
Bug fixes:
- [ZBX-3962] fixed memory leak in poller processes (Sasha)
- [ZBX-3901] fixed make errors due to "cp -n" under RHEL with --enable-java option (Sasha)
- [ZBXNEXT-828] remove outdated spec files (Richlv)
- [ZBX-3841] returned functionality of a macro {HOSTNAME} as in the version 1.8.x (Sasha)
- [ZBX-3841] fixed processing of {HOST.NAME} macro in item keys (Sasha)
- [ZBX-3858] fixed host selection in action condition popup (Vedmak)
- [ZBX-3852] fixed duplicate HTML IDs in events.php (KB)
- [ZBX-3846] fixed typo in map creation info message during export (Vedmak)
--------------------------------------------------------------------------------
Changes for 1.9.4
New features:
- [ZBXNEXT-647] added automatic population of profile fields (KB, Sasha)
- [ZBXNEXT-629] redesigned discovery form and added https and telnet to discovery and net.tcp.service(.perf) (Aly, rudolfs, Vedmak)
- [ZBXNEXT-627] support of visible host and template name (Alexei, Sasha)
- [ZBXNEXT-672] advanced options for remote commands (Aly, asaveljevs, Sasha, Vedmak)
- [ZBX-1357] updated French, Latvian, Polish, Russian and Ukrainian translations; thanks to Zabbix translators (Richlv)
- [ZBX-2756] renamed macro {TRIGGER.KEY<1-9>} to {ITEM.KEY<1-9>} (asaveljevs)
- [ZBXNEXT-511] renamed item description to name, for description introduced a new field (asaveljevs, Vedmak)
Bug fixes:
- [ZBX-3774] fixed displaying of visible host and template name in several screens (Alexei)
- [ZBX-3730] fixed bug with javascript translations - now js strings actually get translated (KB)
- [ZBX-3752] fixed error in slides with system status (Vedmak)
- [ZBX-3724] fixed broken images when importing and exporting maps with PostgreSQL (Alexei, Sasha, Vedmak)
- [ZBX-3794] added timeout support to vfs.file.contents[] command (dimir)
- [ZBX-3809] fixed overwriting of existing elements and links when importing a map (Alexei)
- [ZBX-954] typo in constant name, cause error when try to clear item history (Vedmak)
- [ZBX-3769] fixed applications unlinked when update item prototypes (Vedmak)
- [ZBX-3678] fixed unlinking template with action triggers (Vedmak)
- [ZBX-3758] made Zabbix daemons remove their PID file upon unsuccessful startup (asaveljevs)
- [ZBX-3791] fixed item form caption after cloning item (Vedmak)
- [ZBX-3689] fixed error when adding a new second-level IT Service (Alexei)
- [ZBX-3715] improve frontend message style & grammar (Richlv)
- [ZBX-3767] improve import status messages by avoiding concatenating individual words; thanks to zalex (Richlv)
- [ZBX-3704] added default condition trigger value = problem for new actions (Vedmak)
- [ZBX-3729] fixed server crash when failing to resolve interface-related macros in item keys (asaveljevs)
- [ZBX-2885] fixed 00:00-23:59 vs. 00:00-24:00 inconsistency for periods (dimir)
- [ZBX-3687] fixed link color for lld rules (Vedmak)
- [ZBX-3709] fixed agree checkbox in setup (Vedmak)
- [ZBX-3658] fixed the whole request to Java proxy failing if it contains an invalid key (asaveljevs)
- [ZBX-3657] fixed errors while updating proxy configuration data (Sasha)
- [ZBX-3656] fixed item filter by data type boolean (Vedmak)
- [ZBX-3620] fixed error when delete application used in webscenario (Vedmak)
--------------------------------------------------------------------------------
Changes for 1.9.3
New features:
- [ZBXNEXT-555] added remote monitoring of JMX counters through Java proxy (asaveljevs, Vedmak, Vlad)
- [ZBXNEXT-651] added "Boolean" data type for integer item value type (asaveljevs, Vedmak, Vlad)
- [ZBXNEXT-675] added new icons and a script to create sql file (Elvis, Richlv)
- [ZBX-1357] Updated Latvian and Russian translations; thanks to Zabbix translators (Richlv)
- [ZBXNEXT-696] Added support for {IPADDRESS}, {HOST.DNS} and {HOST.CONN} macros in trigger names (rudolfs)
- [ZBXNEXT-676] merged host profile and extended host profile (Sasha, Vedmak)
Bug fixes:
- [ZBX-3495] fixed interfaceid updated to null when linking a template (Vedmak)
- [ZBX-3623] fixed processing of nanoseconds for history data (Sasha)
- [ZBX-3634] improved zabbix map API methods (Aly)
- [ZBX-3579] fixed trigger popup menu in status of triggers (Vedmak)
--------------------------------------------------------------------------------
Changes for 1.9.2
New features:
- [ZBXNEXT-673] added support of users scripts on Zabbix Agent and IPMI-based remote commands (Sasha, Vedmak)
- [ZBXNEXT-631] added custom trigger severities configuration (Sasha, Vedmak)
- [ZBXNEXT-636] login screen redesign, frontend themes restyle (Aly, Elvis)
- [ZBXNEXT-635] introduced API wrapper for Zabbix frontend (Aly, Vedmak)
- [ZBXNEXT-575] added new design for action operation remote commands (Aly, Sasha, Vedmak)
- [ZBXNEXT-628] added advanced label settings for maps (Aly)
- [ZBXNEXT-626] added remembering of grid options for maps (KB)
- [ZBXNEXT-630] added automatic filling of DNS name for discovered and auto-registered devices (Sasha)
- [ZBXNEXT-634] added information about usage of media types for actions in the list of media types (Alexei)
- [ZBXNEXT-602] Export events to CSV (Aly, Vlad)
- [ZBXNEXT-623] restored support of SQLite3 for use with Zabbix Server and front-end (Alexei)
- [ZBX-1357] updated Dutch translation; thanks to qix (Richlv)
- [ZBX-1357] updated Latvian translation (Richlv)
- [ZBXNEXT-594] Add to Zabbix API support for search and filter by rules "ALL" or "ANY" (Vlad)
- [ZBXNEXT-592] confirmation dialog for scripts (Vedmak)
- [ZBX-3355] added character field length validation on inserts and updates (KB)
- [ZBX-3370] updated Russian translation; thanks to zalex_ua and dotneft (Richlv)
- [ZBX-3338] updated Ukrainian translation; thanks to zalex_ua (Richlv)
Bug fixes:
- [ZBX-3496] fixed error when creating new user (KB)
- [ZBX-3496] fixed saving templated items (Vedmak)
- [ZBX-3538] action condition 'Trigger description' renamed to 'Trigger name' (Alexei)
- [ZBX-976] fix and improve availability report dropdown captions (Richlv)
- [ZBX-3472] In item and discovery forms snmpv3 auth fields are now hidden if not needed (KB)
- [ZBX-3550] enforce authentication for API, if auth param is not empty (Vedmak)
- [ZBX-3500] added "change" link to "clock" element in screen configuration (KB)
- [ZBX-3500] fixed infinite loop when screen was added as an element of another screen (KB)
- [ZBX-3500] fixed database query algorithm when saving maintenance (KB)
- [ZBX-3497] fixed Undefined index after changing Type of information in items (Vlad)
- [ZBX-3477] fixed deletion of discovery rules without item prototypes (Vedmak)
- [ZBX-3328] data exported from 1.8.x now can be successfully imported into 2.0 (KB)
- [ZBX-3470] table user_groups is now updated only if necessary when user details are saved (KB)
- [ZBX-1819] fixed templates listed twice for graphs if host filter is set to all (Vedmak)
- [ZBX-3442] fixed GUI config "first selected" and "event ack" dropdowns (Vedmak)
- [ZBX-3329] fixed shown last value as "0" in frontend for items that have never been updated (Aly)
- [ZBX-3436] added missing "Primary POC Screen Name" to Inventory->Hosts (KB)
- [ZBX-3405] fixed value_type for response code and failed step items when creating webcheck (Vedmak)
- [ZBX-3363] fixed possible crash of server while processing of {HOST.CONN}, {IPADDRESS} and {HOST.DNS} macros (Sasha)
- [ZBX-3326] add X-Poedit-Basepath header to all locales (Richlv)
- [ZBX-3369] fixed API returning true in more Classes methods *.update and *.delete (Vlad)
- [ZBX-3368] fixed custom graphs in screens form prefixed with ':' (Vedmak)
- [ZBX-3329] fixed last value in latest data, status of triggers, and web monitoring (Vlad)
- [ZBX-3362] fixed inability to rename trigger (Vlad)
- [ZBX-1341] fixed password hashes returned over API (Vlad)
- [ZBX-3367] fixed PHP Fatal error when trying to create screen (Vlad)
- [ZBX-3354] fixed history clearing (Vlad)
- [ZBX-3360] fixed simple graph adding to a screen (Vlad)
- [ZBX-3189] fixed broken trigger dependencies (Vlad)
- [ZBX-3326] sort po file contents and entries in POTFILES.in, include fuzzy entries in mo files (Richlv)
- [ZBX-3054] fixed Cannot create or update Action with remote command; fix "reset() expects parameter 1 to be array, null given in /actionconf.php:754" (Vlad)
--------------------------------------------------------------------------------
Changes for 1.9.1
New features:
- [ZBXNEXT-587] added support of multiple host interfaces (Aly, Sasha, Vedmak)
- [ZBXNEXT-564] added new {IPADDRESS} and {HOST.PORT} macros in auto registration notifications (Sasha)
- [ZBXNEXT-556] zabbix frontend translations are now handled by PHP gettext module (KB)
- [ZBXNEXT-558] added support of monitoring auto-registered hosts with passive checks (Sasha)
- [ZBXNEXT-512] redesign of unknown events (Aly, asaveljevs, Sasha)
Bug fixes:
- [ZBX-3241] fixed incorrectly shortened popup texts (Vlad)
- [ZBX-2647] Made some of hard coded strings translatable (KB)
- [ZBX-3300] fixed valuemapid not removed from items table when valuemap deleted (Vedmak)
- [ZBXNEXT-588] improved template, host, proxy form view, dashboard screen (Aly, Vedmak)
- [ZBX-3149] allow to translate more strings in screen element 'Server info'; add support for translator comments (Richlv)
- [ZBX-3248] fixed empty and duplicate map URL name handling (KB)
- [ZBX-3190] fixed sql errors when processing proxy configuration (asaveljevs, Sasha)
- [DEV-471] fixed sql scripts names consistency (Sasha)
- [ZBXNEXT-538] include ibm_db2 upgrade patches in distribution package (Sasha)