ac-useractionlog-connector 4.0.25 → 4.0.27
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/.github/workflows/node.js.yml +3 -3
- package/CHANGELOG.md +35 -0
- package/Makefile +0 -3
- package/README.md +1 -1
- package/package.json +6 -7
|
@@ -19,13 +19,13 @@ jobs:
|
|
|
19
19
|
|
|
20
20
|
strategy:
|
|
21
21
|
matrix:
|
|
22
|
-
node-version: [
|
|
22
|
+
node-version: [22.x, 24.x]
|
|
23
23
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
24
24
|
|
|
25
25
|
steps:
|
|
26
|
-
- uses: actions/checkout@
|
|
26
|
+
- uses: actions/checkout@v5
|
|
27
27
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
28
|
-
uses: actions/setup-node@
|
|
28
|
+
uses: actions/setup-node@v5
|
|
29
29
|
with:
|
|
30
30
|
node-version: ${{ matrix.node-version }}
|
|
31
31
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
## [4.0.27](https://github.com/admiralcloud/ac-useractionlog-connector/compare/v4.0.26..v4.0.27) (2026-04-17 07:52:27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fix
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
* **App:** Package updates | MP | [4bf48ae6d4d63d4966d5071100062032ce27520f](https://github.com/admiralcloud/ac-useractionlog-connector/commit/4bf48ae6d4d63d4966d5071100062032ce27520f)
|
|
8
|
+
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
|
9
|
+
## [4.0.26](https://github.com/admiralcloud/ac-useractionlog-connector/compare/v4.0.25..v4.0.26) (2026-04-04 10:29:56)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fix
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
* **App:** Package updates | MP | [69ba00a6c28f556b986f19a6e26172507cb3968c](https://github.com/admiralcloud/ac-useractionlog-connector/commit/69ba00a6c28f556b986f19a6e26172507cb3968c)
|
|
16
|
+
Package updates
|
|
17
|
+
Related issues:
|
|
18
|
+
### Documentation
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
* **App:** Added badge | MP | [ce6d5c0d8b0d97235621b5d1c49198821610ac4e](https://github.com/admiralcloud/ac-useractionlog-connector/commit/ce6d5c0d8b0d97235621b5d1c49198821610ac4e)
|
|
22
|
+
Added badge for code quality
|
|
23
|
+
Related issues:
|
|
24
|
+
### Chores
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
* **App:** Updated packages | MP | [6500d2a9c2844c38099eac3cf14462b007bfcfc2](https://github.com/admiralcloud/ac-useractionlog-connector/commit/6500d2a9c2844c38099eac3cf14462b007bfcfc2)
|
|
28
|
+
Updated packages
|
|
29
|
+
Related issues:
|
|
30
|
+
### Chores
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
* **App:** Updated Github actions | MP | [dbfe456e9b10971139993bea8f825a452339005a](https://github.com/admiralcloud/ac-useractionlog-connector/commit/dbfe456e9b10971139993bea8f825a452339005a)
|
|
34
|
+
Updated Github actions
|
|
35
|
+
Related issues:
|
|
1
36
|
|
|
2
37
|
## [4.0.25](https://github.com/admiralcloud/ac-useractionlog-connector/compare/v4.0.24..v4.0.25) (2026-03-21 11:16:33)
|
|
3
38
|
|
package/Makefile
CHANGED
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ Connect an app to our userActionLog service with this module.
|
|
|
3
3
|
|
|
4
4
|
The module receives some log payload from backend applications, sends them to AWS firehose for processing/converting and stores the data (as original as well as converted) to S3.
|
|
5
5
|
|
|
6
|
-
[](https://github.com/AdmiralCloud/c-useractionlog-connector/actions/workflows/node.js.yml)
|
|
6
|
+
[](https://github.com/AdmiralCloud/c-useractionlog-connector/actions/workflows/node.js.yml) [](https://github.com/AdmiralCloud/ac-useractionlog-connector/actions/workflows/github-code-scanning/codeql)
|
|
7
7
|
|
|
8
8
|
# Breaking change in version 4 / Upgrading from version 3
|
|
9
9
|
+ improved compatibility with AWS SDK
|
package/package.json
CHANGED
|
@@ -3,19 +3,18 @@
|
|
|
3
3
|
"author": "Mark Poepping (https://www.admiralcloud.com)",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "admiralcloud/ac-useractionlog-connector",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.27",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@aws-sdk/client-firehose": "^3.
|
|
8
|
+
"@aws-sdk/client-firehose": "^3.1031.0",
|
|
9
9
|
"@eslint/js": "^10.0.1",
|
|
10
|
-
"globals": "^17.
|
|
10
|
+
"globals": "^17.5.0",
|
|
11
11
|
"install": "^0.13.0",
|
|
12
|
-
"lodash": "^4.
|
|
12
|
+
"lodash": "^4.18.1"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"ac-
|
|
16
|
-
"ac-semantic-release": "^0.4.10",
|
|
15
|
+
"ac-semantic-release": "^1.0.2",
|
|
17
16
|
"chai": "^4.5.0",
|
|
18
|
-
"eslint": "^10.
|
|
17
|
+
"eslint": "^10.2.0",
|
|
19
18
|
"mocha": "^11.7.5"
|
|
20
19
|
},
|
|
21
20
|
"scripts": {
|