Skip to content

v1.4.0-beta.0

Pre-release
Pre-release

Choose a tag to compare

@LouisMazel LouisMazel released this 22 Apr 11:47
· 42 commits to main since this release

compare changes

🚀 Features

  • relizy: Add Slack webhook support, contributors block, and configurable message truncation (6101168)

    Slack integration now supports two transport options: the existing Bot Token or the new Incoming Webhook URL. When both are configured, the webhook takes priority and @slack/web-api is not required. Contributors are automatically appended to messages, respecting the global noAuthors setting and an optional Slack-specific override. Message truncation is now configurable via postMaxLength (default 2500 characters, previously hardcoded to 500). Existing token and channel configurations remain fully compatible.

    Example setup using webhook transport:

    import { defineConfig } from 'relizy'
    export default defineConfig({
      social: {
        slack: {
          enabled: true,
          webhookUrl: process.env.SLACK_WEBHOOK_URL,
          // postMaxLength: 2500   // optional, default 2500
          // noAuthors: false      // optional, hide contributors on Slack only
        },
      },
    })

📦 Build

❤️ Contributors