aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrygve Aaberge <trygveaa@gmail.com>2022-10-30 12:22:09 +0100
committerTrygve Aaberge <trygveaa@gmail.com>2022-10-30 12:22:09 +0100
commit6cddf1a3b893e0771330c713681c92ef509726fd (patch)
treed4c2710ffa98e27f27b36e7b30887cd2875f5231
parent51f124228b0d308719dd0d9b111b53235748bc67 (diff)
downloadwee-slack-6cddf1a3b893e0771330c713681c92ef509726fd.tar.gz
Release v2.9.1v2.9.1
-rw-r--r--CHANGELOG.md17
-rw-r--r--wee_slack.py2
2 files changed, 18 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c40a624..b1969b3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,22 @@
# Changelog
+## 2.9.1 (2022-10-30)
+
+### WeeChat compatibility
+
+- Update WeeChat version check to require >= 2.2. The reason for requiring this is that a feature of WeeChat 2.2 (specifying HTTP cookies) is necessary for adding support for the new type of session tokens added in version 2.9.0, so this should have been updated in that version.
+- Update usage of some deprecated WeeChat API methods.
+
+### Bug fixes
+
+- Open open IMs and MPIMs on start, not just unread (fixes #875).
+- Fix old type MPIMs not being marked as unread on start.
+- Evaluate value of the `weechat.look.buffer_time_format` option (fixes #871).
+- Fix link previews from apps not being recognized (fixes #834).
+- Show useful link for Slack posts.
+- Support receiving multiple header blocks in http responses. This was a regression introduced by implementing support for rate limiting in version 2.9.0.
+- Fall back to bot id as nick instead of a blank nick if no other info is available (it should be possible to fetch the nick, but that's a remaining bug).
+
## 2.9.0 (2022-09-19)
Note that Slack will make a breaking change in their API on September 20, 2022 (the day after this release), which means that all earlier versions of wee-slack will stop working. This release adds support for the change and will not be affected by it.
diff --git a/wee_slack.py b/wee_slack.py
index d234113..1bf0d41 100644
--- a/wee_slack.py
+++ b/wee_slack.py
@@ -76,7 +76,7 @@ except ImportError:
SCRIPT_NAME = "slack"
SCRIPT_AUTHOR = "Trygve Aaberge <trygveaa@gmail.com>"
-SCRIPT_VERSION = "2.9.0"
+SCRIPT_VERSION = "2.9.1"
SCRIPT_LICENSE = "MIT"
SCRIPT_DESC = "Extends weechat for typing notification/search/etc on slack.com"
REPO_URL = "https://github.com/wee-slack/wee-slack"