Skip to content

Latest commit

 

History

History
140 lines (80 loc) · 5.6 KB

CHANGELOG.md

File metadata and controls

140 lines (80 loc) · 5.6 KB

HEAD

2.1.2

  • Support rails 7 for bundle exec derailed exec mem (#212)
  • Update the gemspec's homepage to the current repo URL (#212)

2.1.1

  • Fix Thor's deprecation warning by implementing exit_on_failure? (#195)

2.1.0

  • Add perf:heap_diff tool (#193)

2.0.1

  • rack-test dependency added (#187)

2.0.0

  • Syntax errors easier to debug with dead_end gem (#182)
  • Minimum ruby version is now 2.5 (#183)
  • Histograms are now printed side-by-side (#179)

1.8.1

  • Derailed now tracks memory use from load in addition to require (#178)
  • Correct logging of unsuccessful curl requests to file (#172)

1.8.0

  • Ruby 2.2 is now officialy supported and tested (#177)

1.7.0

  • Add histogram support to perf:library (#169)
  • Fix bug with Kernel#require patch when Zeitwerk is enabled (#170)

1.6.0

  • Added the perf:app command to compare commits within the same application. (#157)
  • Allow Rails < 7 and 1.0 <= Thor < 2 (#168)

1.5.0

  • Test perf:library results against 99% confidence interval in addition to 95% (#165)
  • Change default, perf:library tests do not stop automatically any more (#164)

1.4.4

  • Fix alignment of deicmals in output (#161)

1.4.3

  • perf:library now uses median instead of average (#160)

1.4.2

  • Fixed syntax error that resulted in ensure end error inside tasks.rb for older rubies (#155)
  • Fix case in perf:library where the same SHA could be tested against itself (#153)

1.4.1

  • Rake dependency now allows for Rake 13 (#151)

1.4.0

  • Allow configuration of perf:ips benchmark.
  • Fix bug with require_relative #142
  • Introduce perf:library to profile patches to libraries (like Rails) #135, #139, #140, #141

1.3.6

  • require_relative is now measured commit
  • Fix bug preventing a specific Rails 6 file from being loaded (#134)
  • exit(1) is called instead of raise (#127)

[1.3.5]

  • Output of test now emits the word "derailed" for easier grepping.
  • Fix "already initialized constant" warning

[1.3.4]

  • Allow for "warming up tasks" via WARM_COUNT env var #119

[1.3.3]

  • Make all paths added to $LOAD_PATH absolute instead of relative to allow for use with apps that use bootsnap.

[1.3.2]

  • Allow for use with Rack 11.

[1.3.1]

  • Allow for use with Rack 11.

[1.3.0] - 2015-01-07

  • Allow environment variable to skip Active Record setup.
  • Allow Rack 2 to work with Derailed.

[1.1.3] - 2015-10-15

  • Update docs

[1.1.2] - 2015-10-05

  • Added ability to use TEST_COUNT environment variable with perf:heap.

[1.1.1] - 2015-10-01

  • Added ability to create a heap dump perf:heap.

[1.1.0] - 2015-09-09

  • Set custom auth user using a lambda in perf.rake
  • Changed perf:ram_over_time changed to perf:mem_over_time
  • Fixed gem warnings

[1.0.1] - 2015-06-20

  • bundle:mem and 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).

[1.0.0] - 2015-05-14

  • Added derailed command line utility. Can be used with just a Gemfile using command $ derailed bundle:mem and $ derailed bundle:objects. All existing Rake tasks can now be called with $ derailed exec such as $ derailed exec perf:mem.
  • Changed memory_profiler task to be perf:objects instead of perf:mem.
  • Changed boot time memory measurement to perf:mem instead of perf: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 derailed namespace for executables inside of the derailed_benchmarks.

[0.0.0] - 2014-08-15

  • Initial release