Skip to content

Latest commit

 

History

History
159 lines (130 loc) · 5.59 KB

CHANGELOG.md

File metadata and controls

159 lines (130 loc) · 5.59 KB

v2.1.3 - The Heat Stroke Release

  • Hubot now has a web interface and supports connect middleware, examples in httpd.coffee - atmos / tombell module.exports = (robot) -> robot.router.get "/hubot/version", (req, res) -> res.end robot.version
  • Add a catchAll callback that handles responses that match nothing else - titanous / ejfinnerman module.exports = (robot) -> robot.catchAll (msg) -> router.get "/hubot/version", (req, res) ->

v2.1.2

  • Update behaviour of finishing further execution of listeners
  • Scripts are now loaded in the following order
    • Scripts defined in ./hubot-scripts.json are loaded in order
    • Scripts are loaded alphabetically from /scripts

v2.1.1

  • The hwhoops release, finish/done behavior is handled elsewhere

v2.1.0

  • Introduce Response.finish() to indicate that a message should not be passed on to any other listeners
  • Scripts are evaluated in the following order
    • ./scripts is loaded alphabetically

    • The contents of ./hubot-scripts.json is loaded in order

      module.exports = (robot) -> robot.respond /\syo\s\?/i, (msg) -> msg.reply "Yo!" msg.finish()

v2.0.7

  • Update topic and logger scoping fixups - Horace Ko
  • Don't exit the process if listening to a room is denied

v2.0.6

  • Don't kill all username looks if some users don't have name attribute

v2.0.5

  • All adapters have been removed except for shell and campfire
  • Better win32 compatability
  • Campfire reconnects on streaming errors on a per-room basis

v2.0.0

  • Major adapter overhaul, they're now external - Tom Bell
  • Shell adapter now functions like a REPL - Tom Bell
  • Improved logging using log.js - Tom Bell
  • Search help commands - Gabriel Horner
  • Improvements to roles.coffee - Daniel Schauenberg

Upgrading

If you are not using the Campfire or Shell adapters please be aware before upgrading that adapters have been moved out of the code of hubot and you should install the hubot adapters from npm when people make them available. Until your adapter is available you may wish to remain on v1.1.11.

v1.1.11

v1.1.10

v1.1.9

v1.1.8

  • Fix a bug in robot.respond that allowed regexes to be constructed that could be triggered without prefixing with the robot's name - atmos
  • Fixup rarely triggered response stuff that uses an undefined variable

v1.1.7

v1.1.5

v1.1.2

  • Fix the optparse npm install anomaly

v1.1.1

  • Fix campfire adapter getting duplicate messages - atmos

v1.1.0

Upgrading

If you're using the redis persistence you're going to need to enable 'redis-brain.coffee' in your hubot-scripts.json file. It was moved there and the brain now supports events allowing you to use any persistence backend you want.

v1.0.5

  • Remove infinite loop script to keep things alive - atmos

v1.0.4

v1.0.3