SSIS Components for Slack

Build 26.0.9655

Changelog

General Changes

DateVersionSourceCategoryTypeDescription
2026-05-2726.0.9643GeneralConnectionRemoved
  • Removed the deprecated ReplaceInvalidTypesWithNull connection property. Use the ReplaceInvalidValuesWithNull property instead.
2026-05-1526.0.9631SlackData ModelAdded
  • Added the TeamBillableInfo view, with the UserId and IsBillingActive columns, to expose billable-user information for the workspace.
  • Added the TeamId pseudocolumn to the TeamBillableInfo view to support org-level tokens.
  • Added the GetTeamBillingInfo stored procedure, which returns the workspace's billing plan.
2026-05-1526.0.9631SlackQuery ExecAdded
  • Added cursor-based pagination support for the TeamBillableInfo view.
  • Added query slicing on the UserId column of the TeamBillableInfo view. Queries that filter UserId with the IN operator or OR predicates issue targeted API calls instead of fetching all users client-side.
2026-05-1526.0.9631SlackData ModelRemoved
  • Removed the GetTeamBillableInfo stored procedure. Use the TeamBillableInfo view instead.
2026-05-0726.0.9623GeneralData ModelAdded
  • Added the ColumnCapabilities column to the sys_tablecolumns system table. This column is a bit mask denoting the column's write capabilities.
2026-04-1526.0.9601GeneralQuery ExecChanged
  • String comparisons using GREATER, LESS, and CONTAINS operators are now case-insensitive by default.
2026-04-0826.0.9594SlackSecurityChanged
  • TLS 1.3 is now supported by default for HTTP connections.
2026-02-2425.0.9551SlackAdded
  • Added the IsMarkdownText pseudo-column to the Messages table. When set to true, message text is treated and posted as Markdown.
2026-01-1325.0.9509GeneralAdded
  • Added support for the REGEXP_REPLACE() string function.
2026-01-0825.0.9504SSISAdded
  • Added support for SQL Server Integration Services 2025 and Visual Studio 2026
2026-01-0225.0.9498SlackAdded
  • Added the ChannelAPIType enum property. This property lets users choose how Slack channel data is fetched. Options for this property are List (the default), User, or AdminSearch.
2025-12-0525.0.9470GeneralAdded
  • Added support for the INSERT INTO SELECT statement, with driver-side execution for providers that do not support the operation natively.
2025-10-0625.0.9410GeneralAdded
  • Support for parsing datetime formats using ".S" and ",S" for milliseconds and nanoseconds.
2025-10-0325.0.9407SlackAdded
  • In order to support the admin.conversations.search method, we added a new property, UseSearchConnection. When set, this property enables the user to switch to the Admin.conversations.search endpoint.
2025-09-1225.0.9386GeneralAdded
  • Added the IsInsertable, IsUpdateable, and IsDeleteable columns to the sys_tables table.
2025-09-1025.0.9384GeneralChanged
  • All columns in statically defined Views are now reported as read-only.
2025-09-0525.0.9379SlackDeprecated
  • Deprecated the TeamId column in the Channels table.
2025-09-0325.0.9377GeneralChanged
  • Corrected the behavior when IN criteria with NULL values are used in the projection part. It now returns NULL instead of 0. For example, "NULL IN (1,2)" returns "NULL".
2025-09-0125.0.9375GeneralAdded
  • Added support for using the CAST function with infinity values. This function can cast "inf" and "-inf" to DOUBLE, FLOAT, or REAL.
2025-08-2125.0.9364GeneralChanged
  • Report behavior change:
    • Fixed inconsistent string value comparisons in non-table queries.
    • For example, "SELECT 'A' = 'a'" previously returned false, but it now returns true.
2025-08-1325.0.9356GeneralChanged
  • Changed the maximum number of pages held in memory from 15 to 5 for the page providers to decrease heap usage.
2025-08-0825.0.9351SlackAdded
  • Added Token as an AuthScheme.
2025-08-0825.0.9351SlackDeprecated
  • Deprecated UserToken as an AuthScheme.
2025-07-1025.0.9322SlackAdded
  • Exposed the Scope connection property.
2025-06-2525.0.9307GeneralRemoved
  • Removed the "ADLS Gen 1" value from the ConnectionType property.
2025-06-2025.0.9302GeneralAdded
  • Created the following functions:
    • TEXT_ENCODE: encodes a string into a different charset (UTF8 → UTF7 and returns a binary array as the result).
    • TEXT_DECODE: takes a binary array and decodes it back into a string when provided the charset.
    • BASE64_ENCODE: takes a binary array and encodes it as a base64 string (varchar).
    • BASE64_DECODE: takes a base 64-encoded string and decodes it into a binary array.
2025-06-1825.0.9300GeneralChanged
  • The internal code for exception handling has been refactored. Exception messages returned during certain error conditions may now have different wording or formatting.
2025-05-2725.0.9278GeneralRemoved
  • Removed the "Proprietary" enum option from ProxyAuthscheme.
2025-05-2725.0.9278SSISRemoved
  • Removed support for the C# implementation of SQLite. Features that previously used this implementation by default, such as AutoCache and EF6 schema caching, now require the native SQLite driver.
2025-04-2525.0.9246SlackAdded
  • Added the ItemURL column to both the Channels and Messages tables.
2025-02-1524.0.9177GeneralAdded
  • Added support for converting unsigned integer types to the nearest signed data type that has enough precision to hold the unsigned value.This is done for JDBC only because it does not have support for unsigned data types.
2025-01-0324.0.9134SlackAdded
  • Added a new table, Bookmarks.
2024-12-1024.0.9110SlackAdded
  • Added a view, TeamAccessLogs, that can only be accessed by workspace administrators.
2024-11-2724.0.9097GeneralAdded
  • Added ThreadId to LogModule output. Logfile lines now include the Thread ID associated with the action being performed.
2024-10-2524.0.9064SlackAdded
  • Added new AddProfilePhoto stored procedure to set the authenticated user's profile photo.
2024-10-2324.0.9062SlackAdded
  • Added support for DELETE operations to the ScheduledMessages table.
2024-10-2124.0.9060SlackAdded
  • Added a stored procedure: GetTeamBillableInfo.
  • Added a stored procedure: SetReadCursor.
2024-10-1824.0.9057SlackAdded
  • Added two new stored procedures: RemoveProfilePhoto and SendEphemeralMessage.
  • Added the GetPermaLink stored procedure.
2024-10-0924.0.9048SlackAdded
  • Added a new view: UsersPresence.
2024-10-0324.0.9042SlackChanged
  • The ConversationMembers table now supports removing users from conversations via the DELETE operation.
2024-10-0324.0.9042SlackAdded
  • Added the ShareMeMessage stored procedure. This procedure shares a "me message" into a channel.
2024-09-1724.0.9026SlackAdded
  • Added support for the ConversationMembers view.
2024-08-1424.0.8992SlackAdded
  • Added support for the UserProfile table.
  • Added support for the EndCall stored procedure.
  • Added support for the TeamProfileFields and TeamProfileSections views.
  • Added the following columns to the Team view: IsVerified, LobSalesHomeEnabled, Url, and AvatarBaseUrl.
2024-08-1424.0.8992SlackRemoved
  • Removed the DELETE operation for the Calls table.
2024-07-2924.0.8976SlackAdded
  • Added support for 4 stored procedures: EndDnd, EndSnooze, Set Snooze, and SendScheduledMessage.
  • Added one new view: TeamInfo.
2024-07-2424.0.8971SlackRemoved
  • Removed support for the CompleteReminder stored procedure.
2024-07-2424.0.8971SlackAdded
  • Added support for the EnableUserGroup and DisableUserGroup stored procedures.
2024-07-2324.0.8970SlackAdded
  • Added support for the UploadFile stored procedure.
2024-06-2124.0.8938SlackChanged
  • Changed the default OAuthVersion from v1 to v2.
2024-05-2224.0.8908SlackAdded
  • Added ChannelType connection property to avoid scope-related issues when fetching data from Channels, Messages, and MessageReplies tables.
2024-05-0924.0.8895GeneralChanged
  • The ROUND function previously did not accept negative precision values. That feature has now been restored.
2024-04-2523.0.8881SlackAdded
  • Added the Frequency and RecurrenceWeekdays columns to the Reminders table.
2024-04-1623.0.8872SlackAdded
  • Added support for the JoinMultipleChannels stored procedure.
2024-04-0523.0.8861SlackAdded
  • Added the CreatedTime and ParentCreatedTime columns to the MessageReplies table.
2024-03-1523.0.8840GeneralAdded
  • Created a new SQL function called STRING_COMPARE that provides java's String.compare() ability to SQL queries. Returns a number representative of the compared value of two strings
2023-11-2923.0.8733GeneralChanged
  • The ROUND function doesn't accept the negative precision values anymore.
2023-11-2923.0.8733GeneralChanged
  • The returning types of the FDMonth, FDQuarter, FDWeek, LDMonth, LDQuarter, LDWeek functions are changed from Timestamp to Date.
  • The return type of the ABS function will be consistent with the parameter value type.
2023-11-2823.0.8732GeneralAdded
  • Added the HMACSHA256 formatter to allow for secrets to be decoded if it is in base64 format
2023-10-0923.0.8682SlackAdded
  • Added the AuthScheme connection property with OAuth and UserToken values.
  • Added the UserToken connection property. Set this to use non-expiring tokens created in Slack.
2023-08-2323.0.8635SlackAdded
  • Added the CreatedTime, UserEditedDate, and UserEditedId columns to the Messages table.
2023-08-1823.0.8630SlackRemoved
  • Removed the Stars table, as it is being retired from the Slack API as of September 2023.
2023-06-2023.0.8571GeneralAdded
  • Added the new sys_lastresultinfo system table.
2023-05-1123.0.8531SSISRemoved
  • Removed support for SQL Server Integration Services 2012 and Visual Studio 2012/2013.
2023-04-2523.0.8515GeneralRemoved
  • Removed support for the SELECT INTO CSV statement. The core code doesn't support it anymore.
2023-04-1823.0.8508SlackAdded
  • Added support for the DownloadFile stored procedure.
2023-01-0422.0.8404SlackAdded
  • Added support for the Reactions, Stars, and Calls tables.
  • Added support for the Team and DND views.
2022-12-1422.0.8383GeneralChanged
  • Added the Default column to the sys_procedureparameters table.
2022-12-0622.0.8375SlackRemoved
  • Removed the ScopeV2 and ScopeOpenid parameters from the GetOAuthAuthorizationURL and GetOAuthAccessToken stored procedures.
2022-12-0522.0.8374SSISAdded
  • Added support for SQL Server Integration Services 2022 and Visual Studio 2022
2022-09-3022.0.8308GeneralChanged
  • Added the IsPath column to the sys_procedureparameters table.
2022-08-1822.0.8265SSISChanged
  • Changed Azure module to Az module.
2021-12-0121.0.8005SlackAdded
  • Added support for OAuth2 V2 and Openid.
  • Added Refresh OAuth Access Token support for OAuth 2 V2 and Openid.
  • Added a connection property OAuthVersion, to opt for different versions of OAuth. By default this is set to V1 (Legacy OAuth mechanism).
2021-09-0221.0.7915GeneralAdded
  • Added support for the STRING_SPLIT table-valued function in the CROSS APPLY clause.
2021-08-0721.0.7889GeneralChanged
  • Added the KeySeq column to the sys_foreignkeys table.
2021-08-0621.0.7888GeneralChanged
  • Added the new sys_primarykeys system table.
2021-07-2321.0.7874GeneralChanged
  • Updated the Literal Function Names for relative date/datetime functions. Previously, relative date/datetime functions resolved to a different value when used in the projection as opposed to the predicate. For example: SELECT LAST_MONTH() AS lm, Col FROM Table WHERE Col > LAST_MONTH(). Formerly, the two LAST_MONTH() methods would resolve to different datetimes. Now, they will match.
  • As a replacement for the previous behavior, the relative date/datetime functions in the criteria may have an 'L' appended to them. For example: WHERE col > L_LAST_MONTH(). This will continue to resolve to the same values that were previously calculated in the criteria. Note that the "L_" prefix will only work in the predicate - it not available for the projection.
2021-07-2221.0.7873SSISAdded
  • Added a UI type editor for the SQLStatement property of the SQLExecutor component.
2021-05-2621.0.7816SSISAdded
  • Added support for semicolon-separated SQL queries.
2021-04-2521.0.7785GeneralAdded
  • Added support for handling client side formulas during insert / update. For example: UPDATE Table SET Col1 = CONCAT(Col1, " - ", Col2) WHERE Col2 LIKE 'A%'
2021-04-2321.0.7783GeneralChanged
  • Updated how display sizes are determined for varchar primary key and foreign key columns so they will match the reported length of the column.
2021-04-1621.0.7776GeneralAdded
  • Non-conditional updates between two columns is now available to all drivers. For example: UPDATE Table SET Col1=Col2
2021-04-1621.0.7776GeneralChanged
  • Reduced the length to 255 for varchar primary key and foreign key columns.
2021-04-1621.0.7776GeneralChanged
  • Updated index naming convention to avoid duplicates.
2021-04-1621.0.7776SSISAdded
  • Added a create table button for the Destination Component to make it easier to add a new destination in SSIS.
  • Improved user experience for Source Component by allowing users to select columns via a new checkbox dialog.
2021-04-1621.0.7776SSISChanged
  • Improved query dialog for building parameterized statements.
2021-02-0820.0.7709SlackAdded
  • Added the following columns to the Messages table: Type, Item_type, Subtype, Team, Pinned_to, Purpose, BotId, BotLink, Username, Reply_count, Reply_users_count, Latest_reply, Last_read, Reply_usersAggreagte, Subscribed, Topic, Old_name, and Name.
2021-02-0820.0.7709SlackRemoved
  • Removed the following deprecated columns from the Messages table: Previous2MessageId, PreviousMessageId, NextMessageId, and Next2MessageId.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 26.0.9655