From b6e0c9faf312d571e89a26a106aee2083628830d Mon Sep 17 00:00:00 2001 From: Grant Petersen-Speelman Date: Thu, 9 Jun 2022 07:34:06 +1000 Subject: [PATCH 1/2] config sets use_vcr_middleware to false by default --- lib/cypress_on_rails/configuration.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cypress_on_rails/configuration.rb b/lib/cypress_on_rails/configuration.rb index 28a0ca1..21a5462 100644 --- a/lib/cypress_on_rails/configuration.rb +++ b/lib/cypress_on_rails/configuration.rb @@ -17,7 +17,7 @@ def initialize def reset self.cypress_folder = 'spec/cypress' self.use_middleware = true - self.use_vcr_middleware = true + self.use_vcr_middleware = false self.logger = Logger.new(STDOUT) end From f2f5f56c922581f59ab64149fa3cf02bfb143795 Mon Sep 17 00:00:00 2001 From: Grant Petersen-Speelman Date: Thu, 9 Jun 2022 07:37:18 +1000 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bea74ab..4c68fab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [] +[Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.13.0...master + +### Fixed +* use_vcr_middleware disabled by default [PR 109](https://github.com/shakacode/cypress-on-rails/pull/109) + ## [1.13.0] [Compare]: https://github.com/shakacode/cypress-on-rails/compare/v1.12.1...v1.13.0