Skip to content

Commit ec32813

Browse files
committed
Fix proxy handling in reporter
Counterpart of #1206 for reporter.
1 parent a49d556 commit ec32813

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All changes that impact users of this module are documented in this file, in the [Common Changelog](https://common-changelog.org) format with some additional specifications defined in the CONTRIBUTING file. This codebase adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## Unreleased
6+
7+
_Full changeset and discussions: [#TODO](TODO)._
8+
9+
> Development of this release was supported by the [European Commission](https://commission.europa.eu/) for its [VLOPs/VLOSEs instance](https://code.europa.eu/dsa/terms-and-conditions-database/vlops-and-vloses/).
10+
11+
### Fixed
12+
13+
- Fix reporting when proxy configuration is provided
14+
515
## 10.1.0 - 2025-11-24
616

717
_Full changeset and discussions: [#1202](https://github.com/OpenTermsArchive/engine/pull/1202)._

src/reporter/gitlab/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import HttpProxyAgent from 'http-proxy-agent';
2-
import HttpsProxyAgent from 'https-proxy-agent';
1+
import { HttpProxyAgent } from 'http-proxy-agent';
2+
import { HttpsProxyAgent } from 'https-proxy-agent';
33
import nodeFetch from 'node-fetch';
44

55
import logger from '../../logger/index.js';

0 commit comments

Comments
 (0)