Next | Query returned 99 messages, browsing 71 to 80 | Previous

History of commit frequency

CVS Commit History:


   2007-10-25 18:59:59 by Johnny C. Lam | Files touched by this commit (980)
Log message:
Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk
can handle packages having no PLIST files.
   2007-09-30 19:45:26 by Thomas Klausner | Files touched by this commit (25)
Log message:
Reset maintainer -- shell@ is inactive.
   2007-09-18 23:17:48 by Thomas Klausner | Files touched by this commit (3) | Package updated
Log message:
Update to 0.71:

0.71  Thu Sep 13 20:42:36 PDT 2007
    Bug fixes
    - Fixed a problem with BEGIN { use_ok } silently failing when there's no
      plan set.  [rt.cpan.org 28345]  Thanks Adriano Ferreira and Yitzchak.
    - Fixed an obscure problem with is_deeply() and overloading ==
      [rt.cpan.org 20768].  Thanks Sisyphus.

    Test fixes
    - Removed dependency on Text::Soundex [rt.cpan.org 25022]
    - Fixed a 5.5.x failure in fail-more.t
    * Got rid of the annoying sort_bug.t test that revealed problems with some
      threaded perls.  It was testing the deprecated eq_* functions and not worth the
      bother.  Now it tests is_deeply().  [rt.cpan.org 17791]

    Doc fixes
    - Minor POD mistake in Test::Builder [rt.cpan.org 28869]
    * Test::FAQ has been updated with some more answers.

    Install fixes
    - Fixed the "LICENSE is not a known MakeMaker parameter name" warning
      on older MakeMakers for real this time.
   2007-03-21 23:31:58 by Thomas Klausner | Files touched by this commit (2)
Log message:
Update to 0.70:

0.70  Thu Mar 15 15:53:05 PDT 2007
    Bug Fixes
    * The change to is_fh() in 0.68 broke the case where a reference to
      a tied filehandle is used for perl 5.6 and back.  This made the tests
      puke their guts out.
   2007-03-16 21:56:00 by Thomas Klausner | Files touched by this commit (3)
Log message:
Update to 0.69:

0.69  Wed Mar 14 06:43:35 PDT 2007
    Test fixes
    - Minor filename compatibility fix to t/fail-more.t [rt.cpan.org 25428]

0.68  Tue Mar 13 17:27:26 PDT 2007
    Bug fixes
    * If your code has a $SIG{__DIE__} handler in some cases functions like
      use_ok(), require_ok(), can_ok() and isa_ok() could trigger that
      handler. [rt.cpan.org 23509]
    - Minor improvement to TB's filehandle detection in the case of overridden
      isa(). [rt.cpan.org 20890]
    - Will now install as a core module in 5.6.2 which ships with Test::More.
      [rt.cpan.org 25163]

    New Features
    - Test::Builder->is_fh() provides a way to determine if a thing
      can be used as a filehandle.

    Documentation improvements
    - Improved the docs for $Test::Builder::Level showing the encouraged
      use (increment, don't set)
    - Documented the return value of Test::Builder's test methods
    - Split out TB's method documentation to differenciate between test
      methods (ok, is_eq...), methods useful in testing (skip, BAILOUT...)
      and methods useful for building your own tests (maybe_regex...).

    Test fixes
    - We required too old a version of Test::Pod::Coverage.  Need 1.08 and not
      1.00. [rt.cpan.org 25351]
   2007-02-18 02:55:15 by Thomas Klausner | Files touched by this commit (3)
Log message:
Update to 0.67:

0.67  Mon Jan 22 13:27:40 PST 2007
    Test fixes
    - t/pod_coverage.t would fail if Test::Pod::Coverage between 1.07 and
      1.00 were installed as it depended on all_modules being exported.
      [rt.cpan.org 24483]

0.66  Sun Dec  3 15:25:45 PST 2006
    - Restore 5.4.5 compatibility (unobe@cpan.org) [rt.cpan.org 20513]

0.65  Fri Nov 10 10:26:51 CST 2006

0.64_03  Sun Nov  5 13:09:55 EST 2006
    - Tests will no longer warn when run against an alpha version of
      Test::Harness [rt.cpan.org #20501]
    - Now testing our POD and POD coverage.
    - Added a LICENSE field.
    - Removed warning from the docs about mixing numbered and unnumbered
      tests.  There's nothing wrong with that. [rt.cpan.org 21358]
    - Change doc examples to talk about $got and $expected rather than
      $this and $that to correspond better to the diagnostic output
      [rt.cpan.org 2655]

0.64_02  Sat Sep  9 12:16:56 EDT 2006
    - Last release broke Perls earlier than 5.8.

0.64_01  Mon Sep  4 04:40:42 EDT 2006
    - Small improvement to the docs to avoid user confusion over
      "use Test::More tests => $num_tests" (Thanks Eric Wilhelm)
    - Minor fix for a test failure in is_deeply_fail for some Windows
      users.  Not a real bug.  [rt.cpan.org 21310]
    - _print_diag() accidentally leaked into the public documentation.
      It is a private method.
    * Added Test::Builder->carp() and croak()
    * Made most of the error messages report in the caller's context.
      [rt.cpan.org #20639]
    * Made the failure diagnostic message file and line reporting portion
      match Perl's for easier integration with Perl aware editors.
      (so its "at $file line $line_num." now)
      [rt.cpan.org #20639]
    * 5.8.0 threads are no longer supported.  There's too many bugs.
   2006-11-05 18:49:34 by Joerg Sonnenberger | Files touched by this commit (25)
Log message:
DESTDIR support.
   2006-10-21 09:38:42 by OBATA Akio | Files touched by this commit (3)
Log message:
Update p5-Test-Simple to 0.64.

0.64  Sun Jul 16 02:47:29 PDT 2006
    * 0.63's change to test_fail() broke backwards compatibility.  They
      have been removed for the time being.  test_pass() went with it.
      This is [rt.cpan.org 11317] and [rt.cpan.org 11319].
    - skip() will now warn if you get the args backwards.

0.63  Sun Jul  9 02:36:36 PDT 2006
    * Fixed can_ok() to gracefully handle no class name.
      Submitted by "Pete Krawczyk" <perl@bsod.net>
      Implemented by "Richard Foley" <richard.foley@rfi.net>
      [rt.cpan.org 15654]
    * Added test_pass() to Test::Builder::Tester rather than having to
      call test_out("ok 1 - foo"). <chromatic@wgz.org> \ 
[rt.cpan.org 11317]
    * test_fail() now accepts a test diagnostic rather than having to
      call test_out() separately. <chromatic@wgz.org> [rt.cpan.org 11319]
    - Changed Test::Builder::Tester docs to show best practice using
      test_fail() and test_pass().
    - isnt_num() doc example wrongly showed is_num(). <chromatic@wgz.org>
    - Fixed a minor typo in the BAIL_OUT() docs. <Jeff Deifik>
    - Removed the LICENSE field from the Makefile.PL as the release of
      MakeMaker with that feature has been delayed.
   2005-11-23 00:07:19 by Thomas Klausner | Files touched by this commit (1)
Log message:
Add CONFLICTS with p5-Test-Builder-Tester, which is now included.
   2005-11-22 22:55:55 by Thomas Klausner | Files touched by this commit (3)
Log message:
Update to 0.62:

0.62  Sat Oct  8 01:25:03 PDT 2005
    * Aborbed Test::Builder::Tester.  The last release broke it because its
      screen scraping Test::More and the failure output changed.  By
      distributing them together we ensure TBT won't break again.
    * Test::Builder->BAILOUT() was missing.
    - is_deeply() can now handle function and code refs in a very limited
      way.  It simply looks to see if they have the same referent.
      [rt.cpan.org 14746]

0.61  Fri Sep 23 23:26:05 PDT 2005
    - create.t was trying to read from a file before it had been closed
      (and thus the changes may not have yet been written).
    * is_deeply() would call stringification methods on non-object strings
      which happened to be the name of a string overloaded class.
      [rt.cpan.org 14675]

0.60_02  Tue Aug  9 00:27:41 PDT 2005
    * Added Test::Builder::Module.
    - Changed Test::More and Test::Simple to use Test::Builder::Module
    - Minor Win32 testing nit in fail-more.t
    * Added no_diag() method to Test::Builder and changed Test::More's
      no_diag internals to use that. [rt.cpan.org 8655]
    * Deprecated no_diag() as an option to "use Test::More".  Call the
      Test::Builder method instead.

0.60_01  Sun Jul  3 18:11:58 PDT 2005
    - Moved the docs around a little to better group all the testing
      functions together. [rt.cpan.org 8388]
    * Added a BAIL_OUT() function to Test::More [rt.cpan.org 8381]
    - Changed Test::Builder->BAILOUT to BAIL_OUT to match other method's
      naming conventions.  BAILOUT remains but is deprecated.
    * Changed the standard failure diagnostics to include the test name.
      [rt.cpan.org 12490]
    - is_deeply() was broken for overloaded objects in the top level in
      0.59_01.  [rt.cpan.org 13506]
    - String overloaded objects without an 'eq' or '==' method are now
      handled in cmp_ok() and is().
    - cmp_ok() will now treat overloaded objects as numbers if the comparison
      operator is numeric. [rt.cpan.org 13156]
    - cmp_ok(), like() and unlike will now throw uninit warnings if their
      arguments are undefined. [rt.cpan.org 13155]
    - cmp_ok() will now throw warnings as if the comparison were run
      normally, for example cmp_ok(2, '==', 'foo') will warn about 'foo'
      not being numeric.  Previously all warnings in the comparison were
      supressed. [rt.cpan.org 13155]
    - Tests will now report *both* the number of tests failed and if the
      wrong number of tests were run.  Previously if tests failed and the
      wrong number were run it would only report the latter.
      [rt.cpan.org 13494]
    - Missing or extra tests are not considered failures for the purposes
      of calculating the exit code.  Should there be no failures but the
      wrong number of tests the exit code will be 254.
    - Avoiding an unbalanced sort in eq_set() [bugs.perl.org 36354]
    - Documenting that eq_set() doesn't deal well with refs.
    - Clarified how is_deeply() compares a bit.
    * Once again working on 5.4.5.

0.60  Tue May  3 14:20:34 PDT 2005

0.59_01  Tue Apr 26 21:51:12 PDT 2005
    * Test::Builder now has a create() method which allows you to create
      a brand spanking new Test::Builder object.
    * require_ok() was not working for single letter module names.
    * is_deeply() and eq_* now work with circular scalar references
      (Thanks Fergal)
    * Use of eq_* now officially discouraged.
    - Removed eq_* from the SYNOPSIS.
    - is_deeply(undef, $not_undef); now works. [rt.cpan.org 9441]
    - is_deeply() was mistakenly interpeting the same reference used twice
      in a data structure as being circular causing failures.
      [rt.cpan.org 11623]
    - Loading Test::Builder but not using it would interfere with the
      exit code if the code exited. [rt.cpan.org 12310]
    - is_deeply() diagnostics now disambiguate between stringified references
      and references. [rt.cpan.org 8865]
    - Files opened by the output methods are now autoflushed.
    - todo() now honors $Level when looking for $TODO.

Next | Query returned 99 messages, browsing 71 to 80 | Previous