@pagermon/ingest-core 1.0.4 → 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.
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +19 -0
- package/README.md +19 -0
- package/eslint.config.mjs +9 -1
- package/lib/core/ApiClient.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
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
|
+
|
|
15
|
+
## [1.0.5](https://github.com/eopo/pagermon-ingest-core/compare/v1.0.4...v1.0.5) (2026-03-10)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* update API key header format in ApiClient ([ee3f32a](https://github.com/eopo/pagermon-ingest-core/commit/ee3f32af019033fb6f425b6df3deb94f23ef8933))
|
|
21
|
+
|
|
3
22
|
## [1.0.4](https://github.com/eopo/pagermon-ingest-core/compare/v1.0.2...v1.0.4) (2026-03-10)
|
|
4
23
|
|
|
5
24
|
|
package/README.md
CHANGED
|
@@ -119,6 +119,25 @@ npm test
|
|
|
119
119
|
|
|
120
120
|
## Container
|
|
121
121
|
|
|
122
|
+
### Pre-built Images
|
|
123
|
+
|
|
124
|
+
Pre-built images are available from two registries:
|
|
125
|
+
|
|
126
|
+
- **Docker Hub**: `shutterfire/pagermon-ingest-core`
|
|
127
|
+
- **GitHub Container Registry**: `ghcr.io/eopo/pagermon-ingest-core`
|
|
128
|
+
|
|
129
|
+
Both registries contain identical images. Choose based on your preference:
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
# Docker Hub
|
|
133
|
+
docker pull shutterfire/pagermon-ingest-core:latest
|
|
134
|
+
|
|
135
|
+
# Or GitHub Container Registry
|
|
136
|
+
docker pull ghcr.io/eopo/pagermon-ingest-core:latest
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### Building Locally
|
|
140
|
+
|
|
122
141
|
Build core image:
|
|
123
142
|
|
|
124
143
|
```bash
|
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': [
|
|
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/lib/core/ApiClient.js
CHANGED