@pagermon/ingest-core 1.0.5 → 1.1.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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "1.0.5"
2
+ ".": "1.1.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.1.0](https://github.com/eopo/pagermon-ingest-core/compare/v1.0.5...v1.1.0) (2026-03-10)
4
+
5
+
6
+ ### Features
7
+
8
+ * add adapter rebuild trigger to release workflow ([b916bfe](https://github.com/eopo/pagermon-ingest-core/commit/b916bfe491208144f07b5b033e2e910b6d61bf67))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * enhance 'no-unused-vars' rule configuration in ESLint ([f6f1a69](https://github.com/eopo/pagermon-ingest-core/commit/f6f1a69feaf785e164d90d61b0171c70e1dd496f))
14
+
3
15
  ## [1.0.5](https://github.com/eopo/pagermon-ingest-core/compare/v1.0.4...v1.0.5) (2026-03-10)
4
16
 
5
17
 
package/eslint.config.mjs CHANGED
@@ -25,7 +25,15 @@ export default [
25
25
  camelcase: ['warn', { properties: 'never', ignoreDestructuring: true }],
26
26
 
27
27
  // Code quality
28
- 'no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
28
+ 'no-unused-vars': [
29
+ 'error',
30
+ {
31
+ argsIgnorePattern: '^_',
32
+ varsIgnorePattern: '^_|^err$',
33
+ caughtErrors: 'all',
34
+ caughtErrorsIgnorePattern: '^_|^err$',
35
+ },
36
+ ],
29
37
  'no-unused-expressions': 'off',
30
38
  'no-use-before-define': ['error', { functions: false, classes: true, variables: true }],
31
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pagermon/ingest-core",
3
- "version": "1.0.5",
3
+ "version": "1.1.0",
4
4
  "description": "PagerMon ingest core runtime",
5
5
  "type": "module",
6
6
  "main": "index.js",