@k03mad/dns-leak 8.1.0 → 8.1.1
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,6 +6,26 @@ 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
|
+
|
|
9
29
|
publish:
|
|
10
30
|
environment: npm
|
|
11
31
|
runs-on: ubuntu-22.04
|
package/.vscode/settings.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@k03mad/dns-leak",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.1",
|
|
4
4
|
"description": "DNS leak test",
|
|
5
5
|
"maintainers": [
|
|
6
6
|
"Kirill Molchanov <k03.mad@gmail.com"
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"node": ">=22"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@k03mad/ip2geo": "11.
|
|
22
|
-
"@k03mad/request": "7.
|
|
23
|
-
"@k03mad/simple-log": "5.
|
|
21
|
+
"@k03mad/ip2geo": "11.1.0",
|
|
22
|
+
"@k03mad/request": "7.5.0",
|
|
23
|
+
"@k03mad/simple-log": "5.1.0",
|
|
24
24
|
"chalk": "5.3.0",
|
|
25
25
|
"country-locale-map": "1.9.8",
|
|
26
26
|
"nanoid": "5.0.8",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"ora": "8.1.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@k03mad/eslint-config": "
|
|
31
|
+
"@k03mad/eslint-config": "27.0.0",
|
|
32
32
|
"eslint": "9.15.0",
|
|
33
|
-
"husky": "9.1.
|
|
33
|
+
"husky": "9.1.7"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"lint": "npm run lint:eslint",
|