The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Changes for version 0.008

  • Change: e7da290494874cb012983eb691088c12e0a05050 Author: Ben Tyler <benjamin.tyler@booking.com> Date : 2019-06-15 23:09:58 +0000
    • fit_to_view: support coderefs
    • This commit introduces a dependency on Sub::Info in order to provide some details on coderefs: name, package, file, and lines.
  • Change: 0aa1eb9d5b3225cb6f039d8cf120bfc9bf23f896 Author: Ben Tyler <benjamin.tyler@booking.com> Date : 2019-06-15 23:01:16 +0000
    • fit_to_view: support regexps/scalarrefs
    • Also clean up truncation messages.
  • Change: 00b2f2a5089b71f352e08fb46124fc5b61948c26 Author: Ben Tyler <benjamin.tyler@booking.com> Date : 2019-06-15 22:25:01 +0000
    • fit_to_view: fix sample count > data structure size
    • Summaries of hashes were not respecting the number of keys in the hash, so if you had a sample key count of 10, and a hash like { a => 1 }, Devel::Optic was going to misbehave.
    • Rename ref_key_sample_count -> sample_count along the way.