@auto-engineer/dev-server 1.129.0 → 1.130.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 +28 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @auto-engineer/dev-server
2
2
 
3
+ ## 1.130.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`7a5544a`](https://github.com/BeOnAuto/auto-engineer/commit/7a5544a66ec42f25cc83fdc7717e9cce87e7e98e) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added escapeJsString utility to safely handle special characters in EJS template string interpolation
8
+ - Prevents template rendering errors caused by single quotes, backslashes, newlines, and carriage returns in user-provided strings
9
+
10
+ - [`f4e7c16`](https://github.com/BeOnAuto/auto-engineer/commit/f4e7c167d4150bba383cf9bc162167eb0924275b) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **pipeline**: auto-derive item key extractors from handler fields
11
+ - **react-component-implementer**: improvements
12
+ - **global**: improvements
13
+ - **changesets**: update remaining generate-theme refs to set-theme
14
+ - **changesets**: update generate-theme to set-theme in changeset
15
+
16
+ ### Patch Changes
17
+
18
+ - [`d108c53`](https://github.com/BeOnAuto/auto-engineer/commit/d108c530cabf9eed61a280d01000010d3ac7eacf) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed code generation errors when rule names contain apostrophes (e.g. "List of user's workouts") by escaping special characters in generated test files
19
+
20
+ - [`f9b46ad`](https://github.com/BeOnAuto/auto-engineer/commit/f9b46ada5eb692f3de0d9f16f5240a3463099447) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed template generation errors caused by apostrophes in rule descriptions, test descriptions, and error messages
21
+ - Added string escaping utility to safely handle special characters in generated code templates
22
+
23
+ - [`5134e46`](https://github.com/BeOnAuto/auto-engineer/commit/5134e4671549241f127c1a5fc40815047fdbcdb9) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed generated test files failing to parse when rule names or descriptions contain apostrophes
24
+
25
+ - [`3303685`](https://github.com/BeOnAuto/auto-engineer/commit/330368567679f3023815bec3234a777c3f7220fc) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added implementation plan for fixing JavaScript string escaping in the Apollo Emmett server generator
26
+
27
+ - Updated dependencies [[`d108c53`](https://github.com/BeOnAuto/auto-engineer/commit/d108c530cabf9eed61a280d01000010d3ac7eacf), [`7a5544a`](https://github.com/BeOnAuto/auto-engineer/commit/7a5544a66ec42f25cc83fdc7717e9cce87e7e98e), [`f9b46ad`](https://github.com/BeOnAuto/auto-engineer/commit/f9b46ada5eb692f3de0d9f16f5240a3463099447), [`5134e46`](https://github.com/BeOnAuto/auto-engineer/commit/5134e4671549241f127c1a5fc40815047fdbcdb9), [`f4e7c16`](https://github.com/BeOnAuto/auto-engineer/commit/f4e7c167d4150bba383cf9bc162167eb0924275b), [`3303685`](https://github.com/BeOnAuto/auto-engineer/commit/330368567679f3023815bec3234a777c3f7220fc)]:
28
+ - @auto-engineer/cli@1.130.0
29
+ - @auto-engineer/message-bus@1.130.0
30
+
3
31
  ## 1.129.0
4
32
 
5
33
  ### Minor Changes
package/package.json CHANGED
@@ -18,16 +18,16 @@
18
18
  "chokidar": "^3.6.0",
19
19
  "debug": "^4.4.1",
20
20
  "execa": "^9.5.2",
21
- "@auto-engineer/cli": "1.129.0",
22
- "@auto-engineer/message-bus": "1.129.0"
21
+ "@auto-engineer/cli": "1.130.0",
22
+ "@auto-engineer/message-bus": "1.130.0"
23
23
  },
24
24
  "publishConfig": {
25
25
  "access": "public"
26
26
  },
27
27
  "devDependencies": {
28
- "@auto-engineer/cli": "1.129.0"
28
+ "@auto-engineer/cli": "1.130.0"
29
29
  },
30
- "version": "1.129.0",
30
+ "version": "1.130.0",
31
31
  "scripts": {
32
32
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
33
33
  "test": "vitest run --reporter=dot",