pubface 1.1.4 → 1.1.6
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.6](https://github.com/postalsys/pubface/compare/v1.1.5...v1.1.6) (2026-08-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** update dependencies (nodemailer 9.0.5, ipaddr.js 2.5.0) ([c1a324e](https://github.com/postalsys/pubface/commit/c1a324ed67fc3779716c7c09c4fd66f1812d4ffd))
|
|
9
|
+
|
|
10
|
+
## [1.1.5](https://github.com/postalsys/pubface/compare/v1.1.4...v1.1.5) (2026-07-05)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* update dependencies (nodemailer 9.0.3) ([0621e11](https://github.com/postalsys/pubface/commit/0621e11fd935d6223d27b1efd20e70513d0a1d84))
|
|
16
|
+
|
|
3
17
|
## [1.1.4](https://github.com/postalsys/pubface/compare/v1.1.3...v1.1.4) (2026-06-19)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pubface",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "Resolve public network interfaces for current machine",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"pubface": "bin/pubface.js"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"ipaddr.js": "2.
|
|
32
|
-
"nodemailer": "9.0.
|
|
31
|
+
"ipaddr.js": "2.5.0",
|
|
32
|
+
"nodemailer": "9.0.5"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@eslint/js": "^10.0.1",
|
|
36
|
-
"@yao-pkg/pkg": "6.
|
|
37
|
-
"eslint": "^10.
|
|
36
|
+
"@yao-pkg/pkg": "6.22.0",
|
|
37
|
+
"eslint": "^10.8.0",
|
|
38
38
|
"license-report": "6.8.5",
|
|
39
|
-
"prettier": "^3.
|
|
39
|
+
"prettier": "^3.9.6"
|
|
40
40
|
},
|
|
41
41
|
"pkg": {
|
|
42
42
|
"assets": [
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
name: 'pubface CodeQL config'
|
|
2
|
-
|
|
3
|
-
# Exclude code that is not part of the production runtime from analysis.
|
|
4
|
-
# The test suite intentionally feeds malformed input and disables TLS
|
|
5
|
-
# verification in fixtures, which generates only false-positive noise, and
|
|
6
|
-
# ee-dist holds the prebuilt binaries, not source we maintain.
|
|
7
|
-
paths-ignore:
|
|
8
|
-
- test
|
|
9
|
-
- '**/test/**'
|
|
10
|
-
- ee-dist
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
# CodeQL static analysis for code quality and security.
|
|
2
|
-
# See https://docs.github.com/en/code-security/code-scanning
|
|
3
|
-
name: 'CodeQL Advanced'
|
|
4
|
-
|
|
5
|
-
on:
|
|
6
|
-
push:
|
|
7
|
-
branches: ['master']
|
|
8
|
-
pull_request:
|
|
9
|
-
branches: ['master']
|
|
10
|
-
schedule:
|
|
11
|
-
- cron: '40 17 * * 6'
|
|
12
|
-
|
|
13
|
-
jobs:
|
|
14
|
-
analyze:
|
|
15
|
-
name: Analyze (${{ matrix.language }})
|
|
16
|
-
runs-on: ubuntu-latest
|
|
17
|
-
permissions:
|
|
18
|
-
# required for all workflows
|
|
19
|
-
security-events: write
|
|
20
|
-
|
|
21
|
-
# required to fetch internal or private CodeQL packs
|
|
22
|
-
packages: read
|
|
23
|
-
|
|
24
|
-
# only required for workflows in private repositories
|
|
25
|
-
actions: read
|
|
26
|
-
contents: read
|
|
27
|
-
|
|
28
|
-
strategy:
|
|
29
|
-
fail-fast: false
|
|
30
|
-
matrix:
|
|
31
|
-
include:
|
|
32
|
-
- language: actions
|
|
33
|
-
build-mode: none
|
|
34
|
-
- language: javascript-typescript
|
|
35
|
-
build-mode: none
|
|
36
|
-
steps:
|
|
37
|
-
- name: Checkout repository
|
|
38
|
-
uses: actions/checkout@v6
|
|
39
|
-
|
|
40
|
-
- name: Initialize CodeQL
|
|
41
|
-
uses: github/codeql-action/init@v4
|
|
42
|
-
with:
|
|
43
|
-
languages: ${{ matrix.language }}
|
|
44
|
-
build-mode: ${{ matrix.build-mode }}
|
|
45
|
-
config-file: ./.github/codeql/codeql-config.yml
|
|
46
|
-
|
|
47
|
-
- name: Perform CodeQL Analysis
|
|
48
|
-
uses: github/codeql-action/analyze@v4
|
|
49
|
-
with:
|
|
50
|
-
category: '/language:${{matrix.language}}'
|