mqtt-plus 1.4.27 → 1.4.28

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.
package/.ase/service.log CHANGED
@@ -10467,3 +10467,6 @@ ase: [2026-08-06 19:01:36.333]: [INFO]: mcp: POST /mcp [tools/call] ase_task_id
10467
10467
  ase: [2026-08-06 19:01:47.858]: [INFO]: mcp: POST /mcp [tools/call] ase_task_id {"id":"exclusive-fields","session":"7bcafa3d-0cb1-4c2b-8fdb-17e7a84dc176"}
10468
10468
  ase: [2026-08-06 19:23:19.610]: [INFO]: mcp: POST /mcp [tools/call] ase_timestamp {"format":"yyyy-LL-dd"}
10469
10469
  ase: [2026-08-06 19:47:45.209]: [INFO]: mcp: POST /mcp [tools/call] ase_artifact_list {"kind":["spec","arch","code","docs","infr","othr"]}
10470
+ ase: [2026-08-06 20:39:21.644]: [INFO]: service: idle timeout reached, stopping
10471
+ ase: [2026-08-22 00:06:37.384]: [INFO]: service: listening on port 43050
10472
+ ase: [2026-08-22 00:15:58.427]: [INFO]: mcp: POST /mcp [tools/call] ase_artifact_list {"kind":["spec","arch","code","docs","infr","othr"]}
package/.ase/service.yaml CHANGED
@@ -1 +1 @@
1
- port: 43270
1
+ port: 43050
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
  ChangeLog
3
3
  =========
4
4
 
5
+ 1.4.28 (2026-08-22)
6
+ -------------------
7
+
8
+ - UPDATE [infr, othr]: upgrade NPM dependencies and raise the minimum Node.js version to 22.13.0
9
+ - CLEANUP [infr]: drop the "@eslint/eslintrc" FlatCompat shim in the ESLint configuration in favor of the native "js.configs.recommended"
10
+
5
11
  1.4.27 (2026-08-05)
6
12
  -------------------
7
13
 
package/etc/eslint.mts CHANGED
@@ -23,23 +23,12 @@
23
23
  */
24
24
 
25
25
  import globals from "globals"
26
- import path from "node:path"
27
- import { fileURLToPath } from "node:url"
28
26
  import js from "@eslint/js"
29
- import { FlatCompat } from "@eslint/eslintrc"
30
27
  import pluginTS from "typescript-eslint"
31
28
  import parserTS from "@typescript-eslint/parser"
32
29
 
33
- const __filename = fileURLToPath(import.meta.url)
34
- const __dirname = path.dirname(__filename)
35
- const compat = new FlatCompat({
36
- baseDirectory: __dirname,
37
- recommendedConfig: js.configs.recommended,
38
- allConfig: js.configs.all
39
- })
40
-
41
30
  export default [
42
- ...compat.extends("eslint:recommended"),
31
+ js.configs.recommended,
43
32
  ...pluginTS.configs.strict,
44
33
  ...pluginTS.configs.stylistic,
45
34
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mqtt-plus",
3
- "version": "1.4.27",
3
+ "version": "1.4.28",
4
4
  "description": "MQTT Communication Patterns",
5
5
  "keywords": [ "mqtt",
6
6
  "event", "emit",
@@ -33,10 +33,9 @@
33
33
  "patch-package": "8.0.1",
34
34
  "@rse/stx": "1.1.6",
35
35
  "shx": "0.4.0",
36
- "eslint": "10.8.0",
37
- "globals": "17.9.0",
36
+ "eslint": "10.9.0",
37
+ "globals": "17.11.0",
38
38
  "@eslint/js": "10.0.1",
39
- "@eslint/eslintrc": "3.3.6",
40
39
  "knip": "6.32.0",
41
40
  "jiti": "2.7.0",
42
41
  "tsx": "4.23.9",
@@ -47,8 +46,8 @@
47
46
  "c8": "12.0.0",
48
47
  "source-map-support": "0.5.21",
49
48
  "typescript": "6.0.3",
50
- "typescript-eslint": "8.66.0",
51
- "@typescript-eslint/parser": "8.66.0",
49
+ "typescript-eslint": "8.67.0",
50
+ "@typescript-eslint/parser": "8.67.0",
52
51
  "mqtt": "5.15.2",
53
52
  "aedes": "1.1.1",
54
53
  "mosquitto": "1.1.0",
@@ -63,7 +62,7 @@
63
62
  "open-cli": "9.0.0",
64
63
  "cross-env": "10.1.0",
65
64
 
66
- "@types/node": "26.1.2",
65
+ "@types/node": "26.2.0",
67
66
  "@types/mocha": "10.0.10",
68
67
  "@types/chai": "5.2.3",
69
68
  "@types/sinon-chai": "4.0.0",
@@ -89,7 +88,7 @@
89
88
  "@stablelib/sha256": "2.0.1"
90
89
  },
91
90
  "engines": {
92
- "node": ">=20.0.0"
91
+ "node": ">=22.13.0"
93
92
  },
94
93
  "scripts": {
95
94
  "prepare": "npm start patch-apply",