You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: release workflow require path + bump to v1.12.0
Fix: ruby -rlib/... doesn't work — use -I lib -r capybara/... instead.
Bump version to 1.12.0 for release.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/UPGRADING.md
+23-23Lines changed: 23 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
-
# Upgrading to v1.11.0
1
+
# Upgrading to v1.12.0
2
2
3
3
## Overview
4
4
5
-
Version 1.11.0 is a **minor release** with new features, performance improvements, and default behavior changes. This guide will help you upgrade smoothly.
5
+
Version 1.12.0 is a **minor release** with new features, performance improvements, and default behavior changes. This guide will help you upgrade smoothly.
6
6
7
7
**Estimated upgrade time:** 5-15 minutes depending on your setup
8
8
@@ -14,15 +14,15 @@ For **most users**, upgrading is as simple as:
14
14
15
15
```ruby
16
16
# In your Gemfile
17
-
gem 'capybara-screenshot-diff', '~> 1.11.0'
17
+
gem 'capybara-screenshot-diff', '~> 1.12.0'
18
18
```
19
19
20
20
```bash
21
21
bundle update capybara-screenshot-diff
22
22
bundle exec rake test# Verify tests still pass
23
23
```
24
24
25
-
**That's it!** The zero-config setup still works out of the box. Your existing screenshot comparisons will continue to work with v1.11.0.
25
+
**That's it!** The zero-config setup still works out of the box. Your existing screenshot comparisons will continue to work with v1.12.0.
26
26
27
27
---
28
28
@@ -34,8 +34,8 @@ Three settings now have different defaults. This is the most likely source of un
34
34
35
35
#### `blur_active_element` — Now defaults to `true`
36
36
37
-
**Before (v1.10.x):** Cursor blinking could delay screenshots
38
-
**After (v1.11.0):** Cursor is automatically hidden
37
+
**Before (v1.11.x):** Cursor blinking could delay screenshots
38
+
**After (v1.12.0):** Cursor is automatically hidden
39
39
40
40
**Action required:** Only if you want the old behavior
0 commit comments