@certik/skynet 0.10.14 → 0.10.17

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,16 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.10.16 & 0.10.17
4
+
5
+ - Removed verbose dev mode log for distributed lock
6
+
7
+ ## 0.10.15
8
+
9
+ - Updated packages
10
+
3
11
  ## 0.10.14
4
12
 
5
- - Fix Ably message bottleneck wait time
13
+ - Fixed Ably message bottleneck wait time
6
14
 
7
15
  ## 0.10.13
8
16
 
9
- - Initialize Ably after user request publishing messages
10
-
11
- - Increase wait time for Ably message sending bottleneck
17
+ - Initialized Ably after user request publishing messages
12
18
 
13
- - Update packages
19
+ - Increased wait time for Ably message sending bottleneck
14
20
 
15
21
  ## 0.10.12
16
22
 
@@ -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
  }
@@ -41,7 +41,7 @@ async function renewLock(uid) {
41
41
  return null;
42
42
  }
43
43
  } catch (fetchErr) {
44
- console.log("error fetching", fetchErr);
44
+ // console.log("error fetching", fetchErr);
45
45
 
46
46
  return null;
47
47
  }
@@ -72,7 +72,7 @@ async function hasLock(name, uid = null) {
72
72
  return true;
73
73
  }
74
74
  } catch (fetchErr) {
75
- console.log("error fetching", fetchErr);
75
+ // console.log("error fetching", fetchErr);
76
76
 
77
77
  return true;
78
78
  }
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.14",
3
+ "version": "0.10.17",
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
+ }