drachtio-srf 4.4.60 → 4.4.61
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,8 +3,6 @@ name: npm-publish
|
|
|
3
3
|
# run when a tag is pushed or kick off manually
|
|
4
4
|
on:
|
|
5
5
|
push:
|
|
6
|
-
branches:
|
|
7
|
-
- main
|
|
8
6
|
tags:
|
|
9
7
|
- '*'
|
|
10
8
|
workflow_dispatch:
|
|
@@ -17,7 +15,7 @@ jobs:
|
|
|
17
15
|
- uses: actions/checkout@v2
|
|
18
16
|
- uses: actions/setup-node@v1
|
|
19
17
|
with:
|
|
20
|
-
node-version: '
|
|
18
|
+
node-version: '14.x'
|
|
21
19
|
registry-url: 'https://registry.npmjs.org'
|
|
22
20
|
- run: npm install
|
|
23
21
|
- run: npm publish --access public
|
package/lib/wire-protocol.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const Emitter = require('events');
|
|
2
2
|
const net = require('net');
|
|
3
3
|
const tls = require('tls');
|
|
4
|
-
const uuidV4 = require('uuid
|
|
4
|
+
const { v4: uuidV4 } = require('uuid') ;
|
|
5
5
|
const debug = require('debug')('drachtio:agent');
|
|
6
6
|
const noop = require('node-noop').noop;
|
|
7
7
|
const CRLF = '\r\n' ;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drachtio-srf",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.61",
|
|
4
4
|
"description": "drachtio signaling resource framework",
|
|
5
5
|
"main": "lib/srf.js",
|
|
6
6
|
"scripts": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"sip-methods": "^0.3.0",
|
|
35
35
|
"sip-status": "^0.1.0",
|
|
36
36
|
"utils-merge": "1.0.0",
|
|
37
|
-
"uuid": "^3.
|
|
37
|
+
"uuid": "^8.3.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"config": "^3.3.3",
|