Releases: soxtoby/SlackNet
Releases · soxtoby/SlackNet
v0.10.12
- Fixed deserialization of
EmojiApi.List
's response so emojis are returned properly. - Fixed deserialization of
DndApi.TeamInfo
's response so users' DnD statuses are returned properly.
Thanks to @omer-koren for his help with this release 🛠️
v0.10.11
- Added
State
toBlockActionRequest
for when request comes from a message. - Added
ChannelIdChanged
event. - Support for unfurling inside message composer and customized unfurl auth message.
- Added
FocusOnLoad
properties to blocks that support it. - Added
AccessibilityLabel
toButton
block.
Thanks to @makeitokay for their help with this release 💪
v0.10.10
v0.10.9
- Updating Newtonsoft.Json dependency to 13.0.1
IUsersApi.SetPresence
takes in aRequestPresence
enum instead ofPresence
, which has anAuto
property instead of anActive
property, as per the Slack API. The old method is still available, but marked asObsolete
.
v0.10.8
v0.10.7
- Added optional
teamId
parameter toIConversationsApi.List
Thankyou to @jtsai-osa for this release 👍
v0.10.6
v0.10.5
PlainText.Emoji
is true by default to match Slack's default behaviour when the property isn't specified in the JSON.- Added
MessageEventBase
base class forAppMention
&MessageEvent
with common properties. - Added
ExtraProperties
property toEvent
to catch any information that Slack sends that doesn't have an existing property. - Added missing
ClientMsgId
andTeam
properties toMessageEventBase
. - Added missing
ChannelType
property toMessageEvent
. The format doesn't match otherChannelType
properties, so I've left it as astring
for now, rather than using the existingChannelType
enum. - Pulled the
EventTs
property found on many event types up to theEvent
base class.