Skip to content

Commit 8cb0be1

Browse files
Backport proxy fix (#13441)
* changelog update and patch release version changes (#13440) * changelog update and patch release version changes * typo fix * changes for allowing proxy server to fetch release binaries (#13439)
1 parent 1a01c05 commit 8cb0be1

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
## 1.14.0 (Upcoming...)
1+
## 1.14.1 (August 5, 2025)
2+
3+
### BUG FIXES:
4+
5+
* core: Changes on the packer plugin installation process to ensure that the plugin is installed correctly.
6+
The releases binary from official site releases.hashicorp.com was not getting installed from a proxy server, which was addressed in this PR.
7+
[GH-13439](https://github.com/hashicorp/packer/pull/13439)
8+
9+
## 1.14.0 (July 30, 2025)
210

311
### IMPROVEMENTS:
412

packer/plugin-getter/release/getter.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ package release
55

66
import (
77
"bytes"
8-
"crypto/tls"
98
"encoding/json"
109
"fmt"
1110
"io"
@@ -80,11 +79,7 @@ func (g *Getter) Get(what string, opts plugingetter.GetOptions) (io.ReadCloser,
8079
}
8180

8281
if g.HttpClient == nil {
83-
g.HttpClient = &http.Client{
84-
Transport: &http.Transport{
85-
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
86-
},
87-
}
82+
g.HttpClient = &http.Client{}
8883
}
8984

9085
var req *http.Request

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.0
1+
1.14.1

0 commit comments

Comments
 (0)