Skip to content

Releases: line/line-bot-sdk-nodejs

v9.7.1 Support new Membership API and Webhook

14 Feb 08:22
3a0b18f
Compare
Choose a tag to compare

What's Changed

  • Support publishing packages with provenance by @Yang-33 in #1161

Note this patch is not related to sdk users. See https://github.com/line/line-bot-sdk-nodejs/releases/tag/v9.7.0 about new features.

Dependency updates

Full Changelog: v9.7.0...v9.7.1


This release is prepared by @Yang-33

v9.7.0 Support new Membership API and Webhook

13 Feb 10:01
0678d7e
Compare
Choose a tag to compare

What's Changed

  • Support new Membership API and Webhook by @github-actions in #1163

Support new Membership API and Webhook

We have implemented and supported new API and Webhook about Membership.

API to get a list of users who joined the membership

You can obtain a list of user IDs for users who have joined the membership of your LINE Official Account by calling client.getJoinedMembershipUsers(...).

Documents: https://developers.line.biz/en/reference/messaging-api/#get-membership-user-ids

Membership Webhook

We have introduced new Webhook events MembershipEvent that indicates that a user has joined, left or renewed a membership of your LINE Official Account.

Documents: https://developers.line.biz/en/reference/messaging-api/#membership-event

For more details

For more details, check out the announcement: https://developers.line.biz/en/news/2025/02/13/membership-api/

(original PR is line/line-openapi#86)

Dependency updates

Full Changelog: v9.6.0...v9.7.0


This release is prepared by @eucyt

v9.6.0 Support API of Shared Audiences in Business Manager

12 Feb 09:50
d4ee02c
Compare
Choose a tag to compare

What's Changed

Add /v2/bot/audienceGroup/shared path by @github-actions in #1160

Shared Audiences in Business Manager API Support

We have added and supported new API endpoints related to Shared Audiences in Business Manager.

API to Get Shared Audience Information

You can obtain detailed information about a specific audience shared in Business Manager by calling the endpoint:

  • GET https://api.line.me/v2/bot/audienceGroup/shared/{audienceGroupId}

API to Get List of Shared Audiences

You can acquire a list of audiences shared in Business Manager using the following endpoint:

  • GET https://api.line.me/v2/bot/audienceGroup/shared/list

By using the "Get Shared Audience Information" endpoint, you can retrieve more detailed data about each audience.

Documents and Reference

For more information, please refer to the links provided above.


line-openapi updates

Dependency updates

Other Changes

Full Changelog: v9.5.3...v9.6.0


This release is prepared by @eucyt

v9.5.3 Remove obsolete GET /v2/bot/message/delivery/ad_phone

23 Jan 08:41
f6dfa94
Compare
Choose a tag to compare

What's Changed

  • Retire GET /v2/bot/message/delivery/ad_phone by @github-actions in #1138

GET /v2/bot/message/delivery/ad_phone was sunset.
This change removes it as it's no longer necessary to include it in line-openapi.

(original PR is line/line-openapi#82)

line-openapi updates

  • Retire GET /v2/bot/message/delivery/ad_phone by @github-actions in #1138

Dependency updates

Other Changes

  • Fix renovate config for gitsubmodule by @Yang-33 in #1134
  • Fix double-quote handling in release creation workflow by @Yang-33 in #1139

Full Changelog: v9.5.2...v9.5.3

v9.5.2 Remove obsolete feature: Audience Match

20 Jan 03:06
0ac4d2f
Compare
Choose a tag to compare

What's Changed

  • Remove obsolete feature: Audience Match by @github-actions in #1130

The Audience Match feature (/bot/ad/multicast/phone) was sunset in October 2023. This change removes it as it's no longer necessary to include it in line-openapi.

(original PR is line/line-openapi#80)

Dependency updates

Other Changes

  • Rename update-code.yml to generate-code.yml by @Yang-33 in #1124
  • Limit the timing of git submodule updates by renovate to avoid disrupting work during working hours by @Yang-33 in #1126

Full Changelog: v9.5.1...v9.5.2


This release is prepared by @Yang-33

v9.5.1 Add new errorCode 4 of NarrowcastProgressResponse

15 Jan 09:12
f3c3783
Compare
Choose a tag to compare

What's Changed

A new value in "NarrowcastProgressResponse#errrorCode" was defined and comments have been added to the SDK.
https://developers.line.biz/en/reference/messaging-api/#get-narrowcast-progress-status

  • Add new errorCode 4 of NarrowcastProgressResponse by @github-actions in #1120

line-openapi updates

  • Codes are generated by openapi generator by @github-actions in #1063

Dependency updates

Other Changes

  • Improve a way to update package version on release by @Yang-33 in #1057
  • Automate to prepare release note with next version by @Yang-33 in #1061
  • Open issue when release failed by @Yang-33 in #1065
  • Allow renovate PR to have un committed changes by @Yang-33 in #1066
  • Set title and description written in line-openapi PR by @Yang-33 in #1074
  • Delete unnecessary docs-deploy scripts by @Yang-33 in #1080
  • Modify doc index (basic usage -> TypeScript) by @Yang-33 in #1085
  • Drop @types/mocha dependency by @Yang-33 in #1104
  • Renovate should update package-lock.json in examples automatically when toplevel dependencies are updated by @Yang-33 in #1108
  • Show filenames of diff from auto-generated files in CI by @eucyt in #1110
  • Bye ts-node by @Yang-33 in #1112

New Contributors

Full Changelog: v9.5.0...v9.5.1


This release is prepared by @eucyt

v9.5.0 Bot Mention

13 Nov 08:15
d225bba
Compare
Choose a tag to compare

What's Changed

#1035

Now we've supported mention features

  1. user to bot mention
  2. bot to user mention

About user to bot mention

We've been provided a feature that allows users to mention a bot in group chats on the LINE app. In the Messaging API, we'd like to inform you that a property has been added to the webhook event object sent to the bot server when a user sends a message containing a mention.
This allows bots to recognize when they're mentioned by a user in group chats.
For more details, you can read https://developers.line.biz/en/news/2024/10/30/messaging-api-webhook/ .

About bot to user mention

In the Messaging API, we've released text message (v2) as a new message object. By using text message (v2), you can specify mentions to users. In addition, compared to the text message that we've provided up until now, it's now easier to specify LINE emoji.
For more details, you can read https://developers.line.biz/en/news/2024/10/30/text-message-v2/ .

Dependency updates

Other Changes

  • PR must fail when generated code is not committed by @Yang-33 in #1046

Full Changelog: v9.4.3...v9.5.0

v9.4.4 Bot mention

31 Oct 08:22
142a40b
Compare
Choose a tag to compare

What's Changed

Support bot mention features:

line-openapi updates

  • Codes are generated by openapi by @github-actions in #1016
  • Codes are generated by openapi by @github-actions in #1035

Dependency updates

Full Changelog: v9.4.2...v9.4.3

v9.4.2

24 Oct 05:18
0e0e5b7
Compare
Choose a tag to compare

What's Changed

Fix to avoid decoding an empty response body as JSON. #1013

Dependency updates

Other Changes

  • Fix not to decode as JSON the empty response body by @habara-k in #1013

New Contributors

Full Changelog: v9.4.1...v9.4.2

v9.4.1 Remove unintentional "null" from AudienceGroupFailedType

08 Oct 08:30
114aaa8
Compare
Choose a tag to compare

What's Changed

unintentional "null" is removed from AudienceGroupFailedType. #994

line-openapi updates

  • Codes are generated by openapi by @github-actions in #994

Dependency updates

Other Changes

Full Changelog: v9.4.0...v9.4.1