npgsqlrest 1.1.8 → 1.2.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npgsqlrest",
3
- "version": "1.1.8",
3
+ "version": "1.2.1",
4
4
  "description": "Automatic REST API for PostgreSQL Databases Client Build",
5
5
  "scripts": {
6
6
  "postinstall": "node postinstall.js",
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.7.1-client-v1.1.0/";
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,22 @@ $ 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
+
103
+ ### 1.2.1
104
+
105
+ Fix readme
106
+
107
+ ### 1.2.0
108
+
109
+ ```console
110
+ Versions:
111
+ Client Build 1.2.0.0
112
+ Npgsql 2.8.0.0
113
+ NpgsqlRest.HttpFiles 1.0.2.0
114
+ NpgsqlRest.TsClient 1.7.0.0
115
+ ```
116
+
101
117
  ### 1.1.8
102
118
 
103
119
  Changed the download target from `./node_modules/npgsqlrest/.bin/` to shared bin: `./node_modules/.bin/`.