@spiffcommerce/core 26.5.1 → 26.5.2
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 +14 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +132 -132
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2693 -2680
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,20 @@ 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
|
+
## [26.5.2] - 20-11-2024
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Fixed issues regarding EXIF orientation calculation throwing errors under specific conditions.
|
|
22
|
+
|
|
23
|
+
## [26.5.1] - 18-11-2024
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- SVG Files uploaded to the platform will now have widths and heights specified in non-pixel values
|
|
28
|
+
stripped. This shouldn't have any effect on user uploads but will prevent the system from breaking when
|
|
29
|
+
encountering these values.
|
|
30
|
+
|
|
17
31
|
## [26.5.0] - 18-11-2024
|
|
18
32
|
|
|
19
33
|
### Added
|
package/dist/index.d.ts
CHANGED
|
@@ -739,6 +739,8 @@ declare class AssetService implements AssetManager {
|
|
|
739
739
|
* Convert a File object for an image into a FileInfo.
|
|
740
740
|
*/
|
|
741
741
|
loadImageAsFileInfo: (file: File) => Promise<FileInfo>;
|
|
742
|
+
private isRaster;
|
|
743
|
+
private postProcessFileUpload;
|
|
742
744
|
/**
|
|
743
745
|
* Handles mimeType resolution & asset creation request
|
|
744
746
|
* @param file A file info object containing data about the file and its name
|