node-red-contrib-line-messaging-api 0.4.9 → 0.4.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -150,6 +150,11 @@ https://developers.line.biz/en/reference/messaging-api/#get-bot-info
150
150
 
151
151
  ---
152
152
 
153
+ ## Dependency versions
154
+
155
+ This node restricts some dependencies to a specific major version
156
+ because newer major versions may introduce breaking changes.
157
+
153
158
  ## Release Notes
154
159
 
155
160
  - 2024/12/27: v0.4.3 - Added internationalization (i18n) support, removed LINE Notify nodes (API discontinued), updated documentation with English/Japanese versions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-line-messaging-api",
3
- "version": "0.4.9",
3
+ "version": "0.4.10",
4
4
  "description": "Node-RED nodes for LINE Messaging API integration. Build LINE Bots easily with visual programming.",
5
5
  "main": "line.js",
6
6
  "repository": {
@@ -43,8 +43,8 @@
43
43
  "node": ">=18"
44
44
  },
45
45
  "dependencies": {
46
- "@line/bot-sdk": "~10.5.0",
47
- "body-parser": "~1.19.1",
48
- "cors": "~2.8.5"
46
+ "@line/bot-sdk": "^10.5.0",
47
+ "body-parser": "^1.19.1",
48
+ "cors": "^2.8.5"
49
49
  }
50
50
  }