Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Releases: Throne3d/node-irc

v0.11.0

18 Oct 16:03
Compare
Choose a tag to compare

Forgot to publish this tag in GitHub earlier, sorry!

Changes:

  • Drop support for Node 6

Misc:

  • Update dependencies (fixing npm audit vulnerabilities):
    • irc-colors to ^1.5.0
    • chardet to ^1.2.1
    • iconv-lite to ^0.6.2
    • plus a lot of devDependencies
  • Reduce use of .hasOwnProperty called on objects
  • Remove Greenkeeper
  • Move from Travis CI to GitHub Actions

v0.10.0

14 Jun 15:24
Compare
Choose a tag to compare

Fixed bugs:

  • Fix character set detection by using node-chardet instead of jschardet – fixes #59

Misc:

  • Test on Node 10, and no longer on Node 4
  • Use Greenkeeper for keeping dependency versions up to date
  • Add tests to ensure the character set conversion code works (with dependencies) on various test data, instead of just checking it uses stubbed dependencies
  • Fix deprecation warnings on Node 10 around using the Buffer() constructor
  • Update sinon to ^6.0.0
  • Update nyc to ^12.0.1

v0.9.0

29 Mar 15:02
4e3f0fb
Compare
Choose a tag to compare

New features:

  • Use iconv-lite and jschardet instead of iconv and node-icu-charset-detector to detect and convert encodings, to reduce errors when trying to install previous optional dependencies – fixes #53
  • Allow / and ? to appear in non-strict-parsed usernames – fixes #55 and implements #56
  • Add 379 RPL_WHOISMODES, 335 RPL_WHOISBOT, 307, and 671 RPL_WHOISSECURE to recognized list of codes – fixes #47, #48, #49 and #50

Misc:

  • Test on Node 9, and no longer on Node 5 and 7
  • Update mocha to ^5.0.0
  • Update proxyquire to ^2.0.0
  • Fix deprecation warning for sinon's .reset()

v0.8.1

02 Nov 16:59
Compare
Choose a tag to compare

Fixed bugs:

  • Fix .join with channel keys (passwords) – this broke as a result of the previous change to accept comma-separated lists of channels
  • Make the automatic joining of opt.channels channels use the internal .join method, so channel keys can again be handled properly
  • Fix matching channels when adding to or removing from opt.channels automatically (on .join or .part), especially around channels with channel keys or different casing

Misc:

  • Tests: Upgrade mocha dependency to ^4.0.0
  • Tests: Fix never-ending tests by manually disabling the flood protection interval when the client is used up

v0.8.0

29 Sep 19:36
Compare
Choose a tag to compare

Breaking changes:

  • The unhandled event must not be used to catch specific events – use raw for that instead. It should be used to handle explicitly events the bot does not do anything with, such as by notifying the user that such an event has occurred
  • Errors in the raw event no longer throw, but are caught and passed to the error event. As in the documentation, this may still throw if no handler is bound to this event
  • The .join and .part methods no longer accept space-separated lists of channels; this caused the bot to send invalid commands to the server. Instead, use comma-separated channel lists, and then the callback will be called for each channel as in the documentation
  • EventEmitter is now used directly from the require (i.e. var EventEmitter = require('events'), whereas previously var EventEmitter = require('events').EventEmitter). This fixes a bug with an atom project using the unforked node-irc version (relevant pull request) but may break compatibility with old versions of node (0.x versions, as those are no longer tested against)

New features:

  • Add irc.canConvertEncoding() (aliased to client.canConvertEncoding()) to test if the library can convert different encodings with the libraries it's located
  • Add support for JOIN 0 (which, in the IRC spec, parts from all channels)
  • Handle SASL better: use the IRCv3 spec, and if the server does not support SASL, emit on the error event – fixes part of #38

Fixed bugs:

  • Ensure the debug config option causes the client not to output when disabled – fixes #34
  • Stop renicking properly when renickCount is hit. Previously it would renick to a second nickname and then continue the renicking process – fixes #41
  • Handle code 378 on join – fixes part of #38
  • Ensure client.action splits long messages properly (that is, it still wraps long lines in the CTCP action markers)
  • Ensure the bot disconnects immediately after programmatically calling activateFloodProtection now disconnects immediately like if opt.floodProtection is used
  • Store the data from rpl_isupport in a way that represents its structure better (objects instead of arrays for key-value pairs, and consistently parse values as integers where applicable)
  • Emit the lowercase version of the names#channel event when #channel is mixed-case
  • Clean up the automatic reconnection to the server when manually calling client.disconnect()
  • Trigger the callback to join and part even if the server channel differs in case from the one passed to client.join or client.part

Misc:

  • Add copyright notice to lib/irc.js per fork
  • Update various dependencies (coveralls, nyc)
  • Docs: Move the 'character set detection' instructions to their own section of the README
  • Docs: Mention the Gitter chat under the 'Further Support' section of the README
  • Docs: Add test coverage badge to README
  • Docs: Reorder config options and add descriptions for missing items – fixes #33
  • Docs: Improve presentation by marking things in inline code tags, instead of italics
  • Docs: Clarify that client.activateFloodProtection should only be called once per instance, not once per connection
  • Docs: Fix typos especially around new inline code blocks
  • Tests: Overhaul the whole testing system from tape to mocha
  • Tests: Improve the test.js irc client REPL
  • Tests: Add tests for a lot more of the code – this takes our coverage up from 62.614% to 94.334%! (#29)

v0.7.0

06 Aug 23:35
Compare
Choose a tag to compare

New features:

  • Add auto-renick functionality, to renick to config nickname if the bot receives an err_nicknameinuse event and the autoRenick config option is enabled (relatedly: add a cancelAutoRenick method) – fixes #15
  • Disallow connect() when already connected (output to stderr and ignore)
  • Likewise disallow disconnect() when already disconnected
  • Add new unhandled event for when a message is received that isn't handled internally (not handled otherwise, not recognized as an error)
  • Debug when line received from server
  • Debug on ping timer start and stop

Fixed bugs:

  • Flag code 477 as an error (ERR_NOCHANMODES or ERR_NEEDREGGEDNICK, not given a human-readable name due to ambiguity) – fixes #19
  • Only autorejoin when the client itself is kicked; add tests for autorejoin
  • Emit the error event after the output more consistently
  • Add test for strict parsing mode
  • Add test for CyclingPingTimer
  • Reduce chance of random failure in tests (by not initializing a server when we disconnect the client without any server interaction)
  • Debug CyclingPingTimer to stdout instead of stderr
  • Run linting in posttest phase

Misc:

  • Add code coverage using nyc and coveralls
  • Rename test-433-before-001 to test-nickinuse-before-welcome; move some fixtures into the test itself
  • Reword some tests, add skeleton for more tests (hopefully these will be implemented soon)
  • Docs: Update CONTRIBUTING.md to reflect fork
  • Docs: Reorder events and methods in documentation to hopefully be more relevantly grouped
  • Docs: Update whois example
  • Docs: Clean up some comments in the code
  • Docs: Add netError event (emitted when the socket connection to the server emits an error event – see net.Socket for more details)
  • Docs: Fix some typos
  • Docs: Reorder config options to have the order match between the object and the later paragraphs

v0.6.2

16 Jul 00:23
Compare
Choose a tag to compare

Fixed bugs:

  • Fix reconnection by destroying the connection only when properly closed (and add a test for this)
  • Guard an error from showing when showErrors is false; relatedly use an 'out' object for error and debug messages to be less repetitive with guarding based on config values
  • Latest changelog version links now point to the right repository
  • Docs: fix formatting of a RFC2812 link
  • Remove unused jscs devDependency

Misc:

  • Make the 'non-latest' message (hopefully) less confusing, only show in debug mode
  • Update tape to ^4.7.0
  • Update eslint to ^4.2.0
  • Docs: clarify example message is an example
  • Docs: be consistent with phrasing around boolean config values
  • Add Node 8 to Travis builds

v0.6.1

01 Jul 15:52
Compare
Choose a tag to compare

Fixed bugs:

  • Fix crash on -mode event when mode not set (e.g. unbanning a user when the user is not banned)
  • README now represents updated version of program, represents name change of npm package to irc-upd

v0.6.0

01 Jul 15:52
Compare
Choose a tag to compare

This is the first version of a fork to the project.
It attempts to address some of the more major issues with the original version.
It is also the first version to stop testing against node.js 0.10 and 0.12.

Implemented enhancements:

  • Upgrade dependency tape
  • Switch to eslint instead of jscs for linting, now jscs is no longer maintained
  • Support Japanese and Korean characters in nicknames, and add a corresponding option, enableStrictMode, to switch back to the more RFC2812-compliant parsing mode
  • Improve documentation; fix up some typographical errors, ensure code blocks parse correctly, improve some descriptions and add the password option to the options object

Fixed bugs:

  • Keep track of users in each channel better, so the quit, kill and nick events are only passed the relevant channels.
  • Split lines by byte instead of character, so line splitting with higher Unicode codepoints (e.g. CJK characters) works
  • Prevent tests from hanging by properly disconnecting the client (and stopping the ping timer) when the 'close' event is received
  • Related to the above, do not respawn a connection when receiving the 'close' event if the connection is not the current connection (as it has presumably been abandoned)
  • Only send messages when the bot's connection is available, to prevent a crash when messages are queued and the connection ends