Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix hash ordering bug tickled by perl 5.18.0 #1

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.gz
.build
CGI-Application-Plugin-Session-*
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: perl
perl:
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
- "5.8"

install:
- export RELEASE_TESTING=1 AUTOMATED_TESTING=1 AUTHOR_TESTING=1 HARNESS_OPTIONS=j10:c HARNESS_TIMER=1
- cpanm --quiet --notest --installdeps .

script:
- prove -lrsv t

22 changes: 0 additions & 22 deletions Build.PL

This file was deleted.

5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Revision history for Perl extension CGI::Application::Plugin::Session.

- Fix hash randomization bug tickled by perl 5.18
(Arthur Axel 'fREW' Schmidt)
- Delete some dead code (RT#46587, Nate Smith)
- Use instance name instead of global CGI::Session->name (Lee Carmichael)

1.03

- Add session_recreate method (suggested by Robert Bauck Hamar)
Expand Down
30 changes: 0 additions & 30 deletions MANIFEST

This file was deleted.

21 changes: 0 additions & 21 deletions META.yml

This file was deleted.

17 changes: 0 additions & 17 deletions Makefile.PL

This file was deleted.

43 changes: 0 additions & 43 deletions README

This file was deleted.

8 changes: 8 additions & 0 deletions cpanfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
requires 'CGI::Session' => 3.95;
requires 'CGI::Application' => 3.21;
requires 'File::Spec';
requires 'Scalar::Util';

on test => sub {
requires 'Test::More' => 1.001002;
};
17 changes: 17 additions & 0 deletions dist.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name = CGI-Application-Plugin-Session
author = Cees Hek <ceeshek@gmail.com>
license = Perl_5
copyright_holder = Cees Hek
version = 1.03

[NextRelease]
[@Git]
[@Basic]
[GithubMeta]
[MetaJSON]
[PodWeaver]
[PkgVersion]
[ReadmeFromPod]
[PodSyntaxTests]
[PodCoverageTests]
[Prereqs::FromCPANfile]
Loading