vite_rails 3.0.14 → 3.0.15

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 359c2358de873924f146f74686bf52baf0a3f5ca1b50482f65ca12909d0e2adf
4
- data.tar.gz: 99043f619d26034d787054fb59e99067aab619fa074b342a608af3ad8899399a
3
+ metadata.gz: d0826edafe9697708d9878f604b86a8abccabfcc3dfa0081cd2b0cc63c78bc83
4
+ data.tar.gz: 74678206866f8d760ee7e3f3058f32ffa084b3bbfb090c0109ffa0420c225340
5
5
  SHA512:
6
- metadata.gz: d37257a70e038ec7f3dc69970aca2989ab881f75a35a0bf7ef4a5c3261eeadbfb5097d5101ebdf95d9fa42a6e58983380c466aa02bf02fd8b68ac9533b5bef0f
7
- data.tar.gz: c75f1377b5382c6c041211b9ed28ba60d3141b06c08e13aac04e82fb2002bbe9fc349b70545f3cb33400d172cb08ef5859af1dc0ba7ab6bfc7ce095a79bbe94d
6
+ metadata.gz: 5c15982cec0cf83a71f481fe4a7c3d3d5b461216c2daa32409f9e3e2b09c20df6ee9f7952b9912aa251c65741c1593d1d98184059bccc3b87a8d42424ca482b7
7
+ data.tar.gz: d30bf47565e7fa8d7fd035072fc7315b3f1d668e3cbe3ff072b1de00a47b22885a931b0ad33ef15bf8a2b4c225c290d1cdd8a65e0484a42ccd2d012fe53bda07
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## [3.0.15](https://github.com/ElMassimo/vite_ruby/compare/vite_rails@3.0.14...vite_rails@3.0.15) (2023-06-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * add nonce by default to react refresh tag (close [#249](https://github.com/ElMassimo/vite_ruby/issues/249)) ([a31f0a9](https://github.com/ElMassimo/vite_ruby/commit/a31f0a97588568a964b52005beee63217c7bcfa9))
7
+ * Use javascript_tag helper for vite_react_refresh_tag ([#372](https://github.com/ElMassimo/vite_ruby/issues/372)) ([238c6bd](https://github.com/ElMassimo/vite_ruby/commit/238c6bd211c0fafaa6170f0bdd631a0f6e41d992)), closes [#249](https://github.com/ElMassimo/vite_ruby/issues/249)
8
+
9
+
10
+
1
11
  ## [3.0.14](https://github.com/ElMassimo/vite_ruby/compare/vite_rails@3.0.13...vite_rails@3.0.14) (2023-02-08)
2
12
 
3
13
 
@@ -10,8 +10,12 @@ module ViteRails::TagHelpers
10
10
  end
11
11
 
12
12
  # Public: Renders a script tag to enable HMR with React Refresh.
13
- def vite_react_refresh_tag
14
- vite_manifest.react_refresh_preamble&.html_safe
13
+ def vite_react_refresh_tag(**options)
14
+ return unless react_preamble_code = vite_manifest.react_preamble_code
15
+
16
+ options[:nonce] = true if Rails::VERSION::MAJOR >= 6 && !options.key?(:nonce)
17
+
18
+ javascript_tag(react_preamble_code.html_safe, type: :module, **options)
15
19
  end
16
20
 
17
21
  # Public: Resolves the path for the specified Vite asset.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ViteRails
4
- VERSION = '3.0.14'
4
+ VERSION = '3.0.15'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vite_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.14
4
+ version: 3.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Máximo Mussini
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-08 00:00:00.000000000 Z
11
+ date: 2023-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -88,8 +88,8 @@ homepage: https://github.com/ElMassimo/vite_ruby
88
88
  licenses:
89
89
  - MIT
90
90
  metadata:
91
- source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_rails@3.0.14/vite_rails
92
- changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_rails@3.0.14/vite_rails/CHANGELOG.md
91
+ source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_rails@3.0.15/vite_rails
92
+ changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_rails@3.0.15/vite_rails/CHANGELOG.md
93
93
  post_install_message:
94
94
  rdoc_options: []
95
95
  require_paths: