We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4be255b + e8ad580 commit 283daefCopy full SHA for 283daef
2 files changed
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Changelog
2
3
+## 1.3.0
4
+
5
+* Add `GEMSTASH_PROTECTED_FETCH` configuration option to enable protected
6
+ fetches which is disabled by default.
7
8
## 1.2.0
9
10
* Upgrade Ruby to v2.6.3.
app/config.yml.erb
@@ -3,7 +3,7 @@
:rubygems_url: https://rubygems.org
:puma_threads: <%= (ENV['GEMSTASH_PUMA_THREADS'] || 16).to_i %>
:bind: tcp://0.0.0.0:9292
-:protected_fetch: false
+:protected_fetch: <%= ENV['GEMSTASH_PROTECTED_FETCH'] == 'true' ? 'true' : 'false' %>
:fetch_timeout: 20
:log_file: :stdout
0 commit comments