ts-node-client 3.4.8 → 3.4.9

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.
@@ -3,7 +3,7 @@ name: Scan and upload to trustsource.io
3
3
  on:
4
4
  push:
5
5
  tags:
6
- - '*.*.*'
6
+ - 'main'
7
7
 
8
8
  jobs:
9
9
  scan:
@@ -22,8 +22,13 @@ jobs:
22
22
  with:
23
23
  node-version: ${{ matrix.node-version }}
24
24
  registry-url: 'https://registry.npmjs.org'
25
+ - name: Get current version
26
+ id: get_version
27
+ run: |
28
+ echo VERSION=$(jq -r '.version' package.json) >> $GITHUB_OUTPUT
25
29
  - name: Install dependencies
26
30
  run: yarn
27
31
  - name: Scan dependencies
28
- run: yarn node ./bin/ts-node-client.js --branch main --tag $GITHUB_REF_NAME --project Scanner --url https://api.trustsource.io/ --apiKey ${{ secrets.TS_TOKEN }}
32
+ if: steps.get_version.outputs.VERSION
33
+ run: yarn node ./bin/ts-node-client.js --branch main --tag ${{ steps.get_version.outputs.VERSION }} --project Scanner --url https://api.trustsource.io/ --apiKey ${{ secrets.TS_TOKEN }}
29
34
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
8
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
 
10
10
 
11
+ ## 3.4.9 - 2026-02-11
12
+
13
+ ### Changed
14
+ * bump dependencies
15
+
16
+
11
17
  ## 3.4.8 - 2026-01-28
12
18
 
13
19
  ### Changed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ts-node-client",
3
3
  "description": "npm / node module to transfer dependency information to TrustSource server.",
4
- "version": "3.4.8",
4
+ "version": "3.4.9",
5
5
  "homepage": "https://app.trustsource.io/",
6
6
  "author": {
7
7
  "name": "Oleksandr Dmukhovskyi",
@@ -28,15 +28,15 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@yarnpkg/lockfile": "1.1.0",
31
- "axios": "1.12.0",
31
+ "axios": "1.13.5",
32
32
  "debuglog": "1.0.1",
33
33
  "js-yaml": "4.1.1",
34
34
  "packageurl-js": "1.2.1",
35
- "semver": "7.7.2",
35
+ "semver": "7.7.4",
36
36
  "yargs": "17.7.2"
37
37
  },
38
38
  "devDependencies": {
39
- "eslint": "8.57.0",
39
+ "eslint": "8.57.1",
40
40
  "eslint-config-airbnb-base": "15.0.0",
41
41
  "eslint-plugin-import": "2.32.0",
42
42
  "eslint-plugin-sonarjs": "0.25.1",