Skip to content

Releases: poshbotio/PoshBot

v0.8.0

06 Oct 21:58
Compare
Choose a tag to compare

[0.8.0] 2017-10-01

Added

  • Commands can now be marked as needing approval by someone in a designated group.
    Commands that require approval will be put into a pending state with an expiration time set via the bot configuration.
    These pending commands can be approved by the calling user (if calling user is already in designed approval group) or require peer approval by another user.
    Pending commands can either be approved or denied by a user in the approver group(s). Who approved (or denied) a command is logged.
  • Added builtin commands [approve], [deny], and [pending] to managed commands that require approval.
  • Added new message reactions to reflect pending / approved, or denied command status.
  • For convenience, added the name of the user [FromName] and name of the channel [ToName] to the [$global:PoshBotContext] object that is available to all bot commands.

Fixed

  • Ignore ephemeral messages from Slack that come from SlackBot. We don't want to attempt to trigger commands based on these.
  • Config provided parameters can now be used on commands of type [regex].
  • Do not send command reactions to event-triggered commands as there is not a normal message to add the reaction to.

Changes

  • Modules are now removed from the PowerShell session when removed from PoshBot.
  • Add warning reaction to commands that have any items in the warning stream of the job.

v0.7.1

03 Sep 22:22
Compare
Choose a tag to compare

[0.7.1] 2017-09-03

Fixed

  • Bugs in [CommandParser] class when parsing certain strings (particularly complex urls and @mentions)

Changes

  • The Slack backend will now translate @mentions that are internally referenced by Id into a username.
    '<@U4AM3SYI8>' becomes '@devblackops'

v0.7.0

30 Aug 05:15
Compare
Choose a tag to compare

[0.7.0] 2017-08-29

Added

  • Support for importing PowerShell modules that include cmdlets as well as functions.
    Note that custom PoshBot metadata to control command name, aliases, command type, etc is currently not supported on cmdlets.
  • New bot configuration properties [MaxLogSizeMB] and [MaxLogsToKeep] to control log file size and rotation.
  • Command execution history is now logged by default to a separate log file [CommandHistory.log].
    Command history log settings can be controlled with configuration properties [LogCommandHistory], [CommandHistoryMaxLogSizeMB], and [CommandHistoryMaxLogsToKeep].
  • New [slap] command to slap a user with a large trout (via @jaapbrasser)

Changes

  • Implemented and improved information, verbose, and debug logging throughout PoshBot.

Fixed

  • Bug where parser was incorrectly parsing URLs in command string
  • Bug where users who had no permissions assigned via groups/roles where being prevented from executing commands that had no permissions attached to them.
    who had no permissions assigned to them
  • Improved reconnection logic and logging in Slack backend implementation.

v0.6.0

30 Aug 05:13
Compare
Choose a tag to compare

[0.6.0] 2017-07-18

Added

  • New builtin command Update-Plugin which updates an existing plugin to a newer version and optionally removes all previous versions.
  • New command Get-CommandStatus to show running commands.

Fixed

  • Better error handling logic when parsing command help.
  • Use Configuration module when reading in bot configuration with Get-PoshBotConfiguration so PSCredentials can be deserialized correctly.
  • Improved user name/id resolution to avoid Slack API rate limits.
  • Fixed regression when using the [PoshBot.BotFrom()] custom attribute with an empty parameter.
  • PR46 - Adjust help filter in Get-CommandHelp command to match exact first and display results if exactly one command was matched.
    Continue with existing behavior if more than one command is returned. (via @RamblingCookieMonster)

v0.5.0

15 Jun 06:14
Compare
Choose a tag to compare

[0.5.0] 2017-06-14

Added

  • Any regex group matches are now passed in the [Arguments] parameter to the function/command.
  • Ability to specify a version of a loaded plugin command to execute.
    Use plugin:command:version or command:version syntax to execute the command from a specific version of the plugin.
  • Support for one time scheduled commands. Commands can now be scheduled to execute once after the specified start date/time.
  • Improved the help usage text for commands.
  • The [!help] command now matches against command aliases as well.

Fixed

  • Help syntax now reflects the command name (as known in PoshBot) instead of PowerShell function name.

Changed

  • Command usage help is now displayed differently according to the command's trigger type.
    For [Command] trigger types, the command/function's parameters are show, for [Regex] trigger
    types, the trigger regex expression is shown.

v0.3.0

17 May 06:06
Compare
Choose a tag to compare

[0.3.0] 2017-05-16

Added

  • PR31: Functions to get/set/remove stateful data within plugin command (via @RamblingCookieMonster)
  • Ability to override command name via the [PoshBot.BotCommand] attribute.
  • Ability to set aliases for a command via the [PoshBot.BotCommand] attribute.
  • Ability to use [array] and [switch] parameter values for commands.
  • Code block support to custom text response via New-PoshBotTextResponse.
  • File upload support via new custom response function New-PoshBotFileUpload.

v0.1.0

23 Mar 04:39
Compare
Choose a tag to compare

[0.1.0] - 2017-03-21

Added

  • Initial documentation for mkdocs
  • New function to create scheduled task to run PoshBot
  • New builtin command to get recent command execution history
  • Commands to remove plugins/roles/groups
  • Support for multiple plugin versions

Changed

  • Standadized builtin bot command parameter names
  • Move demo commands (WolframAlpha, Giphy) into seperate plugin repos
  • Move network plugin into seperate repo

Fixed

  • Fix StopUpstreamCommandsException exception from being thrown in Install-Plugin command