Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VBLOCKS-1808 Trimming dependencies + require => import. #175

Merged
merged 6 commits into from
Jun 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
2.6.1 (In Progress)
=====================
===================

Changes
-------

- Fixed some security vulnerabilities shown by `npm audit`.
- Removed unused dependencies.
- Replaced deprecated dependencies.

Bug Fixes
---------
Expand Down
1 change: 0 additions & 1 deletion extension/token/capabilityToken.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

var _ = require('lodash');
var jwt = require('jsonwebtoken');
var qs = require('querystring');

/**
* @constructor
Expand Down
2 changes: 1 addition & 1 deletion lib/twilio/call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import StatsMonitor from './statsMonitor';
import { isChrome } from './util';
import { generateVoiceEventSid } from './uuid';

const { RELEASE_VERSION } = require('./constants');
import { RELEASE_VERSION } from './constants';

// Placeholders until we convert the respective files to TypeScript.
/**
Expand Down
Loading