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 +4 -4
- data/.prettierignore +1 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.development_dependencies +0 -1
- data/Gemfile.lock +3 -6
- data/lib/react_on_rails_pro/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c44a87b4e8401b0cdb0c0b8740b014635e337fc6a4c39b045cfd308dae75f027
|
|
4
|
+
data.tar.gz: 73528efb629e2be5b53fba3a26899117b4c31cbe8a001081c47528a059117198
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0483f856ff441114ecf28309e76d6f7478356122e93e77eba41bc7de1a30bc328392e9434b1e67b33c42760e584506cbda6c2996990d674c67e158b5d5080d45'
|
|
7
|
+
data.tar.gz: 28f79e61ec4caf549487fdda8ac2884704bf4e9fa4eb7deff073ac454044059a3a53bd129f8cb5c9a96bcabc807fb8339fdc6550b9cc51711555593fe32c08e0
|
data/.prettierignore
CHANGED
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.
|
data/Gemfile.lock
CHANGED
|
@@ -9,7 +9,7 @@ GIT
|
|
|
9
9
|
PATH
|
|
10
10
|
remote: ..
|
|
11
11
|
specs:
|
|
12
|
-
react_on_rails (16.2.
|
|
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.
|
|
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.
|
|
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
|
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.
|
|
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-
|
|
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.
|
|
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.
|
|
138
|
+
version: 16.2.1
|
|
139
139
|
- !ruby/object:Gem::Dependency
|
|
140
140
|
name: bundler
|
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|