@certik/skynet 0.10.13 → 0.10.16
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 +14 -4
- package/ably.js +1 -1
- package/distributed-lock.js +1 -1
- package/examples/api +0 -0
- package/examples/consumer +0 -0
- package/examples/indexer +0 -0
- package/examples/mode-indexer +0 -0
- package/examples/producer +0 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.10.
|
|
3
|
+
## 0.10.16
|
|
4
|
+
|
|
5
|
+
- Removed verbose dev mode log for distributed lock
|
|
6
|
+
|
|
7
|
+
## 0.10.15
|
|
8
|
+
|
|
9
|
+
- Updated packages
|
|
4
10
|
|
|
5
|
-
|
|
11
|
+
## 0.10.14
|
|
12
|
+
|
|
13
|
+
- Fixed Ably message bottleneck wait time
|
|
14
|
+
|
|
15
|
+
## 0.10.13
|
|
6
16
|
|
|
7
|
-
-
|
|
17
|
+
- Initialized Ably after user request publishing messages
|
|
8
18
|
|
|
9
|
-
-
|
|
19
|
+
- Increased wait time for Ably message sending bottleneck
|
|
10
20
|
|
|
11
21
|
## 0.10.12
|
|
12
22
|
|
package/ably.js
CHANGED
package/distributed-lock.js
CHANGED
package/examples/api
CHANGED
|
File without changes
|
package/examples/consumer
CHANGED
|
File without changes
|
package/examples/indexer
CHANGED
|
File without changes
|
package/examples/mode-indexer
CHANGED
|
File without changes
|
package/examples/producer
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@certik/skynet",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.16",
|
|
4
4
|
"description": "Skynet Shared JS library",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "CertiK Engineering",
|
|
@@ -14,24 +14,24 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@slack/web-api": "^6.4.0",
|
|
16
16
|
"ably": "^1.2.22",
|
|
17
|
-
"aws-sdk": "^2.
|
|
17
|
+
"aws-sdk": "^2.1164.0",
|
|
18
18
|
"bottleneck": "^2.19.5",
|
|
19
|
-
"chalk": "^4.1.
|
|
20
|
-
"execa": "^5.
|
|
19
|
+
"chalk": "^4.1.2",
|
|
20
|
+
"execa": "^5.1.1",
|
|
21
21
|
"express": "^4.18.1",
|
|
22
|
-
"kafkajs": "^1.
|
|
22
|
+
"kafkajs": "^2.1.0",
|
|
23
23
|
"md5": "^2.3.0",
|
|
24
|
-
"meow": "^
|
|
25
|
-
"node-fetch": "^2.6.
|
|
24
|
+
"meow": "^9.0.0",
|
|
25
|
+
"node-fetch": "^2.6.7",
|
|
26
26
|
"snowflake-sdk": "^1.6.3",
|
|
27
27
|
"web3": "^1.3.5",
|
|
28
28
|
"which": "^2.0.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"ava": "^3.
|
|
32
|
-
"eslint": "^
|
|
31
|
+
"ava": "^4.3.0",
|
|
32
|
+
"eslint": "^8.18.0",
|
|
33
33
|
"eslint-plugin-import": "^2.26.0",
|
|
34
|
-
"sinon": "^
|
|
34
|
+
"sinon": "^14.0.0"
|
|
35
35
|
},
|
|
36
36
|
"license": "MIT"
|
|
37
37
|
}
|