Skip to content

Commit baca3aa

Browse files
pmqsjkeenan
authored andcommitted
cpan/IO-Compress - Update to version 2.214
2.214 24 October 2025 * version 2.214 Fri Oct 24 16:33:36 2025 +0100 6eb77023e6c6ad9c6869f396f42fb1fe4f79ace2 * IO::Compress::Gzip accidentally modifies the `$EXPORT_TAGS{all}->@*` of other modules Fixes #64 Fri Oct 24 15:51:30 2025 +0100 d1774d5b634d0aaa634ecc29db28fcd878adbd87 * Fix indentation in Windows workflow YAML Sun Oct 19 14:24:36 2025 +0100 bb02b9069f9a7c954ffe27be5bba5464b8882000 * Fix indentation in windows.yml exclude section Sun Oct 19 14:19:31 2025 +0100 7c573858a7aac83806da6831a84171f4ce6bd19e * Merge pull request #63 from masiuchi/fix/ci-errors Sat Oct 18 16:48:45 2025 +0100 8cbbd4a881b53dc54cff309122094327edc376e3 * Exclude Perl 5.42 with "strawberry" distribution from GitHub Actions Sat Oct 18 23:25:38 2025 +0900 407986d5f45f07b654c649c478e43e05e2b13db9 * Update FreeBSD image to 14.3 in Cirrus CI Sat Oct 18 22:43:17 2025 +0900 3ffdaa03e98f4f75d1a80bd34d27caa2dabdf576 * Add dependabot.yml file to police workflow files Thu Sep 4 17:18:18 2025 +0100 4678d7b55393d3bb00f8468b992f33c46f26f847 * Add perl 5.42 to workflow files Thu Sep 4 17:17:27 2025 +0100 dca22a69dcda62c35bb088df7c3c203a458d3b73 * Fix for pmqs/Compress-Raw-Zlib#34 Sat Aug 30 19:17:26 2025 +0100 3cb88fd9a1d5fee49aea9ef2aefbbb3231f3c585 * #59 fix typos in streamzip Wed Nov 13 16:52:05 2024 +0000 e70223ed043fb11c0dcaad3204286ee0a263f58e
1 parent 7afcb31 commit baca3aa

32 files changed

+171
-170
lines changed

Porting/Maintainers.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -669,8 +669,8 @@ package Maintainers;
669669
},
670670

671671
'IO-Compress' => {
672-
'DISTRIBUTION' => 'PMQS/IO-Compress-2.213.tar.gz',
673-
'SYNCINFO' => 'jkeenan on Wed Aug 28 14:24:42 2024',
672+
'DISTRIBUTION' => 'PMQS/IO-Compress-2.214.tar.gz',
673+
'SYNCINFO' => 'jkeenan on Sat Oct 25 11:58:55 2025',
674674
'MAIN_MODULE' => 'IO::Compress::Base',
675675
'FILES' => q[cpan/IO-Compress],
676676
'EXCLUDED' => [

cpan/IO-Compress/Makefile.PL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
use strict ;
44
require 5.006 ;
55

6-
$::VERSION = '2.213' ;
7-
$::DEP_VERSION = '2.213';
6+
$::VERSION = '2.214' ;
7+
$::DEP_VERSION = '2.214';
88

99
use lib '.';
1010
use private::MakeUtil;

cpan/IO-Compress/bin/streamzip

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ OPTIONS
129129
-method=M Compress using method 'M'.
130130
Valid methods are
131131
store Store without compression
132-
deflate Use Deflate compression [Deflault]
132+
deflate Use Deflate compression [Default]
133133
bzip2 Use Bzip2 compression
134134
lzma Use LZMA compression [needs IO::Compress::Lzma]
135135
xz Use LZMA compression [needs IO::Compress::Xz]
@@ -207,7 +207,7 @@ Compress using method C<M>.
207207
Valid method names are
208208
209209
* store Store without compression
210-
* deflate Use Deflate compression [Deflault]
210+
* deflate Use Deflate compression [Default]
211211
* bzip2 Use Bzip2 compression
212212
* lzma Use LZMA compression
213213
* xz Use xz compression
@@ -253,7 +253,7 @@ Check the contents of C<abcd,zip> with the standard C<unzip> utility
253253
22 1 file
254254
255255
Notice how the C<Name> is set to C<->.
256-
That is the default for a few zip utilities whwre the member name is not given.
256+
That is the default for a few zip utilities where the member name is not given.
257257
258258
If you want to explicitly name the file, use the C<-member-name> option as follows
259259
@@ -275,9 +275,9 @@ backwards/forwards in the file.
275275
276276
A good examples is when you are serving dynamic content from a Web Server
277277
straight into a socket without needing to create a temporary zip file in
278-
the filesystsm.
278+
the filesystem.
279279
280-
Similarly if your workfow uses a Linux pipelined commands.
280+
Similarly if your workflow uses a Linux pipelined commands.
281281
282282
=head1 SUPPORT
283283

cpan/IO-Compress/lib/Compress/Zlib.pm

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ use Carp ;
77
use IO::Handle ;
88
use Scalar::Util qw(dualvar);
99

10-
use IO::Compress::Base::Common 2.213 ;
11-
use Compress::Raw::Zlib 2.213 ;
12-
use IO::Compress::Gzip 2.213 ;
13-
use IO::Uncompress::Gunzip 2.213 ;
10+
use IO::Compress::Base::Common 2.214 ;
11+
use Compress::Raw::Zlib 2.214 ;
12+
use IO::Compress::Gzip 2.214 ;
13+
use IO::Uncompress::Gunzip 2.214 ;
1414

1515
use strict ;
1616
use warnings ;
1717
use bytes ;
1818
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
1919

20-
$VERSION = '2.213';
20+
$VERSION = '2.214';
2121
$XS_VERSION = $VERSION;
2222
$VERSION = eval $VERSION;
2323

@@ -461,7 +461,7 @@ sub inflate
461461

462462
package Compress::Zlib ;
463463

464-
use IO::Compress::Gzip::Constants 2.213 ;
464+
use IO::Compress::Gzip::Constants 2.214 ;
465465

466466
sub memGzip($)
467467
{
@@ -1509,7 +1509,7 @@ See the Changes file.
15091509
15101510
=head1 COPYRIGHT AND LICENSE
15111511
1512-
Copyright (c) 1995-2024 Paul Marquess. All rights reserved.
1512+
Copyright (c) 1995-2025 Paul Marquess. All rights reserved.
15131513
15141514
This program is free software; you can redistribute it and/or
15151515
modify it under the same terms as Perl itself.

cpan/IO-Compress/lib/IO/Compress.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package IO::Compress;
22

3-
our $VERSION = '2.213' ;
3+
our $VERSION = '2.214' ;
44

55
=head1 NAME
66

cpan/IO-Compress/lib/IO/Compress/Adapter/Bzip2.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ use strict;
44
use warnings;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.213 qw(:Status);
7+
use IO::Compress::Base::Common 2.214 qw(:Status);
88

9-
use Compress::Raw::Bzip2 2.213 ;
9+
use Compress::Raw::Bzip2 2.214 ;
1010

1111
our ($VERSION);
12-
$VERSION = '2.213';
12+
$VERSION = '2.214';
1313

1414
sub mkCompObject
1515
{

cpan/IO-Compress/lib/IO/Compress/Adapter/Deflate.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ use strict;
44
use warnings;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.213 qw(:Status);
8-
use Compress::Raw::Zlib 2.213 qw( !crc32 !adler32 ) ;
7+
use IO::Compress::Base::Common 2.214 qw(:Status);
8+
use Compress::Raw::Zlib 2.214 qw( !crc32 !adler32 ) ;
99

1010
require Exporter;
1111
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, @EXPORT, %DEFLATE_CONSTANTS);
1212

13-
$VERSION = '2.213';
13+
$VERSION = '2.214';
1414
@ISA = qw(Exporter);
1515
@EXPORT_OK = @Compress::Raw::Zlib::DEFLATE_CONSTANTS;
1616
%EXPORT_TAGS = %Compress::Raw::Zlib::DEFLATE_CONSTANTS;

cpan/IO-Compress/lib/IO/Compress/Adapter/Identity.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ use strict;
44
use warnings;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.213 qw(:Status);
7+
use IO::Compress::Base::Common 2.214 qw(:Status);
88
our ($VERSION);
99

10-
$VERSION = '2.213';
10+
$VERSION = '2.214';
1111

1212
sub mkCompObject
1313
{

cpan/IO-Compress/lib/IO/Compress/Base.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require 5.006 ;
66
use strict ;
77
use warnings;
88

9-
use IO::Compress::Base::Common 2.213 ;
9+
use IO::Compress::Base::Common 2.214 ;
1010

1111
use IO::File (); ;
1212
use Scalar::Util ();
@@ -20,7 +20,7 @@ use Symbol();
2020
our (@ISA, $VERSION);
2121
@ISA = qw(IO::File Exporter);
2222

23-
$VERSION = '2.213';
23+
$VERSION = '2.214';
2424

2525
#Can't locate object method "SWASHNEW" via package "utf8" (perhaps you forgot to load "utf8"?) at .../ext/Compress-Zlib/Gzip/blib/lib/Compress/Zlib/Common.pm line 16.
2626

@@ -1051,7 +1051,7 @@ See the Changes file.
10511051
10521052
=head1 COPYRIGHT AND LICENSE
10531053
1054-
Copyright (c) 2005-2024 Paul Marquess. All rights reserved.
1054+
Copyright (c) 2005-2025 Paul Marquess. All rights reserved.
10551055
10561056
This program is free software; you can redistribute it and/or
10571057
modify it under the same terms as Perl itself.

cpan/IO-Compress/lib/IO/Compress/Base/Common.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use File::GlobMapper;
1111
require Exporter;
1212
our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $HAS_ENCODE);
1313
@ISA = qw(Exporter);
14-
$VERSION = '2.213';
14+
$VERSION = '2.214';
1515

1616
@EXPORT = qw( isaFilehandle isaFilename isaScalar
1717
whatIsInput whatIsOutput

0 commit comments

Comments
 (0)