datomic-client-js 0.1.10 → 0.1.11
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 +5 -1
- package/README.md +4 -2
- package/package.json +2 -2
- package/debug.js +0 -8
- package/transactor.properties +0 -9
- package/x +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.1.11 (January 9, 2026).
|
|
4
|
+
|
|
5
|
+
* Update aws-sdk dependency version.
|
|
6
|
+
|
|
3
7
|
## 0.1.9 (January 16, 2020).
|
|
4
8
|
|
|
5
9
|
* Handle EDN strings with template variables properly.
|
|
@@ -30,4 +34,4 @@
|
|
|
30
34
|
|
|
31
35
|
## 0.1.3 (January 12, 2020).
|
|
32
36
|
|
|
33
|
-
* Initial semi-working release.
|
|
37
|
+
* Initial semi-working release.
|
package/README.md
CHANGED
|
@@ -23,13 +23,15 @@ let peerConf = {
|
|
|
23
23
|
|
|
24
24
|
// cloud config map example
|
|
25
25
|
let cloudConf = {
|
|
26
|
-
endpoint: '
|
|
26
|
+
endpoint: 'https://your-apigateway-url',
|
|
27
27
|
serverType: 'cloud',
|
|
28
28
|
region: 'your-region',
|
|
29
29
|
system: 'your-system',
|
|
30
30
|
dbName: 'your-db-name',
|
|
31
|
-
proxyPort: 8182 // if connecting via the bastion server
|
|
32
31
|
};
|
|
32
|
+
// Can also still set endpoint to a private datomic.net URL,
|
|
33
|
+
// and set proxyPort if using an older Datomic cloud release
|
|
34
|
+
// with a proxy server for access.
|
|
33
35
|
|
|
34
36
|
let client = require('datomic-client-js');
|
|
35
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "datomic-client-js",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Client for Datomic Cloud and Peer Server",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "mocha",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"author": "Casey Marshall",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"aws-sdk": "2.
|
|
15
|
+
"aws-sdk": "2.1693.0",
|
|
16
16
|
"jsedn": "~0.4.1",
|
|
17
17
|
"npm": "^6.13.6",
|
|
18
18
|
"socks-proxy-agent": "4.0.2",
|
package/debug.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
debugger;
|
|
2
|
-
let datomic = require('./index');
|
|
3
|
-
datomic.listDatabases({
|
|
4
|
-
serverType: 'cloud',
|
|
5
|
-
endpoint: 'https://kq6n8x5sna.execute-api.us-west-2.amazonaws.com/',
|
|
6
|
-
region: 'us-west-2',
|
|
7
|
-
system: 'datomic-cloud-test',
|
|
8
|
-
}).then(x => console.log('result:', x)).catch(e => console.log('error:', e));
|
package/transactor.properties
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
protocol=dev
|
|
2
|
-
host=0.0.0.0
|
|
3
|
-
port=4334
|
|
4
|
-
|
|
5
|
-
license-key=Xo30YRqcMrFiiq3k4nWRNFWn8IcXUwDm0v4KbKfxokvrx67AhQLR8kx6Pn7hYZp5NcHsxGjx2f1B06VDDhh8XEGnxn98duGUQva/RCepknRSlQO8fHe07+Lfo8N34FA+J9gQfsiGHnJvt5Bt6NgB8S8sLrraAXSXct6tTcvLEm3DfHyOjYG7kd0EeJGHt92+D5vI/dU3OhR9MiEhy1gQb7kt+l5bq0cW6hFE5s4hPs0K8nw1XMuSFUpzeX2E7qrExP+qQnk20GhauDjkMAS52RtTM10rnlKrNDuMbVYJcHBQiFICjjK5buasaQY/PHyV3svRbIX+qxL1eI4qSqY4PA==
|
|
6
|
-
|
|
7
|
-
memory-index-threshold=32m
|
|
8
|
-
memory-index-max=256m
|
|
9
|
-
object-cache-max=128m
|