Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 1.94 KB

CHANGELOG.md

File metadata and controls

14 lines (12 loc) · 1.94 KB

Change log

master (unreleased)

  • #59: Rename ThreadSafety::InstanceVariableInClassMethod cop to ThreadSafety::ClassInstanceVariable to better reflect its purpose. (@viralpraxis)
  • #55: Enhance ThreadSafety::InstanceVariableInClassMethod cop to detect offenses within class_eval/exec blocks. (@viralpraxis)
  • #54: Drop support for RuboCop older than 1.48. (@viralpraxis)
  • #52: Add new RackMiddlewareInstanceVariable cop to detect instance variables in Rack middleware. (@viralpraxis)
  • #48: Do not report instance variables in ActionDispatch callbacks in singleton methods. (@viralpraxis)
  • #43: Make detection of ActiveSupport's class_attribute configurable. (@viralpraxis)
  • #42: Fix some InstanceVariableInClassMethod cop false positive offenses. (@viralpraxis)
  • #41: Drop support for MRI older than 2.7. (@viralpraxis)
  • #38: Fix NewThread cop detection is case of Thread.start, Thread.fork, or Thread.new with arguments. (@viralpraxis)
  • #36: Add new DirChdir cop to detect Dir.chdir calls. (@viralpraxis)