react_on_rails_pro 16.2.0 → 16.2.1

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: aa36f2c2ebdd0fd2c8b42a44ea5809bf6b406ad5dfefe82f3f87643fd361368c
4
- data.tar.gz: 6d0c478dea603606fe530d2e6dcec612240263dc9bc32e001d166c38f86932be
3
+ metadata.gz: c44a87b4e8401b0cdb0c0b8740b014635e337fc6a4c39b045cfd308dae75f027
4
+ data.tar.gz: 73528efb629e2be5b53fba3a26899117b4c31cbe8a001081c47528a059117198
5
5
  SHA512:
6
- metadata.gz: 33992470f693ecdb68975cbc2bec28c2ae04f059c9e4af5e9b6debdad0a9d64894df6642baf80bd765be4d46f8e526084ab516541c26ba6c5b0bb6281d570d49
7
- data.tar.gz: '08c66853fd310d4d961e2c8045a701404c67fb6f361c6d3a7c00b887c3c619c88bf3b563604aacf79bd1850f596d25a9c74403c0a7337dc788df60ef19c0aa3f'
6
+ metadata.gz: '0483f856ff441114ecf28309e76d6f7478356122e93e77eba41bc7de1a30bc328392e9434b1e67b33c42760e584506cbda6c2996990d674c67e158b5d5080d45'
7
+ data.tar.gz: 28f79e61ec4caf549487fdda8ac2884704bf4e9fa4eb7deff073ac454044059a3a53bd129f8cb5c9a96bcabc807fb8339fdc6550b9cc51711555593fe32c08e0
data/.prettierignore CHANGED
@@ -3,7 +3,7 @@ node_modules
3
3
  **/tmp
4
4
  **/public
5
5
  **/package.json
6
- vendor/bundle
6
+ **/vendor
7
7
  **/.node-renderer-bundles
8
8
  spec/dummy/.yalc/
9
9
 
data/CHANGELOG.md CHANGED
@@ -34,6 +34,7 @@ Changes since the last non-beta release.
34
34
  - Added `cached_stream_react_component` helper method, similar to `cached_react_component` but for streamed components.
35
35
  - **License Validation System**: Implemented comprehensive JWT-based license validation with offline verification using RSA-256 signatures. License validation occurs at startup in both Ruby and Node.js environments. Supports required fields (`sub`, `iat`, `exp`) and optional fields (`plan`, `organization`, `iss`). FREE evaluation licenses are available for 3 months at [shakacode.com/react-on-rails-pro](https://shakacode.com/react-on-rails-pro). [PR #1857](https://github.com/shakacode/react_on_rails/pull/1857) by [AbanoubGhadban](https://github.com/AbanoubGhadban).
36
36
  - **Pro-Specific Configurations Moved from Open-Source**: The following React Server Components (RSC) configurations are now exclusively in the Pro gem and should be configured in `ReactOnRailsPro.configure`:
37
+
37
38
  - `rsc_bundle_js_file` - Path to the RSC bundle file
38
39
  - `react_server_client_manifest_file` - Path to the React server client manifest
39
40
  - `react_client_manifest_file` - Path to the React client manifest
@@ -41,6 +42,7 @@ Changes since the last non-beta release.
41
42
  These configurations were previously available in the open-source `ReactOnRails.configure` block but have been moved to Pro where they belong since RSC is a Pro-only feature.
42
43
 
43
44
  - **Streaming View Helpers Now Pro-Exclusive**: The following view helpers are now defined exclusively in the Pro gem:
45
+
44
46
  - `stream_react_component` - Progressive SSR using React 18+ streaming
45
47
  - `rsc_payload_react_component` - RSC payload rendering
46
48
 
@@ -119,6 +121,7 @@ Changes since the last non-beta release.
119
121
  ### Changed
120
122
 
121
123
  - [PR 511](https://github.com/shakacode/react_on_rails_pro/pull/511) by [Romex91](https://github.com/Romex91)
124
+
122
125
  - Set `bodyLimit` to 100 MB by default to fix error 413.
123
126
  - Add `fastifyServerOptions` to the config
124
127
 
@@ -265,6 +268,7 @@ React 18 is now supported! Check the [React on Rails CHANGELOG.md](https://githu
265
268
  ### Added
266
269
 
267
270
  - [PR 220](https://github.com/shakacode/react_on_rails_pro/pull/220) by [justin808](https://github.com/justin808).
271
+
268
272
  - **Add `ssr_timeout` configuration** so the Rails server will not wait more than this many seconds for a SSR request to return once issued.
269
273
  - Change default for `renderer_use_fallback_exec_js` to `false`.
270
274
  - Change default log level to info.
@@ -23,7 +23,6 @@ gem "pg"
23
23
  # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
24
24
  gem "turbolinks"
25
25
  gem "sqlite3", "~> 1.4"
26
- gem "uglifier"
27
26
  gem "jquery-rails"
28
27
  gem "sprockets"
29
28
  gem "sass-rails"
data/Gemfile.lock CHANGED
@@ -9,7 +9,7 @@ GIT
9
9
  PATH
10
10
  remote: ..
11
11
  specs:
12
- react_on_rails (16.2.0)
12
+ react_on_rails (16.2.1)
13
13
  addressable
14
14
  connection_pool
15
15
  execjs (~> 2.5)
@@ -20,7 +20,7 @@ PATH
20
20
  PATH
21
21
  remote: .
22
22
  specs:
23
- react_on_rails_pro (16.2.0)
23
+ react_on_rails_pro (16.2.1)
24
24
  addressable
25
25
  async (>= 2.6)
26
26
  connection_pool
@@ -29,7 +29,7 @@ PATH
29
29
  httpx (~> 1.5)
30
30
  jwt (~> 2.7)
31
31
  rainbow
32
- react_on_rails (= 16.2.0)
32
+ react_on_rails (= 16.2.1)
33
33
 
34
34
  GEM
35
35
  remote: https://rubygems.org/
@@ -458,8 +458,6 @@ GEM
458
458
  turbolinks-source (5.2.0)
459
459
  tzinfo (2.0.6)
460
460
  concurrent-ruby (~> 1.0)
461
- uglifier (4.2.0)
462
- execjs (>= 0.3.0, < 3)
463
461
  unicode-display_width (2.6.0)
464
462
  uri (1.0.3)
465
463
  useragent (0.16.11)
@@ -538,7 +536,6 @@ DEPENDENCIES
538
536
  sprockets
539
537
  sqlite3 (~> 1.4)
540
538
  turbolinks
541
- uglifier
542
539
  web-console
543
540
  webdrivers (= 5.3.0)
544
541
  webmock
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ReactOnRailsPro
4
- VERSION = "16.2.0"
4
+ VERSION = "16.2.1"
5
5
  PROTOCOL_VERSION = "2.0.0"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: react_on_rails_pro
3
3
  version: !ruby/object:Gem::Version
4
- version: 16.2.0
4
+ version: 16.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-01-15 00:00:00.000000000 Z
11
+ date: 2026-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -128,14 +128,14 @@ dependencies:
128
128
  requirements:
129
129
  - - '='
130
130
  - !ruby/object:Gem::Version
131
- version: 16.2.0
131
+ version: 16.2.1
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - '='
137
137
  - !ruby/object:Gem::Version
138
- version: 16.2.0
138
+ version: 16.2.1
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: bundler
141
141
  requirement: !ruby/object:Gem::Requirement