@getspot/spot-widget-react 3.1.6 → 3.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ # [3.2.0](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-react@3.1.7...@getspot/spot-widget-react@3.2.0) (2025-11-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add descriptions to packages and sync git in CI ([b71d037](https://gitlab.com/getspot/spot-widget/commit/b71d0372ae90c00f452fa00d0dd2ee35d075e040))
7
+ * **ci:** build core package before dependent releases to ensure types are available ([8ce1d02](https://gitlab.com/getspot/spot-widget/commit/8ce1d02e91883852f1136cf4f39a187b30ed485e))
8
+ * **ci:** reinstall dependencies after git reset to restore workspace links ([b2cf73a](https://gitlab.com/getspot/spot-widget/commit/b2cf73a45b042ebc7a167b874a3d1c15feee5b7b))
9
+ * **ci:** run dependent package releases sequentially to avoid git sync issues ([a353573](https://gitlab.com/getspot/spot-widget/commit/a353573f363740f146fb67c61424fbe8c74fdbd1))
10
+ * **ci:** simplify dependent release sync ([8e85ef3](https://gitlab.com/getspot/spot-widget/commit/8e85ef3523ffa824d19eb9a50770db9d8ef86fab))
11
+ * **ci:** use git reset for dependent package sync ([4ae461f](https://gitlab.com/getspot/spot-widget/commit/4ae461f56ade042d7df3e98ef2b39dd50648eaf9))
12
+ * **release:** remove multi-semantic-release ([e8dd5bb](https://gitlab.com/getspot/spot-widget/commit/e8dd5bb2def192e6803d5a7ed20655580dc4b4f9))
13
+ * **release:** use npm package to handle updating the package.json version ([31e51f5](https://gitlab.com/getspot/spot-widget/commit/31e51f5b5bd52bf9461555811ae5e1bb762bd688))
14
+
15
+
16
+ ### Features
17
+
18
+ * **vue,vue2:** add descriptions to trigger semantic-release ([8e66e24](https://gitlab.com/getspot/spot-widget/commit/8e66e246f4327488981b391cf725e85c40c47920))
19
+
20
+ ## @getspot/spot-widget-react [3.1.7](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-react@3.1.6...@getspot/spot-widget-react@3.1.7) (2025-11-19)
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * **core:** add eventid support ([0414be5](https://gitlab.com/getspot/spot-widget/commit/0414be5f7f30a968fe9c3fd94f14d37d5ef8849f))
26
+ * **release:** add no-git-checks flag to release command ([2655b37](https://gitlab.com/getspot/spot-widget/commit/2655b372649a09642e20d2803c53d696fd434ea4))
27
+
1
28
  ## @getspot/spot-widget-react [3.1.6](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-react@3.1.5...@getspot/spot-widget-react@3.1.6) (2025-11-14)
2
29
 
3
30
 
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@getspot/spot-widget-react",
3
- "version": "3.1.6",
3
+ "version": "3.2.0",
4
+ "description": "React wrapper for Spot Widget",
4
5
  "publishConfig": {
5
6
  "access": "public"
6
7
  },
@@ -12,18 +13,8 @@
12
13
  "README.md",
13
14
  "CHANGELOG.md"
14
15
  ],
15
- "scripts": {
16
- "build": "vite build && npx -p typescript tsc --emitDeclarationOnly && cp dist/ReactSpotWidget.d.ts dist/index.d.ts",
17
- "docs": "npx -p typedoc -p typedoc-plugin-markdown typedoc --plugin typedoc-plugin-markdown --out docs src/ReactSpotWidget.tsx",
18
- "docs:readme": "npm run docs && node scripts/generate-readme.js",
19
- "test": "jest --watchAll=false",
20
- "test:watch": "jest --watch",
21
- "test:coverage": "jest --coverage",
22
- "test:ci": "jest --ci --coverage --watchAll=false",
23
- "prepublishOnly": "npm run build"
24
- },
25
16
  "dependencies": {
26
- "@getspot/spot-widget": "3.0.5"
17
+ "@getspot/spot-widget": "^3.2.2"
27
18
  },
28
19
  "peerDependencies": {
29
20
  "react": ">=18.0.0",
@@ -48,5 +39,14 @@
48
39
  "react": "^18.0.0",
49
40
  "react-dom": "^18.0.0",
50
41
  "ts-jest": "^29.0.0"
42
+ },
43
+ "scripts": {
44
+ "build": "vite build && npx -p typescript tsc --emitDeclarationOnly && cp dist/ReactSpotWidget.d.ts dist/index.d.ts",
45
+ "docs": "npx -p typedoc -p typedoc-plugin-markdown typedoc --plugin typedoc-plugin-markdown --out docs src/ReactSpotWidget.tsx",
46
+ "docs:readme": "npm run docs && node scripts/generate-readme.js",
47
+ "test": "jest --watchAll=false",
48
+ "test:watch": "jest --watch",
49
+ "test:coverage": "jest --coverage",
50
+ "test:ci": "jest --ci --coverage --watchAll=false"
51
51
  }
52
- }
52
+ }