Releases: strapi/sdk-plugin
v6.1.0
Minor Changes
- #116
b844cc1Thanks @Leptopoda! - remove maximum node version from engines to allow node 24
Patch Changes
-
#124
eb33a92Thanks @boazpoolman! - chore: update dependencies -
#121
b8d289bThanks @boazpoolman! - fix type declarations not being generated for custom exportsPreviously, only
./strapi-adminand./strapi-serverexports would produce.d.tsfiles when atypesfield was defined inpackage.json. Custom exports silently skipped type generation because no per-bundle tsconfig existed for them.The build now falls back to the project root
tsconfig.build.jsonortsconfig.jsonwhen no per-bundle tsconfig is found, so any export with atypesfield will correctly emit type declarations. -
#117
6a61df0Thanks @jhoward1994! - include all source files for type declaration -
#123
c8bbba9Thanks @jhoward1994! - Pin generated plugin devDependenciestypescriptand@strapi/typescript-utilsto^5so install succeeds with Strapi 5 (avoids resolving TypeScript 6, which conflicts withreact-intl@6peerOptional range).
v6.0.1
Patch Changes
- #112
d0b76e3Thanks @jhoward1994! - lock version of react-intl to a strapi compatible major
v6.0.0
Major Changes
-
#103
cce52a6Thanks @jhoward1994! - ### Breaking Changes- Removed
@strapi/pack-updependency - build system now uses Vite v6 directly packup.config.tsis no longer used (can be safely deleted)- Sourcemaps now default to
false(use--sourcemapflag to enable)
Migration
- Delete
packup.config.tsfrom your plugin (it's no longer read) - If you need sourcemaps, add
--sourcemapto your build command
Why This Change?
- Resolves Vite security vulnerability (CVE) that existed in pack-up's dependencies
- Simplifies the build system with direct Vite configuration
- Reduces maintenance overhead by removing the pack-up abstraction layer
- Removed
v5.4.0
Minor Changes
- #97
bb1d25cThanks @boazpoolman! - refactor: update the routes folder format for the init command
Patch Changes
- #104
d5ccf04Thanks @jhoward1994! - update @strapi/pack-up to 5.1.1 - resolving vite vulnerability
v5.3.2
Patch Changes
- #72
9747836Thanks @boazpoolman! - Fix the routes config for it to be properly registered
v5.3.1
Patch Changes
- #81
58bf397Thanks @innerdvations! - fix: allow any file extension in exports string
v5.3.0
Minor Changes
- #70
3a01652Thanks @jhoward1994! - make react deps compatible with design system
v5.2.8
Patch Changes
- #66
2aa1e40Thanks @Link2Twenty! - fix: registerTrads function
v5.2.7
Patch Changes
- #54
fc7192aThanks @alexandrebodin! - chore: use esm for server code by default