@sp-days-framework/docusaurus-plugin-slidev 1.1.1-beta1 → 1.1.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.
Files changed (2) hide show
  1. package/docs/changelog.mdx +8 -18
  2. package/package.json +6 -4
@@ -19,27 +19,12 @@ All packages within `@sp-days-framework` use the same version number. In some ca
19
19
 
20
20
  ---
21
21
 
22
- ## Version 1.1.1-beta1 ![beta](https://img.shields.io/badge/release-beta-yellow)
22
+ ## Version 1.1.1 ![Release](https://img.shields.io/badge/release-production-blue)
23
23
 
24
- Asset handling improvements for Slidev presentations
24
+ Asset handling support and security updates
25
25
 
26
26
  <details>
27
- <summary><strong>Beta Details</strong> (2026 January 12)</summary>
28
-
29
- ### New in Beta 1
30
-
31
- - Implemented comprehensive asset handling for Slidev presentations, enabling better resource management for slides and embedded media
32
-
33
- </details>
34
-
35
- ---
36
-
37
- ## Version 1.1.1-beta1 ![Beta](https://img.shields.io/badge/release-beta-orange)
38
-
39
- Asset handling support for presentations
40
-
41
- <details open>
42
- <summary><strong>Details</strong> (2026 January 12)</summary>
27
+ <summary><strong>Details</strong> (2026 February 09)</summary>
43
28
 
44
29
  ### New Features
45
30
 
@@ -48,6 +33,11 @@ Asset handling support for presentations
48
33
  - **Asset Filtering**: New plugin options `assetExcludePatterns`, `assetIncludePatterns`, and `assetCopyRecursive` for fine-grained control over asset copying behavior
49
34
  - **Large File Warning**: Warns when more than 100 files are copied for a single presentation, suggesting use of explicit assets
50
35
 
36
+ ### Improvements
37
+
38
+ - **Security**: Added `lodash-es` and `chevrotain` overrides to fix prototype pollution vulnerability (CVE in lodash-es < 4.17.23)
39
+ - **Dependencies**: Upgraded all dependencies to latest versions — Slidev 52.11.5, React 19.2.4, @types/node 24.10.12, and more
40
+
51
41
  ### Important Notes
52
42
 
53
43
  - **Relative Path Syntax**: Always use `./` prefix for relative asset paths (e.g., `./image.png` not `image.png`). Slidev requires explicit relative paths to resolve assets correctly
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sp-days-framework/docusaurus-plugin-slidev",
3
- "version": "1.1.1-beta1",
3
+ "version": "1.1.1",
4
4
  "description": "A Docusaurus plugin to integrate Slidev presentations into your Docusaurus site.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -47,8 +47,8 @@
47
47
  "copy:watch": "node ./copyUntypedFiles.js --watch"
48
48
  },
49
49
  "dependencies": {
50
- "@slidev/cli": "^52.9.1",
51
- "@slidev/types": "^52.9.1",
50
+ "@slidev/cli": "^52.11.5",
51
+ "@slidev/types": "^52.11.5",
52
52
  "gray-matter": "^4.0.3",
53
53
  "unified": "^11.0.5"
54
54
  },
@@ -75,7 +75,9 @@
75
75
  "react-dom": "^18.0.0 || ^19.0.0"
76
76
  },
77
77
  "overrides": {
78
- "dompurify": "^3.2.4"
78
+ "dompurify": "^3.2.4",
79
+ "lodash-es": ">=4.17.23",
80
+ "chevrotain": ">=11.1.1"
79
81
  },
80
82
  "engines": {
81
83
  "node": ">=18.0"