npgsqlrest 1.1.8 → 1.2.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/package.json +1 -1
- package/postinstall.js +1 -1
- package/readme.md +12 -0
package/package.json
CHANGED
package/postinstall.js
CHANGED
|
@@ -6,7 +6,7 @@ const os = require("os");
|
|
|
6
6
|
const https = require("https");
|
|
7
7
|
|
|
8
8
|
const downloadDir = "../.bin/";
|
|
9
|
-
const downloadFrom = "https://github.com/vb-consulting/NpgsqlRest/releases/download/v2.
|
|
9
|
+
const downloadFrom = "https://github.com/vb-consulting/NpgsqlRest/releases/download/v2.8.0-client-v1.2.0/";
|
|
10
10
|
|
|
11
11
|
function download(url, to, done) {
|
|
12
12
|
https.get(url, (response) => {
|
package/readme.md
CHANGED
|
@@ -98,6 +98,8 @@ $ npx npgsqlrest appsettings.json project-config.json
|
|
|
98
98
|
|
|
99
99
|
## Changelog
|
|
100
100
|
|
|
101
|
+
See the detailed change log here: [NpgsqlRest Changelog](https://vb-consulting.github.io/npgsqlrest/changelog/)
|
|
102
|
+
|
|
101
103
|
### 1.1.8
|
|
102
104
|
|
|
103
105
|
Changed the download target from `./node_modules/npgsqlrest/.bin/` to shared bin: `./node_modules/.bin/`.
|
|
@@ -106,6 +108,16 @@ The reason is that when using the `./node_modules/npgsqlrest/.bin/` directory, I
|
|
|
106
108
|
|
|
107
109
|
But now, I have to use the uninstall script too, to ensure the proper cleanup on the install.
|
|
108
110
|
|
|
111
|
+
### 1.2.0
|
|
112
|
+
|
|
113
|
+
```console
|
|
114
|
+
Versions:
|
|
115
|
+
Client Build 1.2.0.0
|
|
116
|
+
Npgsql 2.8.0.0
|
|
117
|
+
NpgsqlRest.HttpFiles 1.0.2.0
|
|
118
|
+
NpgsqlRest.TsClient 1.7.0.0
|
|
119
|
+
```
|
|
120
|
+
|
|
109
121
|
### 1.1.7
|
|
110
122
|
|
|
111
123
|
Update readme.
|