ads-client 2.0.0-beta.6 → 2.0.0
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.
- package/CHANGELOG.md +4 -1
- package/README.md +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,7 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
<u>**Updating v1 -> v2 requires manual changes to your codebase!**</u>
|
|
11
11
|
|
|
12
|
-
See [MIGRATION.md](MIGRATION.md) for all breaking changes and follow the instructions.
|
|
12
|
+
See [MIGRATION.md](MIGRATION.md) for all breaking changes and follow the instructions.
|
|
13
|
+
|
|
14
|
+
### Special thanks
|
|
15
|
+
- Special thanks to [Christian Rishøj](https://github.com/crishoj) for valuable contribution!
|
|
13
16
|
|
|
14
17
|
### Changes
|
|
15
18
|
- Everything rewritten in TypeScript
|
package/README.md
CHANGED
|
@@ -10,6 +10,8 @@ Connect to a Beckhoff TwinCAT automation system using the ADS protocol from a No
|
|
|
10
10
|
|
|
11
11
|
If you are using Node-RED, check out the [node-red-contrib-ads-client](https://www.npmjs.com/package/node-red-contrib-ads-client).
|
|
12
12
|
|
|
13
|
+
There is automatically created documentation available at https://jisotalo.fi/ads-client/
|
|
14
|
+
|
|
13
15
|
# Project status
|
|
14
16
|
|
|
15
17
|
14.12.2024 - version 2 released!
|
|
@@ -19,7 +21,7 @@ If you are using Node-RED, check out the [node-red-contrib-ads-client](https://w
|
|
|
19
21
|
- See [MIGRATION.md](https://github.com/jisotalo/ads-client/blob/v2-dev/MIGRATION.md) for guide of migrating v1 -> v2 (**breaking changes!**)
|
|
20
22
|
- See the new [documentation](https://jisotalo.fi/ads-client/classes/Client.html)
|
|
21
23
|
|
|
22
|
-
|
|
24
|
+
See [`legacy-v1` branch](https://github.com/jisotalo/ads-client/tree/legacy-v1) for previous/legacy version 1.4.4.
|
|
23
25
|
|
|
24
26
|
# Features
|
|
25
27
|
- Supports TwinCAT 2 and 3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ads-client",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Beckhoff TwinCAT ADS client library for Node.js (unofficial). Connect to a Beckhoff TwinCAT automation system using the ADS protocol from a Node.js app.",
|
|
5
5
|
"main": "./dist/ads-client.js",
|
|
6
6
|
"scripts": {
|