react-on-rails-pro 16.4.0 → 16.5.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.
package/README.md CHANGED
@@ -83,14 +83,14 @@ Or use the generator for automated setup:
83
83
  rails generate react_on_rails:install --pro
84
84
  ```
85
85
 
86
- See the [full installation guide](https://www.shakacode.com/react-on-rails-pro/docs/installation/).
86
+ See the [full installation guide](https://reactonrails.com/docs/pro/installation).
87
87
 
88
88
  ## Documentation
89
89
 
90
- - [Installation Guide](https://www.shakacode.com/react-on-rails-pro/docs/installation/)
91
- - [Configuration Reference](https://www.shakacode.com/react-on-rails-pro/docs/configuration/)
92
- - [React Server Components Tutorial](https://www.shakacode.com/react-on-rails-pro/docs/react-server-components/tutorial/)
93
- - [React on Rails Pro Overview](https://www.shakacode.com/react-on-rails-pro/)
90
+ - [Installation Guide](https://reactonrails.com/docs/pro/installation)
91
+ - [Configuration Reference](https://reactonrails.com/docs/configuration/configuration-pro)
92
+ - [React Server Components Tutorial](https://reactonrails.com/docs/pro/react-server-components/tutorial)
93
+ - [React on Rails Pro Overview](https://pro.reactonrails.com/)
94
94
 
95
95
  ## License
96
96
 
@@ -22,7 +22,7 @@ import * as StoreRegistry from "./StoreRegistry.js";
22
22
  import * as ComponentRegistry from "./ComponentRegistry.js";
23
23
  const REACT_ON_RAILS_STORE_ATTRIBUTE = 'data-js-react-on-rails-store';
24
24
  const IMMEDIATE_HYDRATION_PRO_WARNING = "[REACT ON RAILS] The 'immediate_hydration' feature requires the React on Rails Pro gem to be installed on the server. " +
25
- 'Please visit https://www.shakacode.com/react-on-rails-pro/ for installation details.';
25
+ 'Please visit https://pro.reactonrails.com/ for installation details.';
26
26
  async function delegateToRenderer(componentObj, props, railsContext, domNodeId, trace) {
27
27
  const { name, component, isRenderer } = componentObj;
28
28
  if (isRenderer) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails-pro",
3
- "version": "16.4.0",
3
+ "version": "16.5.1",
4
4
  "description": "React on Rails Pro package with React Server Components support",
5
5
  "main": "lib/ReactOnRails.full.js",
6
6
  "type": "module",
@@ -47,7 +47,7 @@
47
47
  "./ServerComponentFetchError": "./lib/ServerComponentFetchError.js"
48
48
  },
49
49
  "dependencies": {
50
- "react-on-rails": "16.4.0"
50
+ "react-on-rails": "16.5.1"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "react": ">= 16",