Skip to content

Commit 7ab779f

Browse files
authored
Fix CI: require logger before active_record (#277)
See rails/rails#54264. ActiveSupport required `logger` implicitly through `concurrent-ruby`, which removed its own `logger` dependency in 1.3.5.
1 parent b84b9d1 commit 7ab779f

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
### Other changes
6+
7+
- Fix `logger` dependency issues in CI. [#277](https://github.com/splitwise/super_diff/pull/277)
8+
59
## 0.15.0 - 2025-01-06
610

711
### Features

spec/spec_helper.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#---
2424

2525
begin
26+
require 'logger'
2627
require 'active_record'
2728

2829
active_record_available = true

0 commit comments

Comments
 (0)