- Support rails 7 for bundle exec derailed exec mem (zombocom#212)
- Update the gemspec's homepage to the current repo URL (zombocom#212)
- Fix Thor's deprecation warning by implementing
exit_on_failure?(zombocom#195)
- Add
perf:heap_difftool (zombocom#193)
rack-testdependency added (zombocom#187)
- Syntax errors easier to debug with
dead_endgem (zombocom#182) - Minimum ruby version is now 2.5 (zombocom#183)
- Histograms are now printed side-by-side (zombocom#179)
- Derailed now tracks memory use from
loadin addition torequire(zombocom#178) - Correct logging of unsuccessful curl requests to file (zombocom#172)
- Ruby 2.2 is now officialy supported and tested (zombocom#177)
- Add histogram support to
perf:library(zombocom#169) - Fix bug with
Kernel#requirepatch when Zeitwerk is enabled (zombocom#170)
- Added the
perf:appcommand to compare commits within the same application. (zombocom#157) - Allow Rails < 7 and 1.0 <= Thor < 2 (zombocom#168)
- Test
perf:libraryresults against 99% confidence interval in addition to 95% (zombocom#165) - Change default,
perf:librarytests do not stop automatically any more (zombocom#164)
- Fix alignment of deicmals in output (zombocom#161)
- perf:library now uses median instead of average (zombocom#160)
- Fixed syntax error that resulted in ensure end error inside tasks.rb for older rubies (zombocom#155)
- Fix case in perf:library where the same SHA could be tested against itself (zombocom#153)
- Rake dependency now allows for Rake 13 (zombocom#151)
- Allow configuration of
perf:ipsbenchmark. - Fix bug with
require_relative#142 - Introduce
perf:libraryto profile patches to libraries (like Rails) #135, #139, #140, #141
require_relativeis now measured commit- Fix bug preventing a specific Rails 6 file from being loaded (zombocom#134)
exit(1)is called instead of raise (zombocom#127)
- Output of
testnow emits the word "derailed" for easier grepping. - Fix "already initialized constant" warning
- Allow for "warming up tasks" via WARM_COUNT env var #119
- Make all paths added to $LOAD_PATH absolute instead of relative to allow for use with apps that use bootsnap.
- Allow for use with Rack 11.
- Allow for use with Rack 11.
- Allow environment variable to skip Active Record setup.
- Allow Rack 2 to work with Derailed.
- Update docs
- Added ability to use TEST_COUNT environment variable with
perf:heap.
- Added ability to create a heap dump
perf:heap.
- Set custom auth user using a lambda in perf.rake
- Changed
perf:ram_over_timechanged toperf:mem_over_time - Fixed gem warnings
bundle:memand similar tasks now keep track of duplicate requires and display them along side of memory requirements. This makes it easier to identify where components are used by multiple libraries- Add rake to gemspec which gets rid of
Unresolved specs during Gem::Specification.reset:warning - Outputs of memory are now done in mebibytes, a more accurate unit for the value we're measuring (hint: it's what you think MB is).
- Added
derailedcommand line utility. Can be used with just a Gemfile using command$ derailed bundle:memand$ derailed bundle:objects. All existing Rake tasks can now be called with$ derailed execsuch as$ derailed exec perf:mem. - Changed memory_profiler task to be
perf:objectsinstead ofperf:mem. - Changed boot time memory measurement to
perf:meminstead ofperf:require_bench - Released seperate derailed gem that is a wrapper for this gem. I.e. installing that gem installs this one. Easier to remember, less words to type. Also means there's no colision using the
derailednamespace for executables inside of thederailed_benchmarks.
- Initial release