Skip to content

Releases: EnriqCG/rcon-srcds

Release 2.1.0

25 Nov 17:58
Compare
Choose a tag to compare

What's Changed

  • Add proper support for multipacket responses by @Taraman17 in #25

Huge shoutout to @Taraman17 for their contribution!

Full Changelog: 2.0.2...2.1.0

Release 2.0.2

25 Jul 10:07
Compare
Choose a tag to compare

Bump devDependencies due to security vulnerabilities and update the package description.

What's Changed

Full Changelog: 2.0.1...2.0.2

Release 2.0.1

03 Jan 00:34
Compare
Choose a tag to compare
  • Convert export to default export (#11)
  • Add @c43721 as contributor (43b5b12)
  • Update README.md with ES6 imports (13a06bd)

Release v2.0.0

01 Jan 17:29
9337ba6
Compare
Choose a tag to compare
  • Type definitions for rcon-srcds!
  • maximumPacketSize has been renamed to maxPacketSize. This is a breaking change.
  • No connection is opened when instantiating the RCON class. The socket only initializes after using authenticate(). So you can now define an RCON object without actually opening a connection.
  • The last point enables a more powerful disconnect() method. It's now possible to authenticate and disconnect several times without re-instantiating the RCON object.
  • New isConnected() and isAuthenticated() methods inside the RCON class.
  • Code is now more readable with fewer unnecessary comments.
  • Added ESLint
  • Fix issue with types and response never being resolved (thanks @c43721)