@spiffcommerce/preview 5.10.0 → 5.10.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/CHANGELOG.md +22 -0
  2. package/package.json +3 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,22 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ #### Types of changes
9
+
10
+ - `Added` for new features.
11
+ - `Changed` for changes in existing functionality.
12
+ - `Deprecated` for soon-to-be removed features.
13
+ - `Removed` for now removed features.
14
+ - `Fixed` for any bug fixes.
15
+ - `Security` in case of vulnerabilities.
16
+
17
+ ## [5.10.4] - 13-11-2024
18
+
19
+ ### Added
20
+
21
+ - SpiffCommerce3DPreviewService now exposes a static `isSupported` function. Please use this prior to instantiating the service to ensure that the service is supported on the current device.
22
+ - Changelog updates are now a requirement of the pull request process.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/preview",
3
- "version": "5.10.0",
3
+ "version": "5.10.1",
4
4
  "description": "An internal implementation of the ThreeDPreviewService interface used by Spiff Commerce",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.umd.js",
@@ -50,7 +50,8 @@
50
50
  "files": [
51
51
  "dist/index.esm.js",
52
52
  "dist/index.umd.js",
53
- "dist/index.d.mts"
53
+ "dist/index.d.mts",
54
+ "CHANGELOG.md"
54
55
  ],
55
56
  "packageManager": "yarn@3.3.0"
56
57
  }