Skip to content

Commit

Permalink
3.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Nov 28, 2018
1 parent 868a774 commit d2659f4
Show file tree
Hide file tree
Showing 5 changed files with 134 additions and 247 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
CHANGELOG
=========

Version 3.2.16 (released in 2018-11-28)
---------------------------------------

* Fix typos thanks to the [LGTM](https://lgtm.com/projects/g/versatica/JsSIP/alerts/?mode=list) project.
* Update deps.


Version 3.2.15 (released in 2018-10-11)
--------------------------------------

Expand Down
18 changes: 9 additions & 9 deletions dist/jssip.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* JsSIP v3.2.15
* JsSIP v3.2.16
* the Javascript SIP library
* Copyright: 2012-2018 José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)
* Homepage: http://jssip.net
Expand Down Expand Up @@ -18930,7 +18930,7 @@ function (_EventEmitter) {

debug('receiveRefer()');

if (_typeof(request.refer_to) === undefined) {
if (!request.refer_to) {
debug('no Refer-To header field present in REFER');
request.reply(400);
return;
Expand Down Expand Up @@ -19007,7 +19007,7 @@ function (_EventEmitter) {
value: function _receiveNotify(request) {
debug('receiveNotify()');

if (_typeof(request.event) === undefined) {
if (!request.event) {
request.reply(400);
}

Expand Down Expand Up @@ -27711,7 +27711,7 @@ module.exports={
"name": "jssip",
"title": "JsSIP",
"description": "the Javascript SIP library",
"version": "3.2.15",
"version": "3.2.16",
"homepage": "http://jssip.net",
"author": "José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
"contributors": [
Expand All @@ -27736,24 +27736,24 @@ module.exports={
"url": "https://github.com/versatica/JsSIP/issues"
},
"dependencies": {
"ansi-colors": "^3.2.1",
"debug": "^4.1.0",
"events": "^3.0.0",
"sdp-transform": "^2.4.1"
},
"devDependencies": {
"ansi-colors": "^3.1.0",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"browserify": "^16.2.3",
"eslint": "^5.6.1",
"eslint": "^5.9.0",
"fancy-log": "^1.3.2",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^5.0.0",
"gulp-expect-file": "^1.0.0",
"gulp-header": "^2.0.5",
"gulp-nodeunit-runner": "^0.2.2",
"gulp-plumber": "^1.2.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^1.4.0",
"gulp-uglify-es": "^1.0.4",
"pegjs": "^0.7.0",
Expand Down
4 changes: 2 additions & 2 deletions dist/jssip.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit d2659f4

Please sign in to comment.