changelog
[gitmo/Package-Stash-XS.git] / Changes
1 Revision history for Package-Stash-XS
2
3 {{$NEXT}}
4
5 0.24  2011-09-05
6       - invalid package names (for instance, Foo:Bar) are not allowed
7       - invalid stash entry names (anything containing ::) are not allowed
8
9 0.23  2011-08-08
10       - fix the test for scalar values, again (t0m, rafl)
11       - disallow assigning globrefs to scalar glob slots (this doesn't actually
12         make any sense)
13
14 0.22  2011-03-04
15       - make the namespace cache lazy and weak, in case the stash is deleted
16       - but, this doesn't work on 5.8, so disable the namespace caching
17         entirely there
18
19 0.21  2011-01-25
20       - make the leak tests author-only, since some smokers run release tests
21       - fix some xs forward compat stuff (Dave Mitchell)
22
23 0.20  2011-01-11
24       - lower perl prereq to 5.8.1 (ribasushi)
25       - make the leak tests release-only, since they keep randomly failing on
26         platforms i don't have access to. people are encouraged to submit
27         patches for these if they are affected.
28
29 0.19  2011-01-05
30       - actually fix scalar initial value validity test
31
32 0.18  2011-01-05
33       - more correct validity test for scalars (rafl, Roland van Ipenburg)
34
35 0.17  2010-11-16
36       - bah, get rid of extra junk in the tarball
37
38 0.16-TRIAL  2010-11-16
39       - fix some issues in the undocumented-but-still-maybe-used-some-places
40         hashref api - if you don't know what this is, good!
41
42 0.15-TRIAL  2010-11-16
43       - split the XS implementation out into its own dist, which will be used
44         as a backend for Package::Stash if possible
45
46 0.14-TRIAL  2010-11-14
47       - complete rewrite in C, for speed (this includes the vivification
48         changes from earlier). should be entirely backwards compatible
49         otherwise (in terms of documented api anyway).
50
51 0.13  2010-10-31
52       - revert the vivification changes for now, to get an actual release out
53         with Test::Fatal
54
55 0.12-TRIAL  2010-10-27
56       - actually include the conflict stuff in the release (bah)
57
58 0.11-TRIAL  2010-10-27
59       - conflict on mx-role-withoverloading too
60
61 0.10-TRIAL  2010-10-27
62       - only do the weird ISA special-casing on perl versions where it's broken
63
64 0.09-TRIAL  2010-10-27
65       - clean up the vivication code a lot, make it behave more sanely
66       - use Test::Fatal instead of Test::Exception (Justin Hunter)
67
68 0.08  2010-09-18
69       - oops, accidentally included some experimental changes in that last
70         release, that break things
71
72 0.07  2010-09-18
73       - non-dev release
74
75 0.06-TRIAL  2010-08-26
76       - re-enable the caching of the stash, since I can't reproduce the bug
77         at all
78
79 0.05  2010-06-15
80       - bump Test::More requirement for done_testing
81
82       - update packaging stuff
83
84 0.04  2010-06-13
85       - get_package_symbol now doesn't autovivify stash entries. A new method
86         get_or_add_package_symbol can now be used for that behavior.
87
88       - Update %DB::sub on add_package_symbol (Tim Bunce).
89
90 0.03  2010-05-14
91       - Rename from Stash::Manip to Package::Stash
92
93 0.02  2010-05-13
94       - Need to dep on Test::Exception
95
96 0.01  2010-05-12
97       - Initial release