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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
|
=encoding utf8
=head1 NAME
REVISION HISTORY - Set::Object
=head1 1.42, 2022-01-21
=over
=item *
Fix C<%h={}> warning, by Pauwel Coppieters
=item *
add F<examples/slow-sort.pl>. see RT #90070
=back
=head1 1.41, 2021-01-17
=over
=item *
Use meta-spec 2, Moose -> dev.requires not runtime.recommends
(GH #6, RT #134034) by mohawk
=back
=head1 1.40, 2020-01-19
=over
=item *
Fixed perl5.28 regressions (not cperl), for @$set args to other set functions.
(RT #131345). Fixed by adding missing SvGETMAGIC expansions to all args.
=item *
Bumped minimal required perl version to 5.8 for arrayref @$set behavior.
=item *
Fixed the smokers and some author tests.
=back
=head1 1.39, 2018-01-08
=over
=item *
Skip installing Changes.pod (PR #5, kentfredric)
=back
=head1 1.38, 2017-11-11
=over
=item *
Add test_cover and release targets
=back
=head1 1.37, 2017-11-11
=over
=item *
Test fixes for -Ddefault_inc_excludes_dot, RT #120540
=item *
Skip failing threads test <= 5.10.0
=item *
Add CI hooks
=back
=head1 1.36, 2017-11-10
=over
=item *
Davem fixed get-magic for the new arguments, fixing
NetHack-Item L<[perl #132152]|https://rt.perl.org/Public/Bug/Display.html?id=132152>.
See L<[cpan #123582]|https://rt.cpan.org/Ticket/Display.html?id=123582>
=item *
Stabilize F<t/misc/kwalitee.t> test
=back
=head1 1.35, 2015-06-10
=over
=item *
Change to Artistic License 2.0
=item *
Add more misc tests. Add use strict to Set::Object::Weak
=back
=head1 1.34, 2013-12-25
=over
=item *
Make synopsis examples work (tadzik)
=back
=head1 1.33, 2013-12-13
=over
=item *
Fix RT #90070: Improve pod for sorted @$set in list context vs
unsorted ->elements (ftobin)
=item *
Fix RT #87658: Typo in pod (dsteinbrunner)
=back
=head1 1.32, 2013-05-15 rurban (released 2013-12-13)
=over
=item *
Reverts Changes.pod patch RT#85244 as it conflicts with the Set::Object pod on metacpan.
Also RT #85246
=back
=head1 1.31, 2013-05-13 rurban
=over
=item *
Changes.pod patch by Gregor Hermann, debian perl group - RT#85244
=back
=head1 1.30, 2013-04-04 rurban (new maintainer)
=over
=item *
Fixes for 5.16 and newer - RT#83426
Sort by member names, not the refs.
Fix wrong weak test with globals. Changed to lexicals and use strict/warnings.
=item *
Fix F<t/misc/segfault.t>, check SvMAGICAL before doing C<mg_find>
=item *
Fixed wrong C format types in warnings and C<SET_OBJECT_MAGIC_backref>.
Added PREREQ_PMs, make L<Test::LeakTrace> and L<Moose> an optional dependency
for F<t/misc/more_leaks.t>
=item *
Improve thread-safety (forbid concurrent writes), but still dealing with
Attempt to free non-existent shared string and
Unbalanced string table refcount: (1) for "8" during global destruction.
- RT #22760
=item *
Add missing typemap entry const char * for 5.6
=back
=head1 1.29, 13 Feb 2013
=over
=item *
Fixed a typo in a function which really shouldn't exist - RT#79653
=item *
Marked a couple of functions as deprecated for removal (including the
above function).
=item *
Fixed the magic cleanup code to use the appropriate macro/function to
clean up the magic list instead of trying to do it itself.
Unsurprisingly, fixes a memory leak. (RT#69967, also RT#67289)
=back
=head1 1.28, 22 Jul 2010
=over
=item *
Fixed a portability concern for some platforms' C compilers (that do
not support //-style comments) - RT#52690
=item *
Valid SIGNATURE file - RT#50492
=back
=head1 1.27, 15 Jan 2009
=over
=item *
Fix a typo that affected building against Perls with debugging enabled.
=item *
A minor #define refactor (Yuval).
=item *
Squash some long-standing warnings I had been ignoring for ages and
Havard Eidnes prompted me to fix by logging an RT ticket for it.
=item *
Squash some global clean-up warnings.
=back
=head1 1.26, 13 Oct 2008
=over
=item *
Methods which destroyed C<$@> due to internal use of C<eval> now
properly call C<local($@)> (Yuval)
=item *
Fix a leak and a corner case with weak set magic, and squash some
warnings (Yuval)
=item *
Define behaviour when dealing with return values from operations on
weak sets. No longer hard-coded "Set::Object" - may affect
Set::Object sub-classes (Sam).
=item *
(post-release changelog entry) related to the previous change,
Set::Object::Weak::set did not use to shift the invocant off the
stack, which caused result sets to have the inserted sets as members.
It now does, fixing this bug.
=back
=head1 1.25, 22 Jul 2008
=over
=item *
Portability: support Perls before 5.7.3, and make this dependency
explicit in the F<Makefile.PL>
=back
=head1 1.24, 20 Jul 2008
=over
=item *
Remove threads test which had inadvertently slipped into the MANIFEST
from source control, and add comprehensive documentation on the state
of thread support in this module.
=item *
Correct other silly MANIFEST mistakes.
=back
=head1 1.23, 18 Jul 2008
=over
=item *
Make behaviour when dealing with items which were C<undef> defined.
Previously it might segfault (or Bus Error on Mac OS X) on some
operations and Perl versions, or result in an empty string being
inserted.
=item *
Fix a minor compile problem on IRIX, reported by David Cantrell.
=back
=head1 1.22, 8 Oct 2007
=over
=item *
Sub-classing interface added; it is now much easier to make
L<Set::Object> subclasses that return objects other than more
L<Set::Object>s when subclassing. From BrÃan Mach Aon Innéirghthe.
=back
=head1 1.21, 17 Feb 2007
=over
=item *
Fix false negative when Test::Pod::Coverage isn't installed. Reported
by Anna Bernathova of SuSE.
=back
=head1 1.20, 16 Feb 2007
=over
=item *
The C<-E<gt>compare> function was returning "disjoint" for empty sets.
RT#24965. (Nigel Metheringham)
=item *
Document lots of methods that were previously not documented.
=item *
Fix C<Set::Object::Weak::set()>. It was not passing its arguments to
C<Set::Object::Weak-E<gt>new()>, which was very broken.
=back
=head1 1.19, 23 Jan 2007
=over
=item *
remove bogus inclusions of Data::Dumper and Devel::Peek
=item *
New class C<Set::Object::Weak>, which all weak sets should get
re-blessed into when you call C<-E<gt>weaken>. Also added alternative
methods of constructing weak sets.
=item *
Fix a memory leak with scalar members (the internal hash used to store
the items was never being freed). RT#24508.
=back
=head1 1.18, 14 Sep 2006
=over
=item *
We could only build on gcc due to the use of variadic macros.
use C<#ifdef> to hide this GCC-specific extension (used only for
debugging) from non-GCC compilers.
=item *
Add note to man page on compatibility of C<Storable> serializations of
C<Set::Object>s between revisions.
=back
=head1 1.17, 1 Aug 2006
=over
=item *
fix compile problem affecting some platforms
=back
=head1 1.16, 18 Jul 2006
=over
=item *
weak reference support
=back
=head1 1.15, 21 Jun 2006
=over
=item *
Dumping sets with scalars in them via L<Storable> now works.
=back
=head1 1.14
=over
=item *
Fix build problem on Win32 (thanks Steffen Goeldner)
=back
=head1 1.13
=over
=item *
Fix F<Makefile.PL> so this F<Changes.pod> is not delivered as
C<Set::Changes> :-}
=item *
Restore compatibility with 5.6.0
=item *
Remove some compile-time warnings, please let me know if this version
does not build on any platform!
=back
=head1 1.12, 30 Aug 2005
=over
=item *
added patch from Sergey Skvortsov for backwards compatibility with
Perl versions before 5.8 (include >100k F<ppport.h>!)
=item *
removed 'C<set()>' constructor from default export list, as its name
conflicts with too many other modules.
=back
=head1 1.11, 27 Apr 2005
=over
=item *
removed debugging C<&_> func (was causing strange errors on 5.9.1)
=cut
=back
=head1 1.10, 2 Apr 2005
=over
=item *
added 'C<set()>' constructor and use-as-array-ref interface
=back
=head1 1.09, 26 Mar 2005
=over
=item *
added 'bool' overload operator to C<Set::Object>. For backwards
compatibility, always returns true.
=back
=head2 1.08_02, 14 Jan 2005
=over
=item *
Cutting out the "Universe" representation; this module gives plain
sets only.
=item *
documentation fixes
=back
=head2 1.08_01, 12 Jan 2005
=over
=item *
First attempt at adding support for scalars. This version tries to
work as closely to C<Set::Scalar> as possible.
This approach will not be continued unless there are a lot of requests
for it to be implemented. I think it's overly complicated, and not
what people expect when they want a Set.
=back
=head1 1.08, 14 Oct 2004
=over
=item *
another segfault bites the dust; this time, avoids a segfault when
taking a difference between sets of exactly 31 and 0 size. Same root
fault as the previous bug, this time I have a test case for it, too.
=back
=head1 1.07, 16 Aug 2004
=over
=item *
yet another segfault fix, this time due to incorrect use of PUSHs vs
XPUSHs. There is no test case for this bug unfortunately.
=back
=head1 1.06, 1 May 2004
=over
=item *
Fixed segfault when attempting to remove items from an empty set (fix
from Richard Sterling Cox)
=back
=head1 1.05, 5 Jan 2004
=over
=item *
some segfault fixes with Storable and Perl 5.6.1 (Perl 5.8.1 should be
OK)
=back
=head1 1.04, 3 Aug 2003
=over
=item *
added various functions similar to some found in Scalar::Util, but
with an extra one that performs a function that lays some groundwork
for L<Container::Object> (C<ish_int>).
Some of these functions were in the XS code anyway, and they are
extremely small, so I didn't see a problem with duplicating them -
saves an extra dependency. Plus, Graham Barr won't let me put
C<ish_int> or C<is_key> in his module.
Knowing that they are available will also assist in fixing some longer
standing bugs in Tangram (eg, using C<$obj + 0> to get a unique ID
when C<refaddr($obj)> would be better)
=item *
lots more input marshalling; if you ever end up doing funny things to
a C<Set::Object>, then at least now you'll get a clearer error
message.
=item *
more tests; L<Devel::Cover> test coverage now at 91% (stmt), 67% (branch)
=item *
erroneously putting scalars into C<Set::Object>s now no longer dumps
core.
=item *
serialisation of C<Set::Object> objects is now possible via the
L<Storable> module (L<Data::Dumper> still does the wrong thing, but
there is nothing I can do about that).
=back
=head1 1.03, 24 Jan 2003
=over
=item *
fixed overload related bug
=back
=head1 HISTORIC RELEASES
From original F<Changes> file.
Revision history for Perl extension Set::Object.
0.01 Sat Jun 6 13:36:56 1998
- original version; created by h2xs 1.18
0.02 Sun Jul 12 1998
- fixed refcount bug that leaked object when hash was
reorganized
- ensured compatibility with Perl 5.004_71
1.00 mid-99
- fixed some bug (related to subsets?)
- first mature release
1.01 8 Nov 1999
- no longer use Perl arrays internally, now compatible with
Perl 5.005_62
1.02 8 May 08 2000
- fixed bug that miscomputed new bucket while reindexing
=cut
|