-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathNEWS
1062 lines (785 loc) · 29.1 KB
/
NEWS
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
# -*- rd -*-
= NEWS --- The history of Cutter
== [release-1-2-8] 1.2.8: 2020-10-07
=== All
==== Improvements
* Suppress some warnings with the latest GLib.
* [deb][ubuntu] Dropped support for Ubuntu 19.04.
* [deb][ubuntu] Added support for Ubuntu 20.04.
* [deb][debian] Added cutter-apt-source package to register APT
repository.
=== GCutter
==== Improvements
* Added (({gcut_take_bytes()})).
* (({gcut_object_inspect()})): Ignored (({GdkPixbuf}))'s
(({pixels})) and (({pixel-bytes})) properties because they are
meaningless.
== [release-1-2-7] 1.2.7: 2019-09-13
=== Cutter
==== Improvements
* [deb][ubuntu] Dropped support for Ubuntu 14.04/17.04/17.10/18.10.
* [gstreamer] Restricted GStreamer 1.14 or later as non supported version explicitly.
* [deb][ubuntu] Added support for Ubuntu 18.04/19.04
* [homebrew] Added support for custom Homebrew path. In the previous versions,
/usr/local/share/aclocal was expected as Homebrew's aclocal path.
* [travis] Added macOS as CI target.
* [doc][tutorial] Added a description about OS that need DYLD_LIBRARY_PATH
[GitHub#41] [Patch by Douglas Lovell]
* [doc][tutorial] Updated an explanation about loading shared library.
=== cppcutter
==== Fixes
* Fixed returning invalid address because of wrong c_str() usage in Message class.
[GitHub#39][Reported by dcb314]
=== Thanks
* dcb314
* Douglas Lovell
== [release-1-2-6] 1.2.6: 2017-09-26
=== Cutter
==== Improvements
* [deb] Supported Debian stretch. Debian wheezy supported was
dropped.
* Supported LCOV 1.12 and 1.13.
* Added missing GPLv3 text. [Reported by tSU_RooT]
* [deb][ubuntu] Supported Ubuntu 16.04 and 17.04. Ubuntu 12.04
(precise) and 15.04 (vivid) support was dropped.
* [travis] Fixed to use https in setup.sh for APT.
* [travis] Supported to use CODE_NAME environment variable for
installing cutter package on Debian sid. Use "env
CODE_NAME=unstable setup.sh" on Debian sid.
* Changed to use recommended Unicode characters in translatable
strings since GLib 2.52.0.
* Dropped CentOS 5 support.
==== Fixes
* [doc] Fixed broken sourceforge.net APT-line. [GitHub#25] [Patch by
Hiroshi Ohkubo]
* [doc] Fixed man document build error on non-UTF-8
environment. [GitHub#30] [Reported by Hideki Yamane]
=== CppCutter
==== Fixes
* [GitHub#23] Fixed a bug that inline instance method in destructor
causes invalid UTF-8 assertion warning message.
=== cut-diff
==== Improvements
* Invert deleted and inserted colors. Now red means inserted
segment, green means deleted segment.
=== Thanks
* tSU_RooT
* Hiroshi Ohkubo
* Hideki Yamane
== [release-1-2-5] 1.2.5: 2015-07-29
In this release, there is a bugfix about GCutter.
Please upgrade Cutter if you use Cutter with GLib support.
=== Cutter
==== Improvements
* [deb][ubuntu] Changed to release packages via Launchpad PPA. [GitHub #13]
* Supported LCOV 1.11.
* [doc][ubuntu] Updated install document how to install via Launchpad PPA.
* [doc][tutorial] Added mising slash in LD_LIBRARY_PATH. [GitHub #14]
[Patch by Masafumi Yokoyama]
* [doc] Added Project Hatohol which is operational integrated management software
as a Cutter user. [GitHub #15] [Patch by Noriki Nakamura]
* [doc] Added missing --location option in travis recipe. [GitHub#13] [Reported by Kiyoshi Ikehara]
* [OS X] Supported terminal-notifier notification. [GitHub #17] [Patch by Hiroshi Hatake]
* Supported gdk-pixbuf 2.31.0 or later. The result of inspect is a bit changed because
gdk-pixbuf 2.31.0 introduces pixel-bytes property. [GitHub #19] [Reported by mtasaka]
* Ported Cutter gstreamer plugin for GStreamer 1.0.
* [deb][ubuntu] Dropped Ubuntu 13.10. (Saucy Salamander)
* [deb][ubuntu] Supported Ubuntu 15.04. (Vivid Vervet)
* [rpm][centos] Supported CentOS 7.
=== GCutter
==== Fixes
* Fixed a bug that monitoring source is unexpectedly removed twice.
As a result, there was a possibility that reissued source ID is also removed.
=== Thanks
* Masafumi Yokoyama
* Noriki Nakamura
* Kiyoshi Ikehara
* Hiroshi Hatake
* mtasaka
== [release-1-2-4] 1.2.4: 2014-05-29
In this release, there are some bugfixes since Cutter 1.2.3 released.
=== Cutter
==== Improvements
* Supported Ubuntu 14.04 (Trusty Tahr).
==== Changes
* Dropped Ubuntu 12.10 (Quantal Quetzal) support.
==== Fixes
* Added -fexceptions to use C code with C++ exceptions. [Reported by OBATA Akio]
* Fixed a problem that bash isn't found when executing make check on FreeBSD.
* Fixed a crash bug because of double free allocated memory. [GitHub #12] [Reported by Kazuhiro Yamato]
=== Thanks
* OBATA Akio
* Kazuhiro Yamato
== [release-1-2-3] 1.2.3: 2014-02-09
As long time has passed since Cutter 1.2.2 release,
there are some improvements and fixed bugs.
After Cutter 1.2.2 release, you can install Cutter from
Fedora's official yum repository. No need to register Cutter yum repository on Fedora anymore.
=== Cutter
==== Improvements
* [doc] Removed a needless period from installation link.
[GitHub #6] [Patch by Masafumi Yokoyama]
* Supported lcov 1.10. [cutter-users-ja:92] [Reported by Siganai SE]
* [doc] Updated download URL on SF.net. [cutter-users-ja:91] [Reported by Siganai SE]
* [doc] Updated XML report format. [cutter-users-ja:91] [Reported by Siganai SE]
* Added more trace logs for loader. It helps you to investigate the case when no tests are loaded.
* [doc] Updated Cygwin's setup.exe URL.
* Added --log-level option. The value of default log level is "critical|error|warning|message".
==== Fixes
* [loader] Fixed a bug that ELF loader can't collect symbol because of wrong comparison.
* Fixed memory leaks on loading all modules.
* Fixed a warning from GCC 4.8.1 on Ubuntu 13.10
[GitHub #9] [Reported by Kazuhiro Yamato]
=== CppCutter
==== Improvements
* Supported cppcut_assert_equal(const type_info &, const type_info &)
[GitHub #4] [Patch by Kazuhiro Yamato]
* Supported to catch unhandled C++ exception in test case.
This change avoids to crash when unexpected exception is thrown.
[GitHub #8] [Suggested by Kazuhiro Yamato] [Patch by Kazuhiro Yamato]
* Supported to call destructors of objects on a stack even when an assertion is failed.
[GitHub #10] [Patch by Kazuhiro Yamato]
==== Fixes
* [Clang] Fixed a compile error which is caused by missing std::type_info forward declaration.
* Fixed an invalid memory access when an exception is thrown in cutter's
assertion function.
[GitHub #11] [Patch by Kazuhiro Yamato]
=== GCutter
==== Fixes
* [doc] Fixed a signal name typo about gcut-egg example.
=== Thanks
* Kazuhiro Yamato
* Masafumi Yokoyama
* Siganai SE
== [release-1-2-2] 1.2.2: 2012-10-29
We began to support Ubuntu 12.10 (Quantal Quetzal).
There are some improvements and fixed bugs.
=== Cutter
==== Improvements
* [doc] Added release procedure documentation.
* [doc] Improved documentation about Travis-CI configuraion.
* Supported Ubuntu 12.10 (Quantal Quetzal).
==== Fixes
* [sample][GTK+] Fixed missing GLIB_LIBS that has flags for GModule.
[Reported by Hiroshi Umemoto]
=== CppCutter
==== Fixes
* Fixed a bug that wrong data function is searched.
=== GCutter
==== Fixes
* [sample] Fixed missing function call in sample code.
=== Thanks
* Hiroshi Umemoto
== [release-1-2-1] 1.2.1: 2012-08-15
We began to support Ubuntu Precise/Fedora 17.
There are some UI related improvements and fixed bugs.
=== Cutter
==== Improvements
* [UI][GTK+] Supported GTK+ < 2.22 for Debian GNU/Linux squeeze.
* [UI][console] Supported growlnotify.exe for windows.
* [UI][GTK+] Added menubar.
* [UI][GTK+] Improved to log an error message for showing URI.
* [UI][GTK+] Supported --with-fallback-browser option to customize
fallback browser.
* Improved to use "()" as a part of function about backtrace.
* [UI][console] Added more color acceptable TERMs
(xterm-256color, screen-256color, screen-color)
* Added Travis CI integration.
* Supported backtrace on SIGBUS [Patch by Kiwamu Okabe]
* Added Homebrew related paths by default on Mac OS X.
==== Changes
* [doc][Mac OS X] Recommended to use the official MacPorts repository.
[Suggested by Hiroshi Umemoto]
* Supported Fedora 17.
* Dropped Fedora 16 support.
* Supported Ubuntu Precise.
==== Fixes
* [Clang] Fixed not to add extra "()" for function name of backtrace.
* Fixed compilation failure on MinGW.
=== CppCutter
==== Improvements
* Supported nested namespace test case built by g++
=== Thanks
* Hiroshi Umemoto
* Kiwamu Okabe
== [release-1-2-0] 1.2.0: 2011-12-31
We improved C++ support and test runner interface.
=== Cutter
==== Improvements
* [UI][console] Changed to show messages on failure, error
and so on immediately. You need to use
(({--show-detail-immediately=no})) command line option
to show messages on end of test like earlier versions.
* [UI][GTK+] Supported iterated test.
* [UI][GTK+] Supported re-run test.
* [UI][GTK+] Unified cancel button and re-run button.
==== Changes
* Enabled deprecated GLib API. You need to use
(({--disable-deprecated-glib-api})) configure option to
disable deprecated GLib API.
* Supported Fedora 16.
* Dropped Fedora 15 support.
=== CppCutter
==== Improvements
* Added more supported types by ((<cppcut_assert_equal()>)).
* Added ((<cppcut_assert_not_equal()>)).
* Added ((<cppcut_assert_null()>)).
* Added ((<cppcut_assert_not_null()>)).
* Added ((<cppcut_assert_operator()>)).
== [release-1-1-9] 1.1.9: 2011-10-22
We move the repository to GitHub from SF.net.
=== Cutter
==== Changes
* Added Ubuntu Oneiric Ocelot support.
* Added CentOS 6 support.
==== Fixes
* Fixed as success test count with thread. [SF.net #3383253]
[Reported by Romain Tartière]
=== Thanks
* Romain Tartière
== [release-1-1-8] 1.1.8: 2011-07-31
=== Cutter
==== Improvements
* Supported notify-send availability detection.
* Added --mode=play option that plays test result from
test log.
* Updated documents for Solaris 10.
* Supported assertion failures in other thread. Bug #3341429
[Reported by Romain Tartière]
* Fixed a problem that GTK+ test runner doesn't show test
result quickly.
[Patch by Tobias Gruetzmacher]
==== Changes
* Added Debian GNU/Linux wheezy support.
* Removed Ubuntu Maverick Meerkat support.
* Added Ubuntu Natty Narwhal support.
* Removed Fedora 14 support.
* Added Fedora 15 support.
=== cut-diff
==== Improvements
* Made --label option optional.
=== Thanks
* Romain Tartière
* Tobias Gruetzmacher
== [release-1-1-7] 1.1.7: 2011-02-13
=== Cutter
==== Improvements
* Supported growlnotify.
==== Changes
* Droped Debian GNU/Linux lenny support.
==== Fixes
* Fixed using unknown symbol on CentOS 5.5.
[Reported by Hiroaki Nakamura]
=== Document
==== Fixes
* Fixed typos in tutorial.
[Reported by Hiroaki Nakamura]
=== Thanks
* Hiroaki Nakamura
== [release-1-1-6] 1.1.6: 2011-02-09
=== Cutter
==== Improvments
* Renamed an utility:
* ((<cut_build_fixture_data_path()>)) -> ((<cut_build_fixture_path()>))
* Added utitlities:
* ((<gcut_take_string()>))
* ((<cut_get_fixture_data()>))
* ((<gcut_get_fixture_data()>))
* ((<GCutEventLoop>))
* ((<GCutGLibEventLoop>))
* Supported Debian GNU/Linux squeeze.
[Suggested by Romuald Conty]
* Supported Ubuntu Maverick Meerkat.
* Supported Fedora 14.
* cutter.m4: supported --config-cache.
* cutter.m4: supported custom Makefile for
--enable-coverage. (specify custome Makefile name to
AC_CHECK_COVERAGE() argument)
* Supported notify-send.
==== Fixes
* Fixed a wrong test.
[Suggested by Ilya Barygin]
=== cut-diff
==== Improvements
* Added ((<--label option|cut-diff#--label>)) that specify
labels in header.
=== Thanks
* Romuald Conty
* Ilya Barygin
== [release-1-1-5] 1.1.5: 2010-09-06
=== Cutter
==== Improvements
* Renamed assertions:
* ((<cut_assert_path_exist()>)) -> ((<cut_assert_exist_path()>))
* ((<cut_assert_path_not_exist()>)) -> ((<cut_assert_not_exist_path()>))
* Added an assertion:
* ((<gcut_assert_equal_string()>))
* Renamed an utility:
* ((<GCutEgg|GCutEgg.html>)) -> ((<GCutProcess|GCutProcess.html>))
* Added utilities:
* ((<cut_get_source_directory()>))
* ((<cut_build_path_array()>))
* ((<gcut_data_has_field()>))
* ((<gcut_list_int_new()>))
* ((<gcut_list_uint_new()>))
* ((<gcut_take_new_list_int()>))
* ((<gcut_take_new_list_uint()>))
* Supported Ubuntu Lucid Lynx.
* Supported configure result report on configure finish.
[Suggested by Romain Tartière]
* Supported libgoffice-0.8. (libgoffice-0.6 support was dropped.)
[Suggested by Romain Tartière]
* Supported lcov 1.9. #3056684
[Patch by Romain Tartière]
* Supported full-width spaces in test description.
* Supported sub-cutter command in PATH.
[Patch by Romain Tartière]
==== Fixes
* Fixed locale depended tests.
[Suggested by Romain Tartière]
=== cut-diff
==== Improvements
* Added ((<--context-lines
option|cut-diff#--context-lines>)) that specifies how
many lines are shown around diff.
=== Documentation
==== Improvements
* Used ports on FreeBSD.
[Suggested by Romain Tartière]
=== Thanks
* Romain Tartière
== [release-1-1-4] 1.1.4: 2010-06-10
Supported CentOS.
=== Cutter
==== Improvements
* Added assertions:
* ((<cut_assert_equal_file_raw()>))
* ((<cut_assert_not_equal_file_raw()>))
* ((<gcut_assert_not_equal_int64()>))
* ((<gcut_assert_not_equal_uint64()>))
* Added utilities:
* ((<cut_get_test_directory()>))
* Changed to use tabs in diff if they are needed.
* Supported CentOS.
==== Fixes
* Fixed a bug that assertion message is ignored.
=== Document
==== Fixes
* Debian, Ubuntu: Fixed file paths. [Reported by Romuald Conty]
=== Thanks
* Romuald Conty
== [release-1-1-3] 1.1.3: 2010-04-13
Improved test driven test support.
=== Cutter
==== Improvements
* AC_CHECK_ENABLE_COVERAGE: Added a new 'coverage-force'
target that reports coverage even if 'make check' is
failed.
==== Bug fixes
* Removed unneeded memory free [Reported by Zed Shaw]
* AC_CHECK_ENABLE_COVERAGE: Fixed a bug that 8 spaces
instead of a TAB is printed into Makefile.
=== GCutter
==== Improvements
* Improved data driven test support:
* ((<gcut_data_get_size()>))
* ((<gcut_data_get_char()>))
* ((<gcut_data_get_boolean()>))
* ((<gcut_data_get_double()>))
* ((<gcut_data_get_int64()>))
* ((<gcut_data_get_uint64()>))
* Added utilities:
* ((<gcut_inspect_size()>))
* ((<gcut_inspect_char()>))
* ((<gcut_inspect_boolean()>))
* ((<gcut_inspect_double()>))
* ((<gcut_inspect_int64()>))
* ((<gcut_inspect_uint64()>))
==== Bug fixes
* Fixed a bug that gcut_list_inspect_enum() and
gcut_list_inspect_flags() is crashed on Mac OS X.
=== Document
==== Bug fixes
* Fixed dependency package list for Cygwin 1.7.
=== Thanks
* Zed Shaw
== [release-1-1-2] 1.1.2: 2010-04-03
Improves Windows support.
=== Cutter
==== Improvements
* Supported lcov 1.8
* Supported --enable-coverage=SOMETHING style.
[Reported by gunyara-kun]
* #2976775: Supported cut_omit() in cut_setup()
[Reported by Romain Tartière]
* Supported building and testing with Visual Studio C++ 2008
=== CppCutter
==== Improvements
* Added ((<CUT_EXPORT>)) that is a macro to mark test function on Windows
=== Document
==== Improvements
* Supported Ubuntu Karmic Koara.
=== Thanks
* Romain Tartière
* gunyara-kun
== [release-1-1-1] 1.1.1: 2010-03-11
Bug in 1.1.0 fixes and improvements of GObject and sockaddr support.
=== Cutter
==== Improvements
* Supported DLL generated by Visual C++.
* Added an assertion:
* ((<cut_assert_equal_sockaddr()>))
* Added test utilities:
* ((<cut_equal_sockaddr()>))
* ((<cut_inspect_sockaddr()>))
* ((<cut_make_directory()>))
==== Fixes
* Fixed a build problem on having stdint.h but not having inttypes.h.
=== GCutter
==== Improvements
* Improved data driven test support:
* ((<gcut_data_get_object()>))
* Added utilities:
* ((<gcut_list_new()>))
* ((<gcut_take_new_list_object()>))
* ((<gcut_list_object_free()>))
== [release-1-1-0] 1.1.0: 2009-11-03
NOTE: This release includes API incompatibility.
=== Cutter
==== Improvements
* Add assertions for types defined in stdint.h [Yuto Hayamizu]
* ((*API CHANGE*)): Re-enable optional assertion message
Before:
cut_assert_equal_string("a", "b", "message");
After:
cut_assert_equal_string("a", "b", cut_message("message"));
* Add ((<cut_message()>))
* Make ((<cut_set_message()>)) obsolete
* Make ((<cut_set_message_va_list()>)) obsolete
* Make ((<cut_keep_message()>)) obsolete
=== CppCutter
==== Improvements
* Add supported types by
((<cppcut_assert_equal()>))
* Support test definition detection in namespace
* Make ((<CPPCUT_BEGIN_TEST_DECLS>)) obsolete
* Make ((<CPPCUT_END_TEST_DECLS>)) obsolete
* Support optional assertion message
* Add ((<cppcut_message()>))
=== Thanks
* Yuto Hayamizu
== [release-1-0-9] 1.0.9: 2009-10-20
=== Improvements
* Add a function to ((<Assertion Utilities for GHashTable|cutter-Assertion-Utilities-for-GHashTable.html>)):
* ((<gcut_hash_table_inspect_sorted()>))
* Inspect hash table after sorted by key
* Support colorized diff: ((<colorized-diff.png>))
* Add --stop-before-test option that sets breakpoint
before each test [Suggested by Yoshinori K. Okuji]
* Add ((<cut-diff>)) command
* Support unified diff
* Support C++: ((<CppCutter|cutter-CppCutter.html>))
=== Bug fixes
* Fix locale dependent bugs [Reported by Yoshinori K. Okuji]
=== Thanks
* Yoshinori K. Okuji
== [release-1-0-8] 1.0.8: 2009-08-29
* Support libsoup:
* HTTP client:
* ((<soupcut_client_new()>))
* ((<soupcut_client_set_base()>))
* ((<soupcut_client_send_message()>))
* ((<soupcut_client_get()>))
* ((<soupcut_client_get_n_messages()>))
* ((<soupcut_client_get_latest_message()>))
* ((<soupcut_client_get_async_context()>))
* HTTP server:
* ((<soupcut_server_take()>))
* ((<soupcut_server_take_new()>))
* ((<soupcut_server_build_uri()>))
* Assertions:
* ((<soupcut_message_assert_equal_content_type()>))
* ((<soupcut_client_assert_equal_content_type()>))
* ((<soupcut_client_assert_response()>))
* ((<soupcut_client_assert_equal_body()>))
* ((<soupcut_client_assert_match_body()>))
* Add an function to ((<Assertion Utilities for GHashTable|cutter-gcut-hash-table.html>)):
* ((<gcut_hash_table_string_string_copy()>))
* Add mroonga to ((<project list that use Cutter|users.html>))
* Support rpm package for Fedora
* Support deb package for Debian
* Support deb package for Ubuntu
* Support lcov 1.7
* Document:
* Add ((<install document for Ubuntu|install-to-ubuntu.html>))
* Add ((<install document for FreeBSD|install-to-freebsd.html>))
* Add ((<install document for Mac OS X|install-to-mac-os-x.html>))
* Add ((<install document for Solaris|install-to-solaris.html>))
== 1.0.7: 2009-05-20
* Provide ((<Version Information|cutter-cut-version.html>))
* Support ((<GBoxed type test data|gcut_data_get_boxed()>))
* Display test name on crash (if available)
* Add shared library parser
* Support ELF (Linux/*BSD), PE (Windows), Mach-O (Mac OS X)
* Don't use BFD by default
* Use ImageHlp instead of BFD on Windows
* Document:
* Add ((<cutter command's man|cutter.html>))
* Add ((<install document for Debian|install-to-debian.html>))
* Add ((<install document for Cygwin|install-to-cygwin.html>))
* Add Cygwin related notes to ((<tutorial|tutorial.html>))
[Yamakawa Hiroshi]
* Add test utilities:
* ((<cut_build_path()>))
* Add assertions:
* ((<cut_assert_equal_boolean()>))
* ((<cut_assert_not_equal_boolean()>))
* ((<cut_assert_equal_substring()>))
* ((<cut_assert_not_equal_substring()>))
* ((<cut_assert_not_equal_double()>)) [gunyara-kun]
* ((<cut_assert_not_equal_int()>)) [gunyara-kun]
* ((<cut_assert_not_equal_uint()>)) [gunyara-kun]
* ((<cut_assert_not_equal_memory()>)) [gunyara-kun]
* ((<cut_assert_not_equal_size()>)) [gunyara-kun]
* ((<cut_assert_not_equal_string()>)) [gunyara-kun]
* ((<gcut_assert_not_equal_pid()>)) [gunyara-kun]
* Compatibility:
* Make fixture functions without "cut_" prefix deprecated. [gunyara-kun]
* ((<setup()>)) -> ((<cut_setup()>))
* ((<teardown()>)) -> ((<cut_teardown()>))
* ((<startup()>)) -> ((<cut_startup()>))
* ((<shutdown()>)) -> ((<cut_shutdown()>))
* Bug fixes:
* Fix a typo in tutorial: [UNNO Hideyuki]
* Fix file descriptor redirection: [UNNO Hideyuki]
* Add --disable-signal-handling option
== 1.0.6: 2009-03-01
* Add ((<project list that use Cutter|users.html>))
* Add ((<convenience API for using external command|GCutEgg.html>))
* Improve backtrace detection:
* ((<CUT_RELATIVE_PATH>))
* Improve user message related API for assertions:
* Obsolete optional message
* for supporting non-GCC compilers
* Add APIs to set user message independently of assertions:
* ((<cut_set_message()>))
* ((<cut_set_message_va_list()>))
* Add API to use the same message with assertions:
* ((<cut_keep_message()>))
* Improve data driven test support:
* ((<Convenience test data API|cutter-Convenience-test-data-API.html>))
* Add "cut_" prefix to fixture functions:
* ((<cut_setup()>))
* ((<cut_teardown()>))
* ((<cut_startup()>))
* ((<cut_shutdown()>))
* Add test utilities:
* ((<Object inspection functions|cutter-Object-inspection-functions.html>))
* ((<cut_push_backtrace()>))
* ((<cut_pop_backtrace()>))
* ((<cut_take_replace()>))
* ((<gcut_enum_parse()>))
* ((<gcut_flags_get_all()>))
* ((<gcut_flags_parse()>))
* ((<gcut_list_equal_int()>))
* ((<gcut_list_equal_uint()>))
* ((<gcut_list_equal_string()>))
* ((<gcut_list_inspect_enum()>))
* ((<gcut_list_inspect_flags()>))
* ((<gcut_list_inspect_int()>))
* ((<gcut_list_inspect_object()>))
* ((<gcut_list_inspect_string()>))
* ((<gcut_list_inspect_uint()>))
* ((<gcut_list_string_new_array()>))
* ((<gcut_take_new_list_string_array()>))
* Add assertions:
* ((<cut_assert_equal_size()>))
* ((<cut_return()>))
* ((<gcut_assert_equal_list()>))
* ((<gcut_assert_equal_pid()>))
== 1.0.5: 2008-10-15
* Support max number of threads ran concurrently:
* Add --max-threads option
* For sub process:
* ((<cut_sub_process_get_max_threads()>))
* ((<cut_sub_process_set_max_threads()>))
* Support GdkPixbuf:
* Image comparison
* Image diff
* expected: ((<dark-circle.png>))
* actual: ((<nested-circle.png>))
* diff: ((<diff-dark-and-nested-circle.png>))
* Improve debug support:
* Add --keep-opening-modules option
* Keep opening modules for resolving symbols on debugging
* Show test result on SIGABORT like on SIGSEGV
* --name option support iterated test
* 'but was:' -> 'actual:'
* Add test utilities:
* ((<cut_take()>))
* ((<cut_take_memdup()>))
* ((<cut_take_memory()>))
* ((<cut_take_strdup()>))
* ((<cut_take_strndup()>))
* ((<gcut_take_new_hash_table_string_string()>))
* ((<gcut_take_new_list_string()>))
* ((<gcut_hash_table_string_string_new()>))
* ((<gcut_hash_table_string_string_new_va_list()>))
* Add assertions:
* ((<cut_assert_operator_double()>))
* ((<cut_assert_operator_uint()>))
* ((<gcut_assert_equal_enum()>))
* ((<gcut_assert_equal_error()>))
* ((<gcut_assert_equal_flags()>))
* ((<gcut_assert_equal_int64()>))
* ((<gcut_assert_equal_list_enum()>))
* ((<gcut_assert_equal_list_flags()>))
* ((<gcut_assert_equal_list_object()>))
* ((<gcut_assert_equal_list_object_custom()>))
* ((<gcut_assert_equal_object()>))
* ((<gcut_assert_equal_object_custom()>))
* Improve user defined assertion writing support:
* Support backtrace
* ((<cut_trace()>))
* ((<cut_trace_with_info_expression()>))
* ((<Writing assertion|writing-assertion.html>))
* ((<Assertion writing helper|cutter-Assertion-writing-helper.html>))
* ((<Assertion Utilities for GEnum and GFlags|cutter-Assertion-Utilities-for-GEnum-and-GFlags.html>))
* ((<Assertion Utilities for GError|cutter-Assertion-Utilities-for-GError.html>))
* ((<Assertion Utilities for GHashTable|cutter-Assertion-Utilities-for-GHashTable.html>))
* ((<Assertion Utilities for GList|cutter-Assertion-Utilities-for-GList.html>))
* ((<Assertion Utilities for GObject|cutter-Assertion-Utilities-for-GObject.html>))
* ((<Assertion Utilities for GValue|cutter-Assertion-Utilities-for-GValue.html>))
* ((<cut_equal_double()>))
* ((<cut_equal_string()>))
* Bug fixes:
* Fix memory leak (Daijiro MORI)
* Fix a bug that test result is ignored in setup()/teardown()
== 1.0.4: 2008-08-27
* Option:
* Add --stream-log-dir option that is for logging test
result history
* Add --fatal-failures option that test is aborted on
failure (for cooperation with debugger)
* Output:
* Support folded diff
* Output newline into long summary (".", "F", ...)
* Add ((<cut_set_attributes()>)) to set
attributes
* Support ((<test on multi-process|cutter-Multi-Process.html>))
* Support data driven test on multi-thread
* Add assertions:
* ((<gcut_assert_equal_hash_table_string_string()>))
* ((<gcut_assert_equal_time_val()>))
* Add utilities:
* ((<gcut_hash_table_string_string_new()>))
* ((<gcut_take_hash_table()>))
* Fix:
* Fix a build bug on no GOffice environment.
(Reported by Kazumasa Matsunaga)
* Experimental:
* Add --analyzer mode that cutter analyzes test result log.
== 1.0.3: 2008-07-15
* Support Data-Driven Testing:
* ((<cut_add_data()>))
* Add assertions:
* ((<gcut_assert_equal_list_uint()>))
* Rename assertions:
* Rename features that requires GLib support to
'gcut_XXX' from 'cut_XXX'. 'cut_XXX' can be still used
but they are deprecated. See ((<Assertions with GLib support
|cutter-Assertions-with-GLib-support.html>)) for more details.
* Add utilities:
* ((<cut_append_diff()>)):
appends diff to a string.
* ((<gcut_list_string_new()>))/((<gcut_list_string_free()>)):
helps creating a list of strings.
* ((<gcut_take_error()>)):
takes ownership of GError * to Cutter.
* ((<gcut_take_list()>)):
takes ownership of GList * to Cutter.
* ((<gcut_take_object()>)):
takes ownership of GObject * to Cutter.
== 1.0.2: 2008-06-27
* Support fixture data
* cut_set_fixture_data_dir()
* cut_get_fixture_data_string()
* cut_build_fixture_data_path()
* Add a utility
* cut_remove_path()
* Add assertions
* cut_assert_equal_fixture_data_string()
* cut_assert_path_not_exist()
* cut_assert_remove_path()
* cut_error_errno()
* Experimental:
* Windows support
== 1.0.1: 2008-06-13
* Improve AC_CHECK_COVERAGE
* Document:
* Fix: Require GLib >= 2.16
* Experimental:
* Support GStreamer:
* Transport test result to remote machine and so on
* Support warmup()/cooldown()
== 1.0.0: 2008-05-20
* Add assertions:
* cut_assert_equal_pointer()
* cut_assert_g_error()
* cut_assert_match()
* cut_assert_match_with_free()
* Add --exclude-file option that specifies excluded files
from test targets
* Add --exclude-dir option that specifies excluded directories
from test targets
* Add --without-cutter to cutter.m4 (configure option)
* Experimental:
* Implement Cutter protocol (CutXMLStreamer and CutStreamParser)
* Add cut_take_g_error()
* Support Mac OS X