ac-useractionlog-connector 4.0.25 → 4.0.26

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.
@@ -19,13 +19,13 @@ jobs:
19
19
 
20
20
  strategy:
21
21
  matrix:
22
- node-version: [20.x, 22.x, 24.x]
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@v3
26
+ - uses: actions/checkout@v5
27
27
  - name: Use Node.js ${{ matrix.node-version }}
28
- uses: actions/setup-node@v3
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,30 @@
1
+ ## [4.0.26](https://github.com/admiralcloud/ac-useractionlog-connector/compare/v4.0.25..v4.0.26) (2026-04-04 10:29:56)
2
+
3
+
4
+ ### Bug Fix
5
+
6
+
7
+ * **App:** Package updates | MP | [69ba00a6c28f556b986f19a6e26172507cb3968c](https://github.com/admiralcloud/ac-useractionlog-connector/commit/69ba00a6c28f556b986f19a6e26172507cb3968c)
8
+ Package updates
9
+ Related issues:
10
+ ### Documentation
11
+
12
+
13
+ * **App:** Added badge | MP | [ce6d5c0d8b0d97235621b5d1c49198821610ac4e](https://github.com/admiralcloud/ac-useractionlog-connector/commit/ce6d5c0d8b0d97235621b5d1c49198821610ac4e)
14
+ Added badge for code quality
15
+ Related issues:
16
+ ### Chores
17
+
18
+
19
+ * **App:** Updated packages | MP | [6500d2a9c2844c38099eac3cf14462b007bfcfc2](https://github.com/admiralcloud/ac-useractionlog-connector/commit/6500d2a9c2844c38099eac3cf14462b007bfcfc2)
20
+ Updated packages
21
+ Related issues:
22
+ ### Chores
23
+
24
+
25
+ * **App:** Updated Github actions | MP | [dbfe456e9b10971139993bea8f825a452339005a](https://github.com/admiralcloud/ac-useractionlog-connector/commit/dbfe456e9b10971139993bea8f825a452339005a)
26
+ Updated Github actions
27
+ Related issues:
1
28
 
2
29
  ## [4.0.25](https://github.com/admiralcloud/ac-useractionlog-connector/compare/v4.0.24..v4.0.25) (2026-03-21 11:16:33)
3
30
 
package/Makefile CHANGED
@@ -16,7 +16,4 @@ release:
16
16
  test-release:
17
17
  DEBUGMODE=true node ./node_modules/ac-semantic-release/lib/release.js
18
18
 
19
- cleanup:
20
- ./node_modules/ac-jenkins/bin/cleanup.sh
21
-
22
19
  .PHONY: check
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
- [![Node.js CI](https://github.com/AdmiralCloud/ac-useractionlog-connector/actions/workflows/node.js.yml/badge.svg)](https://github.com/AdmiralCloud/c-useractionlog-connector/actions/workflows/node.js.yml)
6
+ [![Node.js CI](https://github.com/AdmiralCloud/ac-useractionlog-connector/actions/workflows/node.js.yml/badge.svg)](https://github.com/AdmiralCloud/c-useractionlog-connector/actions/workflows/node.js.yml) [![CodeQL](https://github.com/AdmiralCloud/ac-useractionlog-connector/actions/workflows/github-code-scanning/codeql/badge.svg)](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.25",
6
+ "version": "4.0.26",
7
7
  "dependencies": {
8
- "@aws-sdk/client-firehose": "^3.1014.0",
8
+ "@aws-sdk/client-firehose": "^3.1024.0",
9
9
  "@eslint/js": "^10.0.1",
10
10
  "globals": "^17.4.0",
11
11
  "install": "^0.13.0",
12
- "lodash": "^4.17.23"
12
+ "lodash": "^4.18.1"
13
13
  },
14
14
  "devDependencies": {
15
- "ac-jenkins": "git+ssh://git@ac-jenkins.github.com/admiralcloud/ac-jenkins#v1.2.10",
16
- "ac-semantic-release": "^0.4.10",
15
+ "ac-semantic-release": "^1.0.1",
17
16
  "chai": "^4.5.0",
18
- "eslint": "^10.1.0",
17
+ "eslint": "^10.2.0",
19
18
  "mocha": "^11.7.5"
20
19
  },
21
20
  "scripts": {