@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 CHANGED
@@ -1,12 +1,22 @@
1
1
  # Changelog
2
2
 
3
- ## 0.10.13
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
- - Initialize Ably after user request publishing messages
11
+ ## 0.10.14
12
+
13
+ - Fixed Ably message bottleneck wait time
14
+
15
+ ## 0.10.13
6
16
 
7
- - Increase wait time for Ably message sending bottleneck
17
+ - Initialized Ably after user request publishing messages
8
18
 
9
- - Update packages
19
+ - Increased wait time for Ably message sending bottleneck
10
20
 
11
21
  ## 0.10.12
12
22
 
package/ably.js CHANGED
@@ -31,7 +31,7 @@ async function publishMessage(channel, messageName, messageData) {
31
31
  }
32
32
 
33
33
  const rateLimitedPublishMessage = new Bottleneck({
34
- minTime: 1000 / 60,
34
+ minTime: 1000 / 40,
35
35
  }).wrap(publishMessage);
36
36
 
37
37
  module.exports = {
@@ -21,7 +21,7 @@ async function acquireLock(name, ttl) {
21
21
  return null;
22
22
  }
23
23
  } catch (fetchErr) {
24
- console.log("error fetching", fetchErr);
24
+ // console.log("error fetching", fetchErr);
25
25
 
26
26
  return null;
27
27
  }
package/examples/api CHANGED
File without changes
package/examples/consumer CHANGED
File without changes
package/examples/indexer CHANGED
File without changes
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.13",
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.932.0",
17
+ "aws-sdk": "^2.1164.0",
18
18
  "bottleneck": "^2.19.5",
19
- "chalk": "^4.1.1",
20
- "execa": "^5.0.0",
19
+ "chalk": "^4.1.2",
20
+ "execa": "^5.1.1",
21
21
  "express": "^4.18.1",
22
- "kafkajs": "^1.15.0",
22
+ "kafkajs": "^2.1.0",
23
23
  "md5": "^2.3.0",
24
- "meow": "^7.0.1",
25
- "node-fetch": "^2.6.1",
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.13.0",
32
- "eslint": "^7.22.0",
31
+ "ava": "^4.3.0",
32
+ "eslint": "^8.18.0",
33
33
  "eslint-plugin-import": "^2.26.0",
34
- "sinon": "^11.1.2"
34
+ "sinon": "^14.0.0"
35
35
  },
36
36
  "license": "MIT"
37
37
  }