Skip to content

Commit bb84ac1

Browse files
authored
Merge pull request #2549 from ViewComponent/release-4-3-0
release 4.3.0
2 parents 39b93bd + c71b2fc commit bb84ac1

File tree

9 files changed

+19
-13
lines changed

9 files changed

+19
-13
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
view_component (4.2.0)
4+
view_component (4.3.0)
55
actionview (>= 7.1.0)
66
activesupport (>= 7.1.0)
77
concurrent-ruby (~> 1)
@@ -608,7 +608,7 @@ CHECKSUMS
608608
unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
609609
uri (1.1.1) sha256=379fa58d27ffb1387eaada68c749d1426738bd0f654d812fcc07e7568f5c57c6
610610
useragent (0.16.11) sha256=700e6413ad4bb954bb63547fa098dddf7b0ebe75b40cc6f93b8d54255b173844
611-
view_component (4.2.0)
611+
view_component (4.3.0)
612612
warning (1.5.0) sha256=0f12c49fea0c06757778eefdcc7771e4fd99308901e3d55c504d87afdd718c53
613613
webrick (1.9.2) sha256=beb4a15fc474defed24a3bda4ffd88a490d517c9e4e6118c3edce59e45864131
614614
websocket (1.2.11) sha256=b7e7a74e2410b5e85c25858b26b3322f29161e300935f70a0e0d3c35e0462737

docs/CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ nav_order: 6
1010

1111
## main
1212

13+
## 4.3.0
14+
15+
* Fix load order issues for 3rd-party template handlers.
16+
17+
*Cameron Dutro*
18+
19+
* Fix segfault when Ruby coverage is enabled with Rails 8.1 ERB templates.
20+
21+
*George Holborn*
22+
1323
* Automatically merge dependabot PRs.
1424

1525
*Joel Hawksley*
@@ -18,10 +28,6 @@ nav_order: 6
1828

1929
*Joel Hawksley*
2030

21-
* Fix load order issues for 3rd-party template handlers.
22-
23-
*Cameron Dutro*
24-
2531
## 4.2.0
2632

2733
* Fix translation scope resolution in deeply nested component blocks (3+ levels). Translations called inside deeply nested slot blocks using `renders_many`/`renders_one` were incorrectly resolving to an intermediate component's scope instead of the partial's scope where the block was defined. The fix captures the virtual path at block definition time and restores it during block execution, ensuring translations always resolve relative to where the block was created regardless of nesting depth.

docs/_data/library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 4.2.0
1+
version: 4.3.0

gemfiles/rails_7.1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
view_component (4.2.0)
4+
view_component (4.3.0)
55
actionview (>= 7.1.0)
66
activesupport (>= 7.1.0)
77
concurrent-ruby (~> 1)

gemfiles/rails_7.2.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
view_component (4.2.0)
4+
view_component (4.3.0)
55
actionview (>= 7.1.0)
66
activesupport (>= 7.1.0)
77
concurrent-ruby (~> 1)

gemfiles/rails_8.0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
view_component (4.2.0)
4+
view_component (4.3.0)
55
actionview (>= 7.1.0)
66
activesupport (>= 7.1.0)
77
concurrent-ruby (~> 1)

gemfiles/rails_8.1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
view_component (4.2.0)
4+
view_component (4.3.0)
55
actionview (>= 7.1.0)
66
activesupport (>= 7.1.0)
77
concurrent-ruby (~> 1)

gemfiles/rails_main.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ GIT
109109
PATH
110110
remote: ..
111111
specs:
112-
view_component (4.2.0)
112+
view_component (4.3.0)
113113
actionview (>= 7.1.0)
114114
activesupport (>= 7.1.0)
115115
concurrent-ruby (~> 1)

lib/view_component/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module ViewComponent
44
module VERSION
55
MAJOR = 4
6-
MINOR = 2
6+
MINOR = 3
77
PATCH = 0
88
PRE = nil
99

0 commit comments

Comments
 (0)