File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ in development
55--------------
66* Exit hubot on unhandled promise rejections and uncaught exceptions, usually caused by unrecoverable errors (bug fix)
77
8+ 0.9.4
9+ -----
10+ * Add pagination support for action aliases - fixes #158 (bug fix)
11+
8120.9.3
913-----
1014* Add initial support for Microsoft Teams via BotFramework (new feature)
Original file line number Diff line number Diff line change 11{
22 "name" : " hubot-stackstorm" ,
33 "description" : " A hubot plugin for integrating with StackStorm event-driven infrastructure automation platform." ,
4- "version" : " 0.9.3 " ,
4+ "version" : " 0.9.4 " ,
55 "author" : " StackStorm, Inc. <info@stackstorm.com>" ,
66 "license" : " Apache-2.0" ,
77 "keywords" : [
2727 "coffee-script" : " 1.12.7" ,
2828 "lodash" : " ^4.17.11" ,
2929 "rsvp" : " ^4.8.4" ,
30- "st2client" : " ^1.1.1 " ,
30+ "st2client" : " ^1.1.2 " ,
3131 "truncate" : " ^2.0.1" ,
3232 "uuid" : " ^3.0.0"
3333 },
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ module.exports = function(robot) {
224224 var loadCommands = function ( ) {
225225 robot . logger . info ( 'Loading commands....' ) ;
226226
227- api . actionAlias . list ( )
227+ api . actionAlias . list ( { limit : - 1 } )
228228 . then ( function ( aliases ) {
229229 // Remove all the existing commands
230230 command_factory . removeCommands ( ) ;
You can’t perform that action at this time.
0 commit comments