Skip to content

Commit

Permalink
Merge branch 'master' of github.com:nigelhorne/CGI-Info
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Oct 10, 2023
2 parents 3e12221 + ce9e4f7 commit 1bc1e3b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
# see https://github.com/FGasper/perl-github-action-tips
# and https://github.com/actions/virtual-environments
# codecov is 5.12 and above, so can't test on 5.10

name: Test Code on Ubuntu
on:
Expand All @@ -19,7 +20,7 @@ jobs:
os:
- ubuntu-20.04
- ubuntu-22.04
perl-version: ['5.38', '5.36', '5.34', '5.32', '5.30', '5.28', '5.22', '5.20', '5.18', '5.16', '5.14', '5.12', '5.10']
perl-version: ['5.38', '5.36', '5.34', '5.32', '5.30', '5.28', '5.22', '5.20', '5.18', '5.16', '5.14', '5.12']
name: Perl ${{ matrix.perl-version }} on ${{ matrix.os }}

container:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
cover -test
cover -report codecov
curl -Os https://uploader.codecov.io/latest/windows/codecov.exe
./codecov.exe -t fe086bb5-1d90-491c-b5b4-48cbf5bedfb5
./codecov -t ${{ secrets.CODECOV_TOKEN }}
env:
AUTHOR_TESTING: 1
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for CGI-Info

0.78
0.78 Fri Oct 6 13:59:51 EDT 2023
Set HTTP status to 403 on HTTP_USER_AGENT SQL injection attack
Test::Exception hasn't been used for sometime, so removed dependancy

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ WriteMakefile(
PL_FILES => {},
TEST_REQUIRES => {
'LWP::UserAgent' => 0,
'JSON::PP' => 4.02, # Fix http://www.cpantesters.org/cpan/report/78a1401c-42de-11e9-bf31-80c71e9d5857
'Test::Carp' => 0,
'Test::Compile' => 0,
'Test::Most' => 0,
Expand Down Expand Up @@ -51,7 +52,6 @@ WriteMakefile(
'String::Clean::XSS' => 0,
'Log::Any' => 0,
'JSON::MaybeXS' => 0,
# 'JSON::PP' => 4.02, # Fix http://www.cpantesters.org/cpan/report/78a1401c-42de-11e9-bf31-80c71e9d5857
# 'String::EscapeCage' => 0.02,
'Class::Autouse' => 0,
'namespace::clean' => 0,
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CGI-Info Version 0.77
CGI-Info Version 0.78

INSTALLATION

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ CGI::Info - Information about the CGI environment

# VERSION

Version 0.77
Version 0.78

# SYNOPSIS

Expand Down
4 changes: 2 additions & 2 deletions lib/CGI/Info.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ CGI::Info - Information about the CGI environment
=head1 VERSION
Version 0.77
Version 0.78
=cut

our $VERSION = '0.77';
our $VERSION = '0.78';

=head1 SYNOPSIS
Expand Down

0 comments on commit 1bc1e3b

Please sign in to comment.