docs: clean up stale DESTROY/refcount limitation claims#571
Merged
Conversation
Recent commits implemented cooperative reference counting and DESTROY support. Refresh the public-facing documentation accordingly: - changelog: note the new `Internals::SvREFCNT` introspection helper alongside the existing DESTROY/weaken entries. - feature-matrix: extend the "Features Incompatible with JVM" entry to mention `Internals::SvREFCNT`. - roadmap: list `Template` and `DBIx::Class` next to `Moo` as known working CPAN modules under `jcpan`. - presentations (blog post + German workshop slides): drop the obsolete "weaken/DESTROY not implemented" bullets — they are now implemented and tested in `src/test/resources/unit/refcount/`. Also include the latest auto-generated `dev/cpan-reports/*` snapshot. Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Cleanup PR following the recent DESTROY / cooperative refcount work.
src/test/resources/unit/refcount/(12 files) plusdestroy.t,weaken.t, anddestroy_zombie_captured_by_db_args.talready cover basic / inheritance / collections / eval-die / return / splice-args / anon-containers / two-step bless / weaken / weaken+destroy / weaken+edge-cases / destroy edge-cases. No additional test files are needed for the cleanup.dev/presentations/blogs_perl_org_jcpan_2026/blog-post.md— dropped theweaken/DESTROYbullet from the limitations list.dev/presentations/German_Perl_Raku_Workshop_2026/slide-deck-plan.md— removedDESTROY (non-deterministic GC)from the "JVM-incompatible" bullet on Slide 34.docs/about/changelog.md— added a one-liner forInternals::SvREFCNTnext to the existing DESTROY /weaken/isweak/unweakenentries.docs/reference/feature-matrix.md— extended the existingDESTROYrow under "Features Incompatible with JVM" to mentionInternals::SvREFCNTintrospection.docs/about/roadmap.md— addedTemplateandDBIx::Classnext toMooin thejcpan"working modules" bullet under Highlights.dev/cpan-reports/*snapshot fromcpan_random_tester.pl(4109 modules tested, 1057 passing).The
docs/about/changelog.md,docs/reference/feature-matrix.md, anddocs/about/roadmap.mdalready had the high-level DESTROY /weaken"Implemented" entries from when those features landed; this PR only fills in the SvREFCNT detail and adds the two new working CPAN modules.Test plan
make(build + unit tests) — greenmaster(b0e4cbfba)Generated with Devin