Releases: EnriqCG/rcon-srcds
Releases · EnriqCG/rcon-srcds
Release 2.1.0
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
Bump devDependencies due to security vulnerabilities and update the package description.
What's Changed
- Bump lodash from 4.17.20 to 4.17.21 by @dependabot in #15
- Bump glob-parent from 5.1.1 to 5.1.2 by @dependabot in #16
- Bump minimist from 1.2.5 to 1.2.6 by @dependabot in #19
- Bump ansi-regex from 4.1.0 to 4.1.1 by @dependabot in #20
- Bump minimatch from 3.0.4 to 3.1.2 by @dependabot in #23
- Bump word-wrap from 1.2.3 to 1.2.4 by @dependabot in #24
Full Changelog: 2.0.1...2.0.2
Release 2.0.1
Release v2.0.0
- Type definitions for
rcon-srcds
! maximumPacketSize
has been renamed tomaxPacketSize
. This is a breaking change.- No connection is opened when instantiating the
RCON
class. The socket only initializes after usingauthenticate()
. 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()
andisAuthenticated()
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)