@regressionproof/client 0.0.1 → 0.1.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 +45 -0
  2. package/package.json +4 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,45 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [0.1.1](https://github.com/sprucelabsai-community/regressionproof/compare/v0.1.0...v0.1.1) (2026-01-12)
7
+
8
+ **Note:** Version bump only for package @regressionproof/client
9
+
10
+
11
+
12
+
13
+
14
+ # 0.1.0 (2026-01-12)
15
+
16
+
17
+ ### Breaking Changes
18
+
19
+ * restructure to [@regressionproof](https://github.com/regressionproof) workspace ([c24c447](https://github.com/sprucelabsai-community/regressionproof/commit/c24c447))
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * configure package publishing ([fe9f0ca](https://github.com/sprucelabsai-community/regressionproof/commit/fe9f0ca))
25
+
26
+
27
+ ### Documentation
28
+
29
+ * simplify README, add ARCHITECTURE.md ([8246e6e](https://github.com/sprucelabsai-community/regressionproof/commit/8246e6e))
30
+
31
+
32
+ ### Features
33
+
34
+ * add helpful error handling when git server is unreachable ([1e2b2c7](https://github.com/sprucelabsai-community/regressionproof/commit/1e2b2c7))
35
+ * add tests package with E2E test infrastructure ([397f3c6](https://github.com/sprucelabsai-community/regressionproof/commit/397f3c6))
36
+ * ESM support and CLI init component ([d60a534](https://github.com/sprucelabsai-community/regressionproof/commit/d60a534))
37
+ * implement SpruceError with typed error codes ([1696b3f](https://github.com/sprucelabsai-community/regressionproof/commit/1696b3f))
38
+ * lerna, CJS builds, slug validation, jest-reporter scaffold ([2516cac](https://github.com/sprucelabsai-community/regressionproof/commit/2516cac))
39
+ * persist project state in Gitea instead of in-memory ([94dbdcc](https://github.com/sprucelabsai-community/regressionproof/commit/94dbdcc))
40
+
41
+
42
+ ### Refactoring
43
+
44
+ * align with platform conventions ([8b9d5bf](https://github.com/sprucelabsai-community/regressionproof/commit/8b9d5bf))
45
+ * extract CLI business logic into dedicated modules ([dadd01c](https://github.com/sprucelabsai-community/regressionproof/commit/dadd01c))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regressionproof/client",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -45,7 +45,7 @@
45
45
  "watch.tsc": "tsc -w"
46
46
  },
47
47
  "dependencies": {
48
- "@regressionproof/api": "^0.0.1"
48
+ "@regressionproof/api": "^0.1.1"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@sprucelabs/esm-postbuild": "^9.0.13",
@@ -62,5 +62,6 @@
62
62
  "description": "connect to the regression proof api to store snapshots",
63
63
  "skill": {
64
64
  "namespace": "regressionproof-client"
65
- }
65
+ },
66
+ "gitHead": "3d13b4ce3234f7a108cf5588836499f75196463f"
66
67
  }