Skip to content

Commit 27f4177

Browse files
committed
add better proxy support
1 parent 3234517 commit 27f4177

5 files changed

Lines changed: 6 additions & 4 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: build
22

3-
VERSION = 1.5.11.121
3+
VERSION = 1.5.11.122
44
HASH = $(shell git rev-parse --short HEAD)
55
bump:
66
@echo "Bumping version to $(VERSION) recursively..."

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openiap/core",
3-
"version": "1.5.11.121",
3+
"version": "1.5.11.122",
44
"description": "Easy orchestration of data, code and automation tools.\r Also the \"backend\" for [OpenRPA](https://github.com/skadefro/OpenRPA)",
55
"main": "index.js",
66
"scripts": {
@@ -60,6 +60,7 @@
6060
"dockerode": "3.3.4",
6161
"dotenv": "16.4.5",
6262
"express": "4.19.2",
63+
"global-agent": "^3.0.0",
6364
"got": "11.8.5",
6465
"hjson": "3.2.2",
6566
"ip": "2.0.1",

public.template/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@
513513
},
514514
"info": {
515515
"title": "@openiap/core",
516-
"version": "1.5.11.121",
516+
"version": "1.5.11.122",
517517
"description": "Easy orchestration of data, code and automation tools.\r Also the \"backend\" for [OpenRPA](https://github.com/skadefro/OpenRPA)",
518518
"license": {
519519
"name": "MPL-2.0"

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ function cerror(error) {
99
console.error(dts, error.message ? error.message : error);
1010
}
1111
clog("Starting @openiap/core");
12+
import 'global-agent/bootstrap.js';
1213
import { Span } from "@opentelemetry/api";
1314
import crypto from "crypto";
1415
import http from "http";

src/public/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@
513513
},
514514
"info": {
515515
"title": "@openiap/core",
516-
"version": "1.5.11.121",
516+
"version": "1.5.11.122",
517517
"description": "Easy orchestration of data, code and automation tools.\r Also the \"backend\" for [OpenRPA](https://github.com/skadefro/OpenRPA)",
518518
"license": {
519519
"name": "MPL-2.0"

0 commit comments

Comments
 (0)