File: Changes

package info (click to toggle)
libtest-output-perl 1.036-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: perl: 461; makefile: 2
file content (129 lines) | stat: -rw-r--r-- 4,413 bytes parent folder | download
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
Revision history for Perl module Test::Output

1.036 2025-04-14T19:24:32Z
	* require a newer version.pm for v5.10.1 tests

1.035 2025-01-03T06:45:21Z
	* distro refresh and move to BRIANDFOY

1.034 2023-07-05T14:46:18Z
	* Remove unnecessary -T from pod tests. Now that v5.38 allows you
	to compile without taint support and those perls won't run if
	they see a -T, these tests needlessly fail there.
	* Edward Betts corrected some of the docs.

1.033 2021-02-11T00:21:54Z
	* v1.032 had some regressions because I released 1.031 from an
	unmerged branch. https://github.com/briandfoy/test-output/issues/8
	This was noticed by Tina Müller in https://github.com/os-autoinst/os-autoinst/pull/1622
	* I didn't realize that I'd released an experiment in 2017, but
	no own complained until it was reverted (by releasing from master).
	The experiment worked I guess? Sub::Exporter is gone, so the
	dependency tree for this is greatly reduced, and now it's gone
	again.

1.032 2021-01-28T22:15:07Z
	* Fix cut-n-paste error in docs (Github #6, hexcoder)

1.031 2017-03-29T21:30:57Z
	* Get rid of Sub::Exporter. That module has nice features that this
	module doesn't use and the prereq is causing problems with CPAN
	Testers. CPAN Grep didn't show anyone using advanced features for
	exports.

1.03 - 2014-01-03
	* Get rid of MYMETA

1.02 - 2013-07-08
	* Bump to stable release

1.01_02 - 2012-07-19
	* Remove the ::Tie stuff. It should be fully Capture::Tiny
	now.

1.01_01 - 2012-05-14
	* David Golden re-did everything with Capture::Tiny
	to get around the odd output paths that we couldn't
	handle with a tie.

1.01 - 2011-04-22
	* Bump to a full release. This fixes the tests that failed
	in the new 5.14 regex stringification

0.16_03 - 2010-10-25
	* Fix cat-o with handling $,

0.16_02 - 2010-10-19
	* Update tests with hardcoded regex stringification for
	Perl's new (?^:) stuff

0.16_01 - 2009-06-09
	* Added META_MERGE features from chorny

0.13 - 2009-03-08
	* brian d foy (bdfoy@cpan.org) is the new maintainer
	* Updated docs for source code location, license, etc

0.12 - 2008-10-25
	* Repacking to remove OS X extended attribute files that were causing tests to fail.

0.11    2008-21-10
	* Fixes for STDERR handling under Perl 5.6. Thanks to
	brian d foy for the patch with tests.

0.10    2005-18-07
	* Migrated from Exporter to Sub::Exporter

0.09    2005-09-11
	* New version of Test::Tester added a depth test which was causing
          tests to fail. Thanks to neildp for the patch.
	* Fixed warning messages during perl Makefile.PL caused by Test::Tester
          not being loaded first.

0.08    2005-19-07
	* Suppressed most warnings caused by newer versions of Test::Tester

0.07    2005-26-03
	* Added methods: combined_is, combined_isnt, combined_like and
          combined_unlike. This combine STDOUT and STDERR into one
          filehandle and capture their output for testing.

0.06    2005-07-03
	* Applied patch from David Wheeler to support code blocks within
          tests as well as coderefs.

0.05    2005-04-03
	* Added chromatic's patch fixing diag messages printing even when
          tests pass.
	* Updated stdout_unlike.t to test for success.
	* Updated all tests for successful tests to include diag => ''.

0.04    2005-02-03
	* Added methods: output_like, output_unlike
	* Moved output_from stdout_from and stderr_from out of @EXPORT
          and into @EXPORT_OK.
	* Reworked diag messages for output_is and output_isnt to only show
          the output that doesn't match.
	* replaced "comment" with "description"
	* More tests
	* Much refactoring

0.03    2005-16-02
	* Reworked entire POD. Thanks to rjbs for his suggestions.
	* Additional POD fixes (date to data thanks to everyone who caught
          that).
	* New methods: stderr_like, stderr_unlike, stdout_like, stdout_unlike
	* Updated README from the default one created by Module::Starter.
	* Moved private methods _err,_out, and _errandout to stderr_from
          stdout_from and output_from respectively. Allowing access from
          the test file. Thanks to rjbs for this suggestion.

0.02    2005-12-02
	* New methods: output_isnt, stderr_inst, stdout_isnt
	* Removed requirement for Filehandle
	* Removed errant leftover Test::Builder::Tester::Color from tests
	* Migrated all tests to Test::Tester (Test::Tester now a prereq)

0.01    2005-12-02
	* First version, released on an unsuspecting world.