Skip to content

4.5.0

Compare
Choose a tag to compare
@JiPaix JiPaix released this 06 Jun 16:56
· 151 commits to main since this release

Fix(lib+cli)

  • add option to allow/reject connection on TLS enabled server with self-signed certificates
  • CLI user can use the --no-insecure option to enable this feature.

BREAKING CHANGES (cli)

  • remove parameter --no-secure that allowed downloads if the bot's name did not match the requested
  • add parameter --bot-name-match to block downloads if bot's name does not match the requested

BREAKING CHANGES (lib)

  • renamed parameter secure to botNameMatch to avoid confusion with tls
  • optional parameter tls is no longer a boolean
 params.tls = { 
   enable: false, // required
   rejectUnauthorized: false // optional - default false
 }