@certd/lib-server 1.41.0 → 1.41.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.
@@ -51,6 +51,7 @@ export declare class SysPrivateSettings extends BaseSettings {
51
51
  encryptSecret?: string;
52
52
  httpsProxy?: string;
53
53
  httpProxy?: string;
54
+ noProxy?: string;
54
55
  commonHeaders?: string;
55
56
  reverseProxies?: Record<string, string>;
56
57
  dnsResultOrder?: string;
@@ -57,6 +57,7 @@ export class SysPrivateSettings extends BaseSettings {
57
57
  encryptSecret;
58
58
  httpsProxy = '';
59
59
  httpProxy = '';
60
+ noProxy = '';
60
61
  commonHeaders = '';
61
62
  reverseProxies = {};
62
63
  dnsResultOrder = '';
@@ -152,6 +152,7 @@ let SysSettingsService = class SysSettingsService extends BaseService {
152
152
  const opts = {
153
153
  httpProxy: privateSetting.httpProxy,
154
154
  httpsProxy: privateSetting.httpsProxy,
155
+ noProxy: privateSetting.noProxy,
155
156
  };
156
157
  setGlobalProxy(opts);
157
158
  setGlobalHeaders(this.parseKeyValueText(privateSetting.commonHeaders));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certd/lib-server",
3
- "version": "1.41.0",
3
+ "version": "1.41.1",
4
4
  "description": "midway with flyway, sql upgrade way ",
5
5
  "private": false,
6
6
  "type": "module",
@@ -29,11 +29,11 @@
29
29
  ],
30
30
  "license": "AGPL",
31
31
  "dependencies": {
32
- "@certd/acme-client": "^1.41.0",
33
- "@certd/basic": "^1.41.0",
34
- "@certd/pipeline": "^1.41.0",
35
- "@certd/plugin-lib": "^1.41.0",
36
- "@certd/plus-core": "^1.41.0",
32
+ "@certd/acme-client": "^1.41.1",
33
+ "@certd/basic": "^1.41.1",
34
+ "@certd/pipeline": "^1.41.1",
35
+ "@certd/plugin-lib": "^1.41.1",
36
+ "@certd/plus-core": "^1.41.1",
37
37
  "@midwayjs/cache": "3.14.0",
38
38
  "@midwayjs/core": "3.20.11",
39
39
  "@midwayjs/i18n": "3.20.13",
@@ -69,5 +69,5 @@
69
69
  "typeorm": "^0.3.11",
70
70
  "typescript": "^5.4.2"
71
71
  },
72
- "gitHead": "d368f9666abf71d7f56891b6cbedeb618b82701c"
72
+ "gitHead": "cdea411136fdf56352699a6e278a403e0f53a94f"
73
73
  }