view_component 2.80.0 → 2.81.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of view_component might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35801e5fcaab65f2242b92370229ab3b1bb687db3b36c92b74f0e515cfe258b1
4
- data.tar.gz: 4f4d7adfcbe6ec3e4af0b3cfed05d80976a9fb31dd47fa77f5a48d8def5cb489
3
+ metadata.gz: bd53c4661f35fd92f4b4cf05bfcd8af23c5a4e6bd60b13a6af492393b75290fe
4
+ data.tar.gz: def906e9d722ffeb43fc79677c6c3613de4c9f7eec63eecc4d36f0feedfe5785
5
5
  SHA512:
6
- metadata.gz: 21367aa3c40f5004a2479842db12460ea7939a189921f97dfe3ffbfba12acc327bc828a1d96be9b96816ecfc6952ce07ddf3549a858775934d83da3111bf09c4
7
- data.tar.gz: 215cc4ef718e34ce4753bbfef12aee750f73193643af09b05699dff36711f46f0f2821fc6410c639bde87576d911a019d011677bf97620eb103bac4550130439
6
+ metadata.gz: 2f6c8525b8e0b1366e283b870deebc95ae0920c6910846a658590c8665239fbdc1c6f0ef1681c95ee811ac9d7a995a86f7cf6764cb61e636a8e8de305567f2a7
7
+ data.tar.gz: 447035b6780c59291f2014856703fc73d13838d4765f7185657e6f26b4be60937b561cafac7a994a68c12c68f10f7c0956948cd4c44355f3d0b875d85738e2d4
data/docs/CHANGELOG.md CHANGED
@@ -10,6 +10,20 @@ nav_order: 5
10
10
 
11
11
  ## main
12
12
 
13
+ ## 2.81.0
14
+
15
+ * Adjust the way response objects are set on the preview controller to work around a recent change in Rails main.
16
+
17
+ *Cameron Dutro*
18
+
19
+ * Fix typo in "Generate a Stimulus controller" documentation.
20
+
21
+ *Ben Trewern*
22
+
23
+ * Modify the `render_in_view_context` test helper to forward its args to the block.
24
+
25
+ *Cameron Dutro*
26
+
13
27
  ## 2.80.0
14
28
 
15
29
  * Move system test endpoint out of the unrelated previews controller.
@@ -91,7 +91,7 @@ module ViewComponent
91
91
  end
92
92
 
93
93
  previews_controller.request.params[:path] = "#{from.preview_name}/#{name}"
94
- previews_controller.response = ActionDispatch::Response.new
94
+ previews_controller.set_response!(ActionDispatch::Response.new)
95
95
  result = previews_controller.previews
96
96
 
97
97
  @rendered_content = result
@@ -99,21 +99,23 @@ module ViewComponent
99
99
  Nokogiri::HTML.fragment(@rendered_content)
100
100
  end
101
101
 
102
- # Execute the given block in the view context. Internally sets `page` to be a
103
- # `Capybara::Node::Simple`, allowing for Capybara assertions to be used:
102
+ # Execute the given block in the view context (using `instance_exec`).
103
+ # Internally sets `page` to be a `Capybara::Node::Simple`, allowing for
104
+ # Capybara assertions to be used. All arguments are forwarded to the block.
104
105
  #
105
106
  # ```ruby
106
- # render_in_view_context do
107
- # render(MyComponent.new)
107
+ # render_in_view_context(arg1, arg2:) do |arg1, arg2:|
108
+ # render(MyComponent.new(arg1, arg2))
108
109
  # end
109
110
  #
110
111
  # assert_text("Hello, World!")
111
112
  # ```
112
- def render_in_view_context(&block)
113
+ def render_in_view_context(*args, &block)
113
114
  @page = nil
114
- @rendered_content = controller.view_context.instance_exec(&block)
115
+ @rendered_content = controller.view_context.instance_exec(*args, &block)
115
116
  Nokogiri::HTML.fragment(@rendered_content)
116
117
  end
118
+ ruby2_keywords(:render_in_view_context) if respond_to?(:ruby2_keywords, true)
117
119
 
118
120
  # @private
119
121
  def controller
@@ -3,7 +3,7 @@
3
3
  module ViewComponent
4
4
  module VERSION
5
5
  MAJOR = 2
6
- MINOR = 80
6
+ MINOR = 81
7
7
  PATCH = 0
8
8
 
9
9
  STRING = [MAJOR, MINOR, PATCH].join(".")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: view_component
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.80.0
4
+ version: 2.81.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ViewComponent Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-21 00:00:00.000000000 Z
11
+ date: 2023-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport