Releases: line/line-bot-sdk-java
v9.13.0 Support mark as read by token API
What's Changed
- Support mark as read by token API by @github-actions[bot] in #1774
Support for "Mark as Read" by Token API
We have released a new Mark as Read API that allows developers to mark a user’s messages as read.
Previously, this functionality was available only to partners, but it is now publicly available.
When your server receives a user message via Webhook, the MessageContent will include a new field: markAsReadToken.
By calling the Mark as Read API with this token, all messages in the chat room up to and including that message will be marked as read.
Note: This feature assumes that your service uses the chat feature through Official Account Manager.
If chat is not enabled, messages from users are automatically marked as read, making this API unnecessary.
For more details, please refer to the release note: https://developers.line.biz/en/news/2025/11/05/mark-as-read/
(original PR is line/line-openapi#115)
Example
messagingApiClient.markMessagesAsReadByToken(new MarkMessagesAsReadByTokenRequest(
message.markAsReadToken()
));line-openapi updates
Dependency updates
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.4.4 by @renovate[bot] in #1758
- fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.20 by @renovate[bot] in #1759
- chore(deps): update kotlin monorepo to v2.2.21 by @renovate[bot] in #1760
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.5.7 by @renovate[bot] in #1762
- fix(deps): update dependency io.github.littleproxy:littleproxy to v2.4.6 by @renovate[bot] in #1764
- chore(deps): update gradle to v9.2.0 by @renovate[bot] in #1765
- chore(deps): update dependency org.openapitools:openapi-generator-gradle-plugin to v7.17.0 by @renovate[bot] in #1767
- chore(deps): update dependency org.openapitools:openapi-generator to v7.17.0 by @renovate[bot] in #1766
- fix(deps): update openapi-generator-version to v7.17.0 by @renovate[bot] in #1768
- fix(deps): update dependency com.fasterxml.jackson.core:jackson-databind to v2.20.1 by @renovate[bot] in #1770
- fix(deps): update okhttp monorepo to v5.3.0 by @renovate[bot] in #1772
Other Changes
- Fix build and publish CI by @habara-k in #1756
- Fix message event usage in test by @habara-k in #1761
- Fix message event usage in test by @habara-k in #1763
- Fix the usage of message content in test by @habara-k in #1769
Full Changelog: v9.12.0...v9.13.0
This release is prepared by @habara-k
v9.12.0 Add forbidPartialDelivery option to the Narrowcast Limit Object
What's Changed
- Add forbidPartialDelivery option to the Narrowcast Limit Object by @github-actions[bot] in #1753
Add forbidPartialDelivery option to the Narrowcast Limit Object
We add a new forbidPartialDelivery option to the Narrowcast Limit Object.
When set to true, this option prevents messages from being delivered to only a subset of the target audience.
If partial delivery occurs, the narrowcast request will succeed but fail asynchronously.
You can verify whether the message delivery was canceled by checking the narrowcast message progress.
This property can only be set to true when upToRemainingQuota is also true.
For more details, see the https://developers.line.biz/en/news/2025/10/21/narrowcast-message-update/.
Example:
messagingClient.narrowcast(
/* xLineRetryKey */ null,
new NarrowcastRequest.Builder(messageList)
.limit(new Limit.Builder()
.max(1000)
.upToRemainingQuota(true)
.forbidPartialDelivery(true)
.build())
.build()
);(original PR is line/line-openapi#114)
Use cases
Previously, when upToRemainingQuota was set to true, messages could be partially delivered if the remaining message quota was smaller than the target audience size.
With the new forbidPartialDelivery option, you can now ensure that such partial deliveries do not occur.
- Ensuring that a campaign message is sent only if it can reach the full target audience, avoiding incomplete distributions.
line-openapi updates
Dependency updates
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.4.0 by @renovate[bot] in #1727
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.4.1 by @renovate[bot] in #1728
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.4.2 by @renovate[bot] in #1729
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.5.6 by @renovate[bot] in #1731
- chore(deps): update gradle to v9.1.0 by @renovate[bot] in #1732
- fix(deps): update dependency org.assertj:assertj-core to v3.27.5 by @renovate[bot] in #1734
- chore(deps): update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.14.1 by @renovate[bot] in #1733
- fix(deps): update mockito monorepo to v5.20.0 by @renovate[bot] in #1735
- fix(deps): update dependency org.assertj:assertj-core to v3.27.6 by @renovate[bot] in #1736
- chore(deps): update dependency org.openapitools:openapi-generator to v7.16.0 by @renovate[bot] in #1737
- fix(deps): update openapi-generator-version to v7.16.0 by @renovate[bot] in #1738
- chore(deps): update dependency org.openapitools:openapi-generator-gradle-plugin to v7.16.0 by @renovate[bot] in #1739
- chore(deps): update dependency org.apache.maven.plugins:maven-enforcer-plugin to v3.6.2 by @renovate[bot] in #1740
- fix(deps): update junit-framework monorepo by @renovate[bot] in #1741
- fix(deps): update junit-framework monorepo to v6 (major) by @renovate[bot] in #1742
- fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.19 by @renovate[bot] in #1743
- chore(deps): update actions/stale action to v10.1.0 by @renovate[bot] in #1745
- fix(deps): update okhttp monorepo to v5.2.0 by @renovate[bot] in #1748
- fix(deps): update okhttp monorepo to v5.2.1 by @renovate[bot] in #1749
- chore(deps): update actions/setup-node action to v6 by @renovate[bot] in #1750
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.4.3 by @renovate[bot] in #1752
Other Changes
- Use github actor id instead of bot name to avoid renaming issues by @Yang-33 in #1726
- Delete unused items related to codecov by @Yang-33 in #1746
- Prevent command injection when creating release notes by @Yang-33 in #1747
- Fix limit object usage in sample by @habara-k in #1751
Full Changelog: v9.8.1...v9.12.0
This release is prepared by @habara-k
v9.11.0 Support new AudienceGroupType POP_AD_IMP to Audience Group API
What's Changed
Support new AudienceGroupType POP_AD_IMP to Audience Group API
- Add new AudienceGroupType POP_AD_IMP to Audience Group API by @github-actions[bot] in #1706
We have supported for the new audience‑group type POP_AD_IMP (POP ad impression audience) to the OpenAPI schema.
Changes Made
-
Updated
AudienceGroupTypeenumeration- New value:
POP_AD_IMP - Description: Audience groups generated from impressions of LINE Beacon Network (POP) ads.
- Region: Taiwan‑only at launch
- New value:
Purpose
This update enables correct identification and handling of audience groups built from POP ad impressions, a feature that will be released for the Taiwan market.
Documents and Reference
For more information, please refer to the links provided above.
(original PR is line/line-openapi#113)
Dependency updates
- fix(deps): update dependency com.nimbusds:nimbus-jose-jwt to v10.4.2 by @renovate[bot] in #1697
- chore(deps): update kotlin monorepo to v2.2.10 by @renovate[bot] in #1696
- fix(deps): update jjwt to v0.12.7 by @renovate[bot] in #1698
- fix(deps): update mockito monorepo to v5.19.0 by @renovate[bot] in #1699
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.2.5 by @renovate[bot] in #1700
- fix(deps): update jjwt to v0.13.0 by @renovate[bot] in #1701
- chore(deps): update actions/setup-java action to v5 by @renovate[bot] in #1702
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.5.5 by @renovate[bot] in #1703
- chore(deps): update dependency org.openapitools:openapi-generator to v7.15.0 by @renovate[bot] in #1704
- fix(deps): update openapi-generator-version to v7.15.0 by @renovate[bot] in #1705
Other Changes
Full Changelog: v9.10.1...v9.11.0
This release is prepared by @eucyt
v9.10.1 Clean up webhook code for line things
What's Changed
LINE Things has been closed. In this release we removed the following LINE Things related webhook code
ThingsEventThingsContentLinkThingsContentUnlinkThingsContentUnknownThingsContentScenarioResultThingsContentScenarioResultActionResult
As noted in the README, deletions tied to a business shutdown are shipped as a patch version, not a major version. If your code still references any of these code, they will never be emitted again, so you should remove them.
Dependency updates
- fix(deps): update dependency org.assertj:assertj-core to v3.27.4 by @renovate[bot] in #1686
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.2.4 by @renovate[bot] in #1689
- fix(deps): update dependency io.github.littleproxy:littleproxy to v2.4.4 by @renovate[bot] in #1690
- chore(deps): update actions/checkout action to v4.3.0 by @renovate[bot] in #1691
- chore(deps): update actions/checkout action to v5 by @renovate[bot] in #1692
- chore(deps): update dependency gradle to v9 by @renovate[bot] in #1681
Other Changes
Full Changelog: v9.10.0...v9.10.1
This release is prepared by @Yang-33
v9.10.0 Add Coupon API Support to Messaging API
What's Changed
This release introduces Coupon API support to the Messaging API, enabling developers to create, manage, and deliver coupons directly through bot integrations. These new features mirror capabilities previously only available through the LINE Official Account Manager, offering greater flexibility in automating coupon workflows via the Messaging API.
✨ New API Endpoints
-
POST
/v2/bot/coupon
Create a new coupon, including metadata such as title, description, validity period, image URLs, acquisition conditions, and reward details (e.g., fixed-amount discounts). -
GET
/v2/bot/coupon
Retrieve a list of all coupons associated with your bot. -
GET
/v2/bot/coupon/{couponId}
Fetch detailed metadata of a specific coupon. -
PUT
/v2/bot/coupon/{couponId}
Mark a coupon as expired.
💬 Messaging API Enhancements
- Added support for a new message type:
type=coupon
You can now send coupons directly to users using the Messaging API, similar to sending text, image, or template messages.
📌 Example Use Cases
- Create a 1000 yen off coupon
- Send the coupon to a user using the new coupon message type
For detailed usage examples, see the official documentation.
📢 Official Announcement:
LINE Developers News — Coupon API Released (2025/08/06)
What's Changed on v9.8.1
✨ Add an Option to Skip Webhook Signature Verification
With this release, developers can now optionally skip signature verification when parsing incoming webhook requests. This new capability is especially useful in scenarios where the channel secret may change, potentially causing temporary signature mismatches.
Example Usage:
WebhookParser parser = new WebhookParser(
signatureValidator,
FixedSkipSignatureVerificationSupplier.of(true) // Skip verification
);When signature verification is skipped, the signatureValidator will not be invoked. This allows webhook requests to be processed even if their signatures do not match the current channel secret used for verification.
This feature is particularly helpful in high-availability systems where avoiding downtime or message loss during configuration updates is critical.
line-openapi updates
- Add Coupon API Support to Messaging API by @github-actions[bot] in #1684
Dependency updates
- chore(deps): update dependency gradle to v8.14.2 by @renovate[bot] in #1642
- fix(deps): update junit5 monorepo by @renovate[bot] in #1643
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.2.0 by @renovate[bot] in #1644
- fix(deps): update dependency org.wiremock:wiremock-standalone to v3.13.1 by @renovate[bot] in #1645
- fix(deps): update jackson monorepo to v2.19.1 by @renovate[bot] in #1646
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.5.1 by @renovate[bot] in #1648
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.5.2 by @renovate[bot] in #1649
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.5.3 by @renovate[bot] in #1650
- fix(deps): update dependency org.junit.platform:junit-platform-launcher to v1.13.2 by @renovate[bot] in #1652
- fix(deps): update junit to v5.13.2 by @renovate[bot] in #1653
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.2.1 by @renovate[bot] in #1654
- chore(deps): update dependency org.openapitools:openapi-generator to v7.14.0 by @renovate[bot] in #1655
- chore(deps): update dependency org.openapitools:openapi-generator-gradle-plugin to v7.14.0 by @renovate[bot] in #1656
- fix(deps): update openapi-generator-version to v7.14.0 by @renovate[bot] in #1657
- fix(deps): update dependency com.nimbusds:nimbus-jose-jwt to v10.3.1 by @renovate[bot] in #1659
- chore(deps): update dependency org.apache.maven.plugins:maven-enforcer-plugin to v3.6.0 by @renovate[bot] in #1660
- fix(deps): update dependency io.github.littleproxy:littleproxy to v2.4.3 by @renovate[bot] in #1661
- chore(deps): update dependency gradle to v8.14.3 by @renovate[bot] in #1663
- fix(deps): update junit-framework monorepo by @renovate[bot] in #1664
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.2.2 by @renovate[bot] in #1665
- chore(deps): update dependency org.apache.maven.plugins:maven-enforcer-plugin to v3.6.1 by @renovate[bot] in #1667
- fix(deps): update jackson to v2.19.2 by @renovate[bot] in #1669
- fix(deps): update dependency com.nimbusds:nimbus-jose-jwt to v10.4 by @renovate[bot] in #1670
- fix(deps): update junit-framework monorepo by @renovate[bot] in #1671
- fix(deps): update dependency com.ocadotechnology.gembus:test-arranger to v1.6.4.1 by @renovate[bot] in #1672
- fix(deps): update okhttp monorepo to v5 (major) by @renovate[bot] in #1662
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.5.4 by @renovate[bot] in #1673
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.2.3 by @renovate[bot] in #1682
- fix(deps): update dependency com.nimbusds:nimbus-jose-jwt to v10.4.1 by @renovate[bot] in #1683
Other Changes
- Fix pebble for array-type query parameter by @habara-k in #1629
- Add option to skip signature verification by @habara-k in #1635
- Update Kotlin version to 2.2.0 and adjust compiler options by @eucyt in #1658
- Update CONTRIBUTING.md to enhance development guidelines by @eucyt in #1666
- OSSRH is deprecated by @habara-k in #1674
Full Changelog: v9.8.0...v9.10.0
v9.8.0 Allow setting a custom EventListener in ApiClientBuilder
What's Changed
With this release, SDK users will be able to set a custom EventListener to suit their needs when creating the API client. For Example, to enhance the observability of API calls in your system, you can leverage the OkHttpMetricsEventListener provided by Micrometer to record HTTP request metrics:
OkHttpMetricsEventListener okHttpMetricsEventListener = OkHttpMetricsEventListener
.builder(registry, "okhttp.requests")
.build();
MessagingApiClient messagingApiClient = MessagingApiClient.builder("your access token")
.setEventListener(okHttpMetricsEventListener)
.build();- Allow setting a custom EventListener in ApiClientBuilder by @kabigon-sung in #1621
line-openapi updates
- chore(deps): update line-openapi digest to 3e09054 by @renovate in #1619
- chore(deps): update line-openapi digest to 69a12e8 by @renovate in #1627
- chore(deps): update line-openapi digest to 92f9320 by @renovate in #1636
Dependency updates
- fix(deps): update dependency org.wiremock:wiremock-standalone to v3.13.0 by @renovate in #1609
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.4.5 by @renovate in #1611
- fix(deps): update jackson monorepo to v2.19.0 by @renovate in #1612
- chore(deps): update dependency gradle to v8.14 by @renovate in #1614
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.1.10 by @renovate in #1615
- chore(deps): update dependency org.openapitools:openapi-generator to v7.13.0 by @renovate in #1616
- chore(deps): update dependency org.openapitools:openapi-generator-gradle-plugin to v7.13.0 by @renovate in #1617
- fix(deps): update openapi-generator-version to v7.13.0 by @renovate in #1618
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.1.11 by @renovate in #1620
- fix(deps): update dependency io.github.littleproxy:littleproxy to v2.4.2 by @renovate in #1622
- fix(deps): update dependency com.nimbusds:nimbus-jose-jwt to v10.3 by @renovate in #1623
- chore(deps): update kotlin monorepo to v2.1.21 by @renovate in #1624
- fix(deps): update retrofit monorepo to v3 (major) by @renovate in #1626
- fix(deps): update dependency org.mockito:mockito-core to v5.18.0 by @renovate in #1628
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.1.12 by @renovate in #1630
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.4.6 by @renovate in #1632
- chore(deps): update dependency gradle to v8.14.1 by @renovate in #1631
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.1.13 by @renovate in #1637
- fix(deps): update junit5 monorepo by @renovate in #1639
- chore(deps): update dependency org.codehaus.mojo:build-helper-maven-plugin to v3.6.1 by @renovate in #1640
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.5.0 by @renovate in #1633
Other Changes
- Improve issue triage and issue template by @eucyt in #1634
- Skip specific test generation by @habara-k in #1638
New Contributors
- @kabigon-sung made their first contribution in #1621
Full Changelog: v9.7.1...v9.8.0
This release is prepared by @eucyt
v9.7.1 Fix type of CreateAudienceGroupResponse#expireTimestamp
What's Changed
Type for CreateAudienceGroupResponse#expireTimestamp is not float or double, but integer actually. This release fixes type as bugfix.
- Fix type of expireTimestamp by @github-actions in #1608
(original PR is line/line-openapi#106)
line-openapi updates
Dependency updates
Other Changes
- Replace dependency xyz.rogfam:littleproxy with io.github.littleproxy:littleproxy 2.4.0 by @Yang-33 in #1605
Full Changelog: v9.7.0...v9.7.1
This release is prepared by @Yang-33
v9.7.0 Add includesOwnedAudienceGroups Parameter to Audience API
What's Changed
- Add includesOwnedAudienceGroups Parameter to Audience API by @github-actions in #1602
Enhancement to Shared Audiences API
Support a new query parameter includesOwnedAudienceGroups to the client.getSharedAudienceGroups (GET /v2/bot/audienceGroup/shared/list). This enhancement allows users to specify whether to include audience groups owned by the user in the response. It is especially useful for users who manage both shared and owned audience groups.
Specifications
- Added the
includesOwnedAudienceGroupsparameter to the API endpoint.- Type: Boolean
- Default: false
- Description:
true: Include audience groups owned by the LINE Official Account Manager.false: Respond only with audience groups shared by Business Manager.
Remove deprecated API
- Removed the
/v2/bot/audienceGroup/{audienceGroupId}/activateand/v2/bot/audienceGroup/authorityLevelendpoints.
Documents and Reference
For more information, please refer to the links provided above.
(original PR is line/line-openapi#105)
line-openapi updates
- chore(deps): update line-openapi digest to 954b163 by @renovate in #1586
- chore(deps): update line-openapi digest to 0e669d0 by @renovate in #1590
- chore(deps): update line-openapi digest to 31fa3c7 by @renovate in #1593
- chore(deps): update line-openapi digest to 2f38058 by @renovate in #1597
Dependency updates
- chore(deps): update suzuki-shunsuke/pinact-action action to v0.2.2 by @renovate in #1583
- chore(deps): update suzuki-shunsuke/pinact-action action to v1 by @renovate in #1584
- chore(deps): update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.5.3 by @renovate in #1585
- fix(deps): update dependency io.pebbletemplates:pebble to v3.2.4 by @renovate in #1587
- fix(deps): update dependency com.nimbusds:nimbus-jose-jwt to v10.1 by @renovate in #1589
- fix(deps): update dependency org.mockito:mockito-core to v5.17.0 by @renovate in #1591
- fix(deps): update dependency com.nimbusds:nimbus-jose-jwt to v10.2 by @renovate in #1595
- chore(deps): update actions/setup-java action to v4.7.1 by @renovate in #1596
- chore(deps): update actions/setup-node action to v4.4.0 by @renovate in #1599
Other Changes
- Skip creating PR when only git submodule is updated by @Yang-33 in #1582
- Remove deprecated link by @eucyt in #1588
- Require more jobs in merge queue by @Yang-33 in #1592
- Do not create another auto PR when a job runs for PR or merge queue by @Yang-33 in #1598
- Remove audience group authority level test for cross targeting sunset by @asari-mtr in #1600
- Remove unused audience group activation and authority level tests by @asari-mtr in #1601
New Contributors
- @asari-mtr made their first contribution in #1600
Full Changelog: v9.6.1...v9.7.0
This release is prepared by @eucyt
v9.6.1 Support new Membership API and Webhook
What's Changed
Note this patch is not related to sdk users. This release is just for our test. See https://github.com/line/line-bot-sdk-java/releases/tag/v9.6.0 about new features.
line-openapi updates
- chore(deps): update line-openapi digest to 0af4f53 by @renovate in #1569
- chore(deps): update line-openapi digest to 9dec0f8 by @renovate in #1571
- chore(deps): update line-openapi digest to cc542e3 by @renovate in #1578
Dependency updates
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.1.5 by @renovate in #1549
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.4.3 by @renovate in #1550
- chore(deps): update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.14.0 by @renovate in #1551
- chore(deps): update dependency gradle to v8.13 by @renovate in #1553
- fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.17 by @renovate in #1554
- fix(deps): update slf4j monorepo to v2.0.17 by @renovate in #1555
- fix(deps): update dependency com.nimbusds:nimbus-jose-jwt to v10.0.2 by @renovate in #1557
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.1.6 by @renovate in #1558
- chore(deps): update dependency org.openapitools:openapi-generator to v7.12.0 by @renovate in #1559
- chore(deps): update dependency org.openapitools:openapi-generator-gradle-plugin to v7.12.0 by @renovate in #1560
- fix(deps): update openapi-generator-version to v7.12.0 by @renovate in #1562
- fix(deps): update jackson monorepo to v2.18.3 by @renovate in #1563
- fix(deps): update jackson to v2.18.3 by @renovate in #1564
- fix(deps): update mockito monorepo to v5.16.0 by @renovate in #1565
- fix(deps): update dependency org.wiremock:wiremock-standalone to v3.12.1 by @renovate in #1566
- fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.17 by @renovate in #1556
- chore(deps): update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6.1.7 by @renovate in #1568
- fix(deps): update mockito monorepo to v5.16.1 by @renovate in #1572
- fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.18 by @renovate in #1573
- chore(deps): update kotlin monorepo to v2.1.20 by @renovate in #1574
- chore(deps): update dependency org.springframework.boot:spring-boot-gradle-plugin to v3.4.4 by @renovate in #1575
Other Changes
- Auto generate unknown fallback by @habara-k in #1561
- Add EoL and new release reminder by @Yang-33 in #1570
- Pin commit hash of github actions to avoid supply chain attacks by @Yang-33 in #1576
- Grant minimum permissions to github acitons workflow jobs by @Yang-33 in #1577
- Migrate renovate config by @Yang-33 in #1581
Full Changelog: v9.6.0...v9.6.1
This release is prepared by @Yang-33
v9.6.0 Support new Membership API and Webhook
What's Changed
- Support new Membership API and Webhook by @github-actions in #1548
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.5.0...v9.6.0
This release is prepared by @eucyt