@dotcms/react 26.8.10-1 → 26.8.10-1-next.2511

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.
Files changed (2) hide show
  1. package/README.md +26 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -34,11 +34,33 @@ The `@dotcms/react` SDK is the DotCMS official React library. It empowers React
34
34
 
35
35
  ### Get a dotCMS Environment
36
36
 
37
- #### Version Compatibility
37
+ #### Which SDK Version Should I Use?
38
38
 
39
- - **Recommended**: dotCMS Evergreen
40
- - **Minimum**: dotCMS v25.05
41
- - **Best Experience**: Latest Evergreen release
39
+ dotCMS SDKs are published in lockstep with dotCMS itself: every `@dotcms/*` package ships
40
+ at the **exact same version number** as the dotCMS release it was built for (e.g. dotCMS
41
+ `26.7.14-1` `@dotcms/client@26.7.14-1`, `@dotcms/react@26.7.14-1`, and so on).
42
+
43
+ **Simple rule of thumb: use the SDK version that matches your dotCMS instance's version.**
44
+
45
+ You don't have to upgrade the SDK every time dotCMS releases a new version (or vice versa).
46
+ Most releases don't change anything the SDKs rely on, so an older SDK usually keeps working
47
+ fine against a newer dotCMS instance. Occasionally, though, a release does include a real
48
+ breaking change — and if your SDK is older than that point, it will stop working correctly.
49
+
50
+ You don't need to track this yourself: your dotCMS instance always knows the oldest SDK
51
+ version it still supports, and the SDK checks itself against it automatically. If you're
52
+ using an SDK that's too old, you'll see a clear warning in your console telling you to
53
+ upgrade.
54
+
55
+ **Recommendation:** pin your SDKs to the same version as your dotCMS instance, and only bump
56
+ them when you upgrade dotCMS — or when the console tells you to.
57
+
58
+ > **On an LTS release?** LTS releases don't currently get their own matching SDK version.
59
+ > Until that's addressed, use the SDK version published for the closest regular release at
60
+ > or before your LTS version.
61
+ >
62
+ > Want more background on how dotCMS releases and support windows work? See
63
+ > [Release & Support Lifecycle](https://dev.dotcms.com/docs/release-support-lifecycle).
42
64
 
43
65
  #### Environment Setup
44
66
 
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@dotcms/react",
3
- "version": "26.08.10-01",
3
+ "version": "26.8.10-1-next.2511",
4
4
  "peerDependencies": {
5
5
  "react": ">=18",
6
6
  "react-dom": ">=18"
7
7
  },
8
8
  "dependencies": {
9
- "@dotcms/uve": "26.08.10-01",
10
- "@dotcms/client": "26.08.10-01",
9
+ "@dotcms/uve": "26.8.10-1-next.2511",
10
+ "@dotcms/client": "26.8.10-1-next.2511",
11
11
  "@tinymce/tinymce-react": "6.2.1"
12
12
  },
13
13
  "devDependencies": {