@k03mad/dns-leak 8.1.2 → 8.3.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.
@@ -6,26 +6,6 @@ on:
6
6
  - master
7
7
 
8
8
  jobs:
9
- dump_contexts_to_log:
10
- runs-on: ubuntu-latest
11
- steps:
12
- - name: Dump GitHub context
13
- env:
14
- GITHUB_CONTEXT: ${{ toJson(github) }}
15
- run: echo "$GITHUB_CONTEXT"
16
- - name: Dump job context
17
- env:
18
- JOB_CONTEXT: ${{ toJson(job) }}
19
- run: echo "$JOB_CONTEXT"
20
- - name: Dump steps context
21
- env:
22
- STEPS_CONTEXT: ${{ toJson(steps) }}
23
- run: echo "$STEPS_CONTEXT"
24
- - name: Dump runner context
25
- env:
26
- RUNNER_CONTEXT: ${{ toJson(runner) }}
27
- run: echo "$RUNNER_CONTEXT"
28
-
29
9
  publish:
30
10
  environment: npm
31
11
  runs-on: ubuntu-22.04
@@ -34,21 +14,21 @@ jobs:
34
14
  with:
35
15
  fetch-depth: 0
36
16
 
37
- - uses: tj-actions/changed-files@v45
38
- id: changed-files
17
+ - uses: EndBug/version-check@v2
18
+ id: check_pkg_version
39
19
  with:
40
- files: package.json
20
+ diff-search: true
41
21
 
42
- - if: steps.changed-files.outputs.any_changed == 'true'
22
+ - if: steps.check_pkg_version.outputs.changed == 'true'
43
23
  uses: actions/setup-node@v4
44
24
  with:
45
25
  node-version-file: '.nvmrc'
46
26
  registry-url: 'https://registry.npmjs.org'
47
27
 
48
- - if: steps.changed-files.outputs.any_changed == 'true'
28
+ - if: steps.check_pkg_version.outputs.changed == 'true'
49
29
  run: npm run setup
50
30
 
51
- - if: steps.changed-files.outputs.any_changed == 'true'
31
+ - if: steps.check_pkg_version.outputs.changed == 'true'
52
32
  run: npm publish
53
33
  env:
54
34
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k03mad/dns-leak",
3
- "version": "8.1.2",
3
+ "version": "8.3.0",
4
4
  "description": "DNS leak test",
5
5
  "maintainers": [
6
6
  "Kirill Molchanov <k03.mad@gmail.com"
@@ -18,18 +18,18 @@
18
18
  "node": ">=22"
19
19
  },
20
20
  "dependencies": {
21
- "@k03mad/ip2geo": "11.1.0",
22
- "@k03mad/request": "7.5.0",
23
- "@k03mad/simple-log": "5.1.0",
24
- "chalk": "5.3.0",
25
- "country-locale-map": "1.9.8",
26
- "nanoid": "5.0.8",
21
+ "@k03mad/ip2geo": "11.6.0",
22
+ "@k03mad/request": "7.7.0",
23
+ "@k03mad/simple-log": "5.2.1",
24
+ "chalk": "5.4.1",
25
+ "country-locale-map": "1.9.9",
26
+ "nanoid": "5.0.9",
27
27
  "nanoid-dictionary": "5.0.0-beta.1",
28
28
  "ora": "8.1.1"
29
29
  },
30
30
  "devDependencies": {
31
- "@k03mad/eslint-config": "27.0.0",
32
- "eslint": "9.15.0",
31
+ "@k03mad/eslint-config": "28.4.0",
32
+ "eslint": "9.18.0",
33
33
  "husky": "9.1.7"
34
34
  },
35
35
  "scripts": {