@spiffcommerce/core 39.2.4 → 40.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.
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +208 -214
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +19 -3
- package/dist/index.mjs +478 -465
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
## [40.0.0] - 17-03-2026
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Asset versions will now only return when applicable to the relevant asset. A new interface for dynamic thumbnail and image conversions via the `getTransformedAssetURL` function. This function takes the asset or url to be transformed and allows you to configured dimensions, format and quality in one place. This function should be used in place of any code you had that searched through asset versions for thumbnails or other related assets. the svg and video formats are still required to use asset versions for the time being however.
|
|
22
|
+
|
|
17
23
|
## [39.2.0] - 13-03-2026
|
|
18
24
|
|
|
19
25
|
### Changed
|