@getspot/spot-widget-vue2 3.0.3 → 3.0.5

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 +23 -0
  2. package/package.json +12 -11
package/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ ## @getspot/spot-widget-vue2 [3.0.5](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-vue2@3.0.4...@getspot/spot-widget-vue2@3.0.5) (2025-10-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * use range dependencies for wrappers ([5267a1c](https://gitlab.com/getspot/spot-widget/commit/5267a1cc8c27d2619e4840e10b6f120542301e0f))
7
+ * wrapper packages commit msg length was too long ([540a022](https://gitlab.com/getspot/spot-widget/commit/540a022873a4330686bb255ea08ddd194a8513c4))
8
+
9
+ ## @getspot/spot-widget-vue2 [3.0.4](https://gitlab.com/getspot/spot-widget/compare/@getspot/spot-widget-vue2@3.0.3...@getspot/spot-widget-vue2@3.0.4) (2025-10-29)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **ci:** update semantic-release tag formats and fix corrupted version ([ec89b9e](https://gitlab.com/getspot/spot-widget/commit/ec89b9ee4c97bea99b683fbbd5e4700d4a8b2c4f))
15
+
16
+
17
+
18
+
19
+
20
+ ### Dependencies
21
+
22
+ * **@getspot/spot-widget:** upgraded to 3.0.4
23
+
1
24
  # @getspot/spot-widget-vue2
2
25
 
3
26
  ## 3.0.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getspot/spot-widget-vue2",
3
- "version": "3.0.3",
3
+ "version": "3.0.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -12,8 +12,17 @@
12
12
  "README.md",
13
13
  "CHANGELOG.md"
14
14
  ],
15
+ "scripts": {
16
+ "build": "vite build && cp src/index.d.ts dist/index.d.ts",
17
+ "docs:readme": "node scripts/generate-readme.js",
18
+ "test": "vitest run",
19
+ "test:watch": "vitest --watch",
20
+ "test:coverage": "vitest --coverage",
21
+ "test:ci": "vitest run --coverage",
22
+ "prepublishOnly": "npm run build"
23
+ },
15
24
  "dependencies": {
16
- "@getspot/spot-widget": "3.0.3"
25
+ "@getspot/spot-widget": "3.0.5"
17
26
  },
18
27
  "peerDependencies": {
19
28
  "vue": "^2.6.0"
@@ -27,13 +36,5 @@
27
36
  "@vue/test-utils": "^1.3.6",
28
37
  "vue": "^2.7.14",
29
38
  "vue-template-compiler": "^2.7.14"
30
- },
31
- "scripts": {
32
- "build": "vite build && cp src/index.d.ts dist/index.d.ts",
33
- "docs:readme": "node scripts/generate-readme.js",
34
- "test": "vitest",
35
- "test:watch": "vitest --watch",
36
- "test:coverage": "vitest --coverage",
37
- "test:ci": "vitest run --coverage"
38
39
  }
39
- }
40
+ }