forked from tsee/Class-XSAccessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChanges
152 lines (119 loc) · 5 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
Revision history for Perl extension Class-XSAccessor.
1.08 Fri Sep 17 20:30 2010
- Promote latest development release to a stable release.
1.07_04 Sun Sep 12 10:30 2010
- Since WIN32 doesn't have the PERL_CORE optimization,
it gets the PERL_NO_GET_CONTEXT optimization back.
- Add threading test that would previously crash on win32
and perls compiled with track-mempool.
- Use the system's malloc/etc for the shared memory, not perl's.
1.07_03 Thu Sep 9 20:30 2010
- Minor constructor optimization/cleanup.
- Various built-time warning fixes.
- PERL_CORE optimization now disabled on WIN32.
- Class::Accessor::Fast compatibility code added (not
for public consumption!)
- Clear requirement of Perl 5.8 everywhere.
- Fix minor (constant as in O(1)) memory leak.
1.07_02 Mon Aug 23 20:30 2010
- Various warning fixes and small cleanups over previous
dev. version.
1.07_01 Wed Aug 18 20:30 2010
- Experimental support for lvalue accessors:
$obj->foo = 12
1.07 Sun Aug 15 14:41 2010
- Include two new test files for the fix in 1.06.
- Define PERL_CORE, but *only* while including XSUB.h to get
a significant speed-up (see XSAccessor.xs for an explanation).
Idea from chocolateboy. Complaints from rightfully annoyed
perl5-porters (in particular but not limited to Nicholas)
go to Steffen.
1.06 Sat Aug 14 20:21 2010
- Add sanity checks to make sure we don't segfault on
invalid invocants (chocolateboy)
1.05 Sun Nov 15 12:54 2009
- Minor developer doc tweaks.
- Minor XS refactoring
1.04_05 Mon Nov 9 20:10 2009
- Fixes for perls < 5.10:
=> No entersub optimization
=> Do no use precalculated hashes
- Updated entersub optimization
- Remove brain-damaged double-hashing
- Minor portability fixlets
1.04_04 Thu Nov 5 18:00 2009
- Fixes for non-threaded perls
(no need for locks, perl_mutex not even defined).
1.04_03 Tue Nov 3 22:32 2009
** This release features some very radical changes. Test well. **
- Replace use of perl hashes in the global hash key name storage with
a full-blown, separate implementation of a hash table
(Steffen, chocolateboy)
- Similarly, throw out the SV's for simple C strings.
- Add a global lock for all modifications to global data structures:
- The above three items fix RT #50454 (serious threading issues).
- Add support for alternate use Class::XSAccessor { ... } syntax
(Adam K)
1.04_02 Mon Sep 7 11:35 2009
** This release features some very radical changes. Test well. **
- Significant optimization by replacing the relevant entersub ops
with stripped down versions (chocolateboy)
1.04_01 Mon Sep 7 11:35 2009
** This release features some very radical changes. Test well. **
- More aggressive OPTIMIZE flags if possible (chocolateboy)
- Added shorthand syntax for getters, setters, accessors, and predicates
where the attribute has the same name as the method (chocolateboy)
- Remove dependency on AutoXS::Header.
- Merge Class::XSAccessor::Array into this distribution.
- Refactored the XS to remove duplicate code.
- Refactored the perl code in XSAccessor.pm and Array.pm to remove
duplicate code (=> Heavy.pm).
- Upgrade Devel::PPPort/ppport.h (chocolateboy)
1.04 Thu Jun 11 16:40 2009
- Fix a bunch of warnings thanks to a heads up from
Marcela Maslanova.
1.03 Sun May 31 18:45 2009
- Upgrade to AutoXS::Header 1.01: Make it C89!
1.02 Sun May 17 11:18 2009
- Require new AutoXS header version in order to fix
prototyping issue.
1.01 Sat May 16 16:11 2009
- XS boolean constants for PPI
1.00 Sat May 16 13:48 2009
- Implement new caching algorithm: Only recreate
the int => hash key association for new hash keys.
0.14 Tue Dec 9 21:06 2008
- Fix Makefile issue on Windows using nmake (Petar Shangov)
0.13 Thu Dec 4 15:06 2008
- Add predicate tests
- Fix some compiler warnings (Tom Heady)
0.12 Tue Dec 2 14:07 2008
- Compilation fix for Solaris cc. (Probably going half-way only.)
0.11 Sat Nov 29 21:37 2008
- Forgot to add more tests in previous release.
0.10 Sat Nov 29 21:17 2008
- Add generation of constructors.
0.09 Sat Nov 29 17:28 2008
- Add the class option to set the target class.
0.08 Fri Nov 21 12:17 2008
- Reduce code duplication.
- Fix for compilation issues on Solaris with Sun's cc.
0.07 Thu Aug 29 14:14 2008
- Documented the "replace" option.
- Added the "chained" option to generate chainable setters
and mutators.
0.06 Thu Aug 28 13:39 2008
- Copy input scalars on setter/mutator calls (RT #38573)
0.05 Sat Jun 21 18:06 2008
- Add read/write accessors. (chocolateboy)
- By default, return the new value from setters. (chocolateboy)
- Add predicates, i.e. "has_foo".
0.04 Mon May 3 19:12 2008
- Win32 support.
0.03 Mon May 3 19:12 2008
- Refer to Class::XSAccessor::Array for array based objects.
0.02 Mon Apr 3 17:12 2008
- Mention in the docs that fully qualified method names are
supported.
0.01 Mon Apr 3 17:09 2008
- original version as uploaded to CPAN.