-
Notifications
You must be signed in to change notification settings - Fork 12
/
changelog.txt
65 lines (47 loc) · 2.6 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
=== 1.1.0-snapshot ===
2018-03-18 David Parsley <[email protected]>
* Add terminal connector for local bot operation, testing and development
2018-03-21 David Parsley <[email protected]>
* Make local config directory optional, for quicker quick starts
=== 1.0.0-snapshot ===
2018-03-11 David Parsley <[email protected]>
* Switch to CircleCI after Travis broke
* Added missing methods in script libraries
2018-02-28 David Parsley <[email protected]>
* Windows config dir search path is now only 'C:\ProgramData\Gopherbot'
2018-02-10 David Parsley <[email protected]>
* Started using Travis CI, deploying snapshot releases
2017-05-23 David Parsley <[email protected]>
* [Breaking] Fix WaitForReply - replace with Prompt(User)ForReply
The old WaitForReply* methods had a fatal flaw - they couldn't deal
with multiple simultaneous plugins doing WaitForReply at the same
time. If you asked the robot to tell you a joke twice in quick
succession, it would crash. After giving this lots of thought, I
made the difficult decision to replace WaitForReply* with
PromptForReply and PromptUserForReply.
Now, The first plugin to call Prompt*ForReply will have it's
prompt sent and reply returned; any other Prompt*ForReply won't
have their prompts displayed, and will get RetryPrompt returned.
The library will automatically retry three times, and will
return Interrupted after 3 RetryPrompt - so plugins shouldn't
check for that value.
* [Breaking] Go plugins now return a TaskRetVal (integer), required
* Added new type of plugin: Authorizer, for performing authorization
decisions, using plugin return values
* [Breaking] Elevators are now normal plugins, and configured with normal
plugin "Config:" stanza. See Configuration.md for information on configuring
elevators.
=== Released 0.9.0 ===
2017-05-01 David Parsley <[email protected]>
* Add links plugin, fix and improve lists plugin
* Fixed scrolling in Slack by adding message sending pause; also added
typing notifier
2017-04-21 David Parsley <[email protected]>
* The list of Users for a plugin can now contain globbing patterns
* All libraries now use a 'gopherbot_vX.foo' name format, in preparation
for future versions of plugin libraries
* Add support for hearing app/bot users in Slack connector. Note that apps
aren't guaranteed to have unique names, so the User value sent is
"bot:<non-unique name>:<unique bot ID>"; e.g. "bot:AWS notifier:BFOOBARBAZ";
this can be matched with a User of 'bot:*', or 'bot:AWS notifier:*', or
'bot:AWS notifier:BFOOBARBAZ'