Skip to content

Releases: zulip/github-actions-zulip

v1.0.2

21 Feb 22:29
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.1...v1.0.2

v1.0.1: A maintenance release.

01 Dec 20:39
cc9efe3
Compare
Choose a tag to compare

This tag is dedicated entirely to maintenance and contains no changes requiring user intervention:

  • Upgrade from NodeJS v12 (which is deprecated on GitHub Actions) to NodeJS v16.

  • Document the usage and recommendation of GitHub Actions Secrets for storing api-key arguments.

  • Upgrade @vercel/ncc bundler to work around NodeJS v16 OpenSSL-related quirks.

  • Upgrade package-lock.json to v2 schema.

v1.0.0

14 Aug 13:12
Compare
Choose a tag to compare

Release meta

Released on: 2021-08-14
Released by: @Mogztter

Logs: full diff

Changelog

Breaking changes

⚠️ Please use zulip/github-actions-zulip/send-message@v1 instead of yuzutech/zulip-send-message-action@v0.1.2.
If you were using password as authentification method, please get an API key through Zulip's web interface and use api-key instead.
Finally, username field was renamed to email to be consistent with Zulip API naming.

Before

- name: Send a stream message
  uses: yuzutech/zulip-send-message-action@v0.1.0
  with:
    username: 'username@example.com'
    api-key: 'abcd1234'
    organization-url: 'https://org.zulipchat.com'
    to: 'social'
    type: 'stream'
    topic: 'Castle'
    content: 'I come not, friends, to steal away your hearts.'

After

- name: Send a stream message
  uses: zulip/github-actions-zulip/send-message@v1
  with:
    email: 'username@example.com'
    api-key: 'abcd1234'
    organization-url: 'https://org.zulipchat.com'
    to: 'social'
    type: 'stream'
    topic: 'Castle'
    content: 'I come not, friends, to steal away your hearts.'
  • Align naming with Zulip API
    • Remove password as this authentification method is not recommended (the preferred auth method is via api-key)
    • Rename username to email for consistency
  • Transfer the repository to the @zulip organization
  • Move the "send message action" to a subdirectory

Improvements

  • Catch unexpected errors to provide better error messages

Infrastructure

  • Bump @actions/core from 1.2.6 to 1.4.0
  • Bump @actions/github from 4.0.0 to 5.0.0
  • Bump eslint from 7.21.0 to 7.32.0
  • Use a bot account for integration tests

Documentation

v0.1.0

10 Mar 14:18
Compare
Choose a tag to compare

First release 🎉

0.1.0

10 Mar 14:17
Compare
Choose a tag to compare

First release 🎉