release-please 14.7.1 → 14.7.2

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/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@
4
4
 
5
5
  [1]: https://www.npmjs.com/package/release-please?activeTab=versions
6
6
 
7
+ ## [14.7.2](https://github.com/googleapis/release-please/compare/v14.7.1...v14.7.2) (2022-09-26)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * Graphql should also configure proxy agent ([#1655](https://github.com/googleapis/release-please/issues/1655)) ([c68f057](https://github.com/googleapis/release-please/commit/c68f05717148061a1f4365a2323474a72c567a08))
13
+
7
14
  ## [14.7.1](https://github.com/googleapis/release-please/compare/v14.7.0...v14.7.1) (2022-09-22)
8
15
 
9
16
 
@@ -397,6 +397,9 @@ class GitHub {
397
397
  }),
398
398
  graphql: graphql_1.graphql.defaults({
399
399
  baseUrl: graphqlUrl,
400
+ request: {
401
+ agent: this.createDefaultAgent(graphqlUrl, options.proxy),
402
+ },
400
403
  headers: {
401
404
  'user-agent': `release-please/${releasePleaseVersion}`,
402
405
  Authorization: `token ${options.token}`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "14.7.1",
3
+ "version": "14.7.2",
4
4
  "description": "generate release PRs based on the conventionalcommits.org spec",
5
5
  "main": "./build/src/index.js",
6
6
  "bin": "./build/src/bin/release-please.js",