Move from irc 0.5.2 to irc-upd 0.6.1

The irc module does not appear to be very actively maintained, and has
quite a few issues causing issues in this project itself.

This fork, maintained by me, has a few fixes to some major issues
already.

Changelogs:

- v0.6.0 - https://github.com/Throne3d/node-irc/releases/tag/v0.6.0
- v0.6.1 - https://github.com/Throne3d/node-irc/releases/tag/v0.6.1

Should fix #199, #200, as well as some issues not previously noted
(crash if unbanning a user who is not banned, crash in circumstances
with a poor internet connection).

It may also allow us to remove our workaround for the quit and nick
events having all channels in the associated array.
This commit is contained in:
Edward Jones 2017-07-01 17:29:33 +01:00
parent 80c3752074
commit c0d443d9c5
5 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
import _ from 'lodash';
import irc from 'irc';
import irc from 'irc-upd';
import logger from 'winston';
import discord from 'discord.js';
import { ConfigurationError } from './errors';

View File

@ -39,7 +39,7 @@
"check-env": "1.3.0",
"commander": "2.9.0",
"discord.js": "11.1.0",
"irc": "0.5.2",
"irc-upd": "0.6.1",
"irc-colors": "^1.3.2",
"irc-formatting": "^1.0.0-rc3",
"lodash": "^4.17.4",

View File

@ -2,7 +2,7 @@
import chai from 'chai';
import sinonChai from 'sinon-chai';
import sinon from 'sinon';
import irc from 'irc';
import irc from 'irc-upd';
import discord from 'discord.js';
import logger from 'winston';
import Bot from '../lib/bot';

View File

@ -2,7 +2,7 @@
import chai from 'chai';
import sinon from 'sinon';
import sinonChai from 'sinon-chai';
import irc from 'irc';
import irc from 'irc-upd';
import logger from 'winston';
import discord from 'discord.js';
import Bot from '../lib/bot';

View File

@ -1,5 +1,5 @@
import chai from 'chai';
import irc from 'irc';
import irc from 'irc-upd';
import discord from 'discord.js';
import Bot from '../lib/bot';
import config from './fixtures/single-test-config.json';