Add a fast failure mode to
::ActiveSupport::ContinuousIntegrationthat stops the rest of the run after a step fails. Invoke by runningbin/ci --fail-fastorbin/ci -f.Dennis Paagman
Implement LocalCache strategy on
::ActiveSupport::Cache::MemoryStore. The memory store needs to respond to the same interface as other cache stores (e.g.ActiveSupport::NullStore).Mikey Gough
Add a detailed failure summary to
::ActiveSupport::ContinuousIntegration.Mike Dalessio
Introduce
::ActiveSupport::EventReporter::LogSubscriberstructured event logging.class MyLogSubscriber < ActiveSupport::EventReporter::LogSubscriber self.namespace = "test" def something(event) info { "Event #{event[:name]} emitted." } end endGannon McGibbon
Please check [8-1-stable]) for previous changes.