releasable6 Next release in ≈2 days and ≈11 hours. 1 blocker. Please log your changes in the ChangeLog: github.com/rakudo/rakudo/wiki/ChangeLog-Draft 07:00
Geth roast: b97dfa098f | (Christian Bartolomäus)++ | 2 files
[JVM] Unfudge some now working tests

Fixed with github.com/Raku/nqp/pull/643.
There are still some cases left that explode with UnwindExceptions.
07:29
lizmat Files=1346, Tests=117152, 226 wallclock secs (29.96 usr 8.75 sys + 3134.56 cusr 298.84 csys = 3472.11 CPU) 09:26
Geth rakudo: 9040318cdc | (Elizabeth Mattijsen)++ | 3 files
Remove DEPRECATED candidates that didn't work

Apparently, a bug in Rakudo::Deprecations.DEPRECATED caused these methods to die, rather than just produce a deprecation warning. Since this has been unreported for over 3 years, it feels safe to remove these candidates.
11:55
rakudo: 7406f8c627 | (Elizabeth Mattijsen)++ | 5 files
Remove deprecated functionality to core epilogue

This allows this functionality to "normally" use the "is DEPRECATED" trait making it introspectable, which is handy for IDE's like Comma.
This also removes two now empty source-files from the build, so a reconfigure is needed after this commit.
travis-ci Rakudo build failed. Elizabeth Mattijsen 'Remove deprecated functionality to core epilogue 13:01
travis-ci.org/rakudo/rakudo/builds/750205520 github.com/rakudo/rakudo/compare/b...06f8c6270f
lizmat apparently t/02-rakudo/99-misc.t (Wstat: 139 Tests: 0 Failed: 0) which I can *not* reproduce locally 13:04
sena_kun lizmat, I think it is a flapper.
lizmat also: Please be aware travis-ci.org will be shutting down in several weeks, with all accounts migrating to travis-ci.com. Please stay tuned here for more information.
why do we still bother with Travis? 13:05
sena_kun lizmat, because nobody is brave enough to step forward first and disable it just yet, I think.
lizmat afk for a few hours& 13:16
Geth rakudo: 604f64f46e | (Daniel Green)++ | t/02-rakudo/99-misc.t
Fix typo in test description
13:28
Geth rakudo: MasterDuke17++ created pull request #4120:
Add missing `-I lib` to an is-run test
13:43
travis-ci Rakudo build passed. Daniel Green 'Fix typo in test description' 14:35
travis-ci.org/rakudo/rakudo/builds/750216489 github.com/rakudo/rakudo/compare/7...4f64f46e4f
lizmat m: my @a = <a b c d e f g h i j>; my @i = 1,2,3; dd @a[0,1..2] 20:18
camelia ("a", ("b", "c"))
lizmat m: my @a = <a b c d e f g h i j>; my @i = 1,2,3; dd @a[0,1...2]
camelia ("a", "b", "c")
lizmat I'm not sure why these would be different
lizmat is starting to feel that @a[] handling needs a redefine for the next language version 20:36
m: dd <a b c d e>[0,1..2]; dd <a b c d e>[0,1...2] # golfed 20:38
camelia ("a", ("b", "c"))
("a", "b", "c")