Skip to content

Commit 01e5cf1

Browse files
author
Ross Barnie
committedMay 11, 2023
Lock better_errors gem to working versions
better_errors version 2.10.0 has a known bug BetterErrors/better_errors#516 whereby there is a call to `require 'sassc'` without the gem specifiying `sassc` as a dependency, so is not installed by dependent projects. The impact on devdocs is that the application cannot start in development environment without adding `sassc` as a dependency.
1 parent 3baf905 commit 01e5cf1

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed
 

‎Gemfile.lock

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ GEM
66
i18n (>= 1.6, < 2)
77
minitest (>= 5.1)
88
tzinfo (~> 2.0)
9-
better_errors (2.10.0)
9+
better_errors (2.9.1)
10+
coderay (>= 1.0.0)
1011
erubi (>= 1.0.0)
1112
rack (>= 0.9.0)
12-
rouge (>= 1.0.0)
1313
browser (5.3.1)
1414
byebug (11.1.3)
1515
chunky_png (1.4.0)
@@ -82,7 +82,6 @@ GEM
8282
ffi (~> 1.0)
8383
redcarpet (3.6.0)
8484
rexml (3.2.5)
85-
rouge (1.11.1)
8685
rr (3.1.0)
8786
rss (0.2.9)
8887
rexml

‎renovate.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
{
2-
"extends": ["github>freecodecamp/renovate-config"]
2+
"extends": ["github>freecodecamp/renovate-config"],
3+
"packageRules": [
4+
{
5+
"matchPackageNames": ["better_errors"],
6+
"allowedVersions": "!/^2\\.10\\.0$/"
7+
}
8+
]
39
}

0 commit comments

Comments
 (0)
Please sign in to comment.