Skip to content

Commit 8e8c5e0

Browse files
authored
Fix proxy handling in reporter (#1209)
2 parents a49d556 + c1682f2 commit 8e8c5e0

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
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 [patch]
6+
7+
> 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/).
8+
9+
### Fixed
10+
11+
- Support proxies in GitLab issues reporting
12+
513
## 10.1.0 - 2025-11-24
614

715
_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)