npgsqlrest 2.2.0 → 2.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npgsqlrest",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
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.12.0-client-v2.2.0/";
9
+ const downloadFrom = "https://github.com/vb-consulting/NpgsqlRest/releases/download/v2.13.0-client-v2.3.0/";
10
10
 
11
11
  function download(url, to, done) {
12
12
  https.get(url, (response) => {
package/readme.md CHANGED
@@ -115,8 +115,24 @@ See the detailed change log:
115
115
  - [NpgsqlRest Changelog](https://vb-consulting.github.io/npgsqlrest/changelog/)
116
116
  - [NpgsqlRest Client Changelog](https://vb-consulting.github.io/npgsqlrest/client/#changelog)
117
117
 
118
+ ## 2.3.0
119
+
120
+ ```console
121
+ Versions:
122
+ .NET 9.0.0
123
+ Client Build 2.3.0.0
124
+ Serilog.AspNetCore 8.0.3.0
125
+ Npgsql 8.0.5.0
126
+ NpgsqlRest 2.13.0.0
127
+ NpgsqlRest.HttpFiles 1.1.0.0
128
+ NpgsqlRest.TsClient 1.14.0.0
129
+ ```
130
+
131
+ - Fixed SSL unnecessary redirection warnings when SSL is not used.
132
+
118
133
  ## 2.2.0
119
134
 
135
+ ```console
120
136
  Versions:
121
137
  .NET 8.0.10
122
138
  Client Build 2.2.0.0
@@ -125,6 +141,7 @@ Npgsql 8.0.5.0
125
141
  NpgsqlRest 2.12.0.0
126
142
  NpgsqlRest.HttpFiles 1.0.2.0
127
143
  NpgsqlRest.TsClient 1.13.0.0
144
+ ```
128
145
 
129
146
  Client changes:
130
147