@auto-engineer/server-checks 1.7.0 → 1.9.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 +40 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # @auto-engineer/server-checks
2
2
 
3
+ ## 1.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`9cca67b`](https://github.com/BeOnAuto/auto-engineer/commit/9cca67b7c85953d297a632a268829cc18a168e3a) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **cli**: implement delegation pattern for FileSyncer reset
8
+ - **global**: version packages
9
+ - **global**: add changeset
10
+ - **global**: update ketchup settings
11
+ - **cli**: update ketchup plan with completed burst
12
+
13
+ - [#43](https://github.com/BeOnAuto/auto-engineer/pull/43) [`af76242`](https://github.com/BeOnAuto/auto-engineer/commit/af762423f8adfad0796f2f3a6483fb931c7b0bf1) Thanks [@osamanar](https://github.com/osamanar)! - - Added template generation capability to frontend app generation in the information architect package
14
+
15
+ ### Patch Changes
16
+
17
+ - [#43](https://github.com/BeOnAuto/auto-engineer/pull/43) [`31aab4f`](https://github.com/BeOnAuto/auto-engineer/commit/31aab4f3114d6fd8f60fa2239fff9d567a78e321) Thanks [@osamanar](https://github.com/osamanar)! - - Fixed package manager lock file to ensure consistent dependency installation
18
+
19
+ - Updated dependencies [[`31aab4f`](https://github.com/BeOnAuto/auto-engineer/commit/31aab4f3114d6fd8f60fa2239fff9d567a78e321), [`9cca67b`](https://github.com/BeOnAuto/auto-engineer/commit/9cca67b7c85953d297a632a268829cc18a168e3a), [`af76242`](https://github.com/BeOnAuto/auto-engineer/commit/af762423f8adfad0796f2f3a6483fb931c7b0bf1)]:
20
+ - @auto-engineer/cli@1.9.0
21
+ - @auto-engineer/message-bus@1.9.0
22
+
23
+ ## 1.8.0
24
+
25
+ ### Minor Changes
26
+
27
+ - [`c383ec4`](https://github.com/BeOnAuto/auto-engineer/commit/c383ec4bae483e32d6b747575f2311a67e488a41) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Implemented delegation pattern for FileSyncer reset, allowing the server to swap file syncer instances without re-registering socket handlers
28
+ - Made FileSyncer stop operation async and idempotent with proper startup/shutdown guards
29
+ - Updated ketchup development workflow settings
30
+
31
+ - [`9479f7a`](https://github.com/BeOnAuto/auto-engineer/commit/9479f7a5ebb999907028873cdfcc43b692bfe28a) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **cli**: default file sync directory to narratives
32
+ - **husky**: handle non-zero exit codes from changeset generator under sh -e
33
+ - **global**: version packages
34
+ - **global**: add changeset
35
+ - **global**: exclude .ketchup from biome checks
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies [[`c383ec4`](https://github.com/BeOnAuto/auto-engineer/commit/c383ec4bae483e32d6b747575f2311a67e488a41), [`9479f7a`](https://github.com/BeOnAuto/auto-engineer/commit/9479f7a5ebb999907028873cdfcc43b692bfe28a)]:
40
+ - @auto-engineer/cli@1.8.0
41
+ - @auto-engineer/message-bus@1.8.0
42
+
3
43
  ## 1.7.0
4
44
 
5
45
  ### Minor Changes
package/package.json CHANGED
@@ -18,16 +18,16 @@
18
18
  "debug": "^4.4.1",
19
19
  "execa": "^9.5.2",
20
20
  "fast-glob": "^3.3.2",
21
- "@auto-engineer/cli": "1.7.0",
22
- "@auto-engineer/message-bus": "1.7.0"
21
+ "@auto-engineer/cli": "1.9.0",
22
+ "@auto-engineer/message-bus": "1.9.0"
23
23
  },
24
24
  "publishConfig": {
25
25
  "access": "public"
26
26
  },
27
27
  "devDependencies": {
28
- "@auto-engineer/cli": "1.7.0"
28
+ "@auto-engineer/cli": "1.9.0"
29
29
  },
30
- "version": "1.7.0",
30
+ "version": "1.9.0",
31
31
  "scripts": {
32
32
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
33
33
  "test": "vitest run --reporter=dot",