@object-ui/plugin-markdown 2.0.0 → 3.0.0

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @object-ui/plugin-markdown@2.0.0 build /home/runner/work/objectui/objectui/packages/plugin-markdown
2
+ > @object-ui/plugin-markdown@3.0.0 build /home/runner/work/objectui/objectui/packages/plugin-markdown
3
3
  > vite build
4
4
 
5
5
  vite v7.3.1 building client environment for production...
@@ -12,7 +12,7 @@ computing gzip size...
12
12
  dist/index.js  0.19 kB │ gzip: 0.15 kB
13
13
  dist/index-CrmE78vF.js  9.86 kB │ gzip: 3.22 kB
14
14
  dist/MarkdownImpl-DufQ-eRU.js 262.84 kB │ gzip: 66.08 kB
15
- [vite:dts] Declaration files built in 19104ms.
15
+ [vite:dts] Declaration files built in 17395ms.
16
16
  
17
17
  dist/index.umd.cjs 170.20 kB │ gzip: 52.58 kB
18
- ✓ built in 29.01s
18
+ ✓ built in 26.63s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @object-ui/plugin-markdown
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
8
+ - Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
9
+ - Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
10
+ - Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
11
+ - Added gzip + brotli pre-compression via vite-plugin-compression2
12
+ - Lazy MSW loading for build:server (~150 KB gzip saved)
13
+ - Added bundle analysis with rollup-plugin-visualizer
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [87979c3]
18
+ - @object-ui/types@3.0.0
19
+ - @object-ui/core@3.0.0
20
+ - @object-ui/react@3.0.0
21
+ - @object-ui/components@3.0.0
22
+
3
23
  ## 2.0.0
4
24
 
5
25
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@object-ui/plugin-markdown",
3
- "version": "2.0.0",
3
+ "version": "3.0.0",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Markdown rendering plugin for Object UI, powered by react-markdown",
@@ -25,21 +25,21 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "react-markdown": "^10.1.0",
28
- "remark-gfm": "^4.0.1",
29
28
  "rehype-sanitize": "^6.0.0",
30
- "@object-ui/components": "2.0.0",
31
- "@object-ui/core": "2.0.0",
32
- "@object-ui/react": "2.0.0",
33
- "@object-ui/types": "2.0.0"
29
+ "remark-gfm": "^4.0.1",
30
+ "@object-ui/components": "3.0.0",
31
+ "@object-ui/core": "3.0.0",
32
+ "@object-ui/react": "3.0.0",
33
+ "@object-ui/types": "3.0.0"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "react": "^18.0.0 || ^19.0.0",
37
37
  "react-dom": "^18.0.0 || ^19.0.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@types/react": "^19.2.13",
41
- "@types/react-dom": "^19.2.3",
42
- "@vitejs/plugin-react": "^5.1.3",
40
+ "@types/react": "19.2.13",
41
+ "@types/react-dom": "19.2.3",
42
+ "@vitejs/plugin-react": "^5.1.4",
43
43
  "typescript": "^5.9.3",
44
44
  "vite": "^7.3.1",
45
45
  "vite-plugin-dts": "^4.5.4"