From 29a595de268cf0a7720913ad71cc170c5f3a483e Mon Sep 17 00:00:00 2001 From: Taru Garg Date: Mon, 25 May 2026 14:11:55 +0530 Subject: [PATCH] version: cut release v1.1.7 --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- go.mod | 4 ++-- go.sum | 8 ++++---- version/VERSION | 2 +- version/version.go | 2 +- 6 files changed, 22 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04f0a45b..79b51df4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.1.7 (May 25, 2026) + +## What's Changed + +### IMPROVEMENTS: +* Add new builder id for VMware [GH-151](https://github.com/hashicorp/packer-plugin-vagrant/pull/151) + +### Other Changes +* Bump Go version to 1.25.10 [GH-153](https://github.com/hashicorp/packer-plugin-vagrant/pull/153) +* Bump `github.com/hashicorp/packer-plugin-sdk` to v0.6.9 [GH-153](https://github.com/hashicorp/packer-plugin-vagrant/pull/153) +* Migrate golangci-lint to v2 and refresh dependencies [GH-153](https://github.com/hashicorp/packer-plugin-vagrant/pull/153) [GH-146](https://github.com/hashicorp/packer-plugin-vagrant/pull/146) +* Add/Update Copyright Headers [GH-149](https://github.com/hashicorp/packer-plugin-vagrant/pull/149) [GH-144](https://github.com/hashicorp/packer-plugin-vagrant/pull/144) + ## 1.1.6 (August 5, 2025) ### IMPROVEMENTS: diff --git a/README.md b/README.md index 9aa2d4bd..de945045 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Then, run [`packer init`](https://developer.hashicorp.com/packer/docs/commands/i packer { required_plugins { vagrant = { - version = ">= 1.1.6" + version = ">= 1.1.7" source = "github.com/hashicorp/vagrant" } } diff --git a/go.mod b/go.mod index ca0e81ce..7961c41c 100644 --- a/go.mod +++ b/go.mod @@ -157,8 +157,8 @@ require ( go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect go.opentelemetry.io/otel v1.43.0 // indirect go.opentelemetry.io/otel/metric v1.43.0 // indirect - go.opentelemetry.io/otel/sdk v1.39.0 // indirect - go.opentelemetry.io/otel/sdk/metric v1.39.0 // indirect + go.opentelemetry.io/otel/sdk v1.43.0 // indirect + go.opentelemetry.io/otel/sdk/metric v1.43.0 // indirect go.opentelemetry.io/otel/trace v1.43.0 // indirect golang.org/x/crypto v0.52.0 // indirect golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect diff --git a/go.sum b/go.sum index 32f9cc41..f70cf2a0 100644 --- a/go.sum +++ b/go.sum @@ -484,10 +484,10 @@ go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.29.0 h1:WDdP9acbMYjbKI go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.29.0/go.mod h1:BLbf7zbNIONBLPwvFnwNHGj4zge8uTCM/UPIVW1Mq2I= go.opentelemetry.io/otel/metric v1.43.0 h1:d7638QeInOnuwOONPp4JAOGfbCEpYb+K6DVWvdxGzgM= go.opentelemetry.io/otel/metric v1.43.0/go.mod h1:RDnPtIxvqlgO8GRW18W6Z/4P462ldprJtfxHxyKd2PY= -go.opentelemetry.io/otel/sdk v1.39.0 h1:nMLYcjVsvdui1B/4FRkwjzoRVsMK8uL/cj0OyhKzt18= -go.opentelemetry.io/otel/sdk v1.39.0/go.mod h1:vDojkC4/jsTJsE+kh+LXYQlbL8CgrEcwmt1ENZszdJE= -go.opentelemetry.io/otel/sdk/metric v1.39.0 h1:cXMVVFVgsIf2YL6QkRF4Urbr/aMInf+2WKg+sEJTtB8= -go.opentelemetry.io/otel/sdk/metric v1.39.0/go.mod h1:xq9HEVH7qeX69/JnwEfp6fVq5wosJsY1mt4lLfYdVew= +go.opentelemetry.io/otel/sdk v1.43.0 h1:pi5mE86i5rTeLXqoF/hhiBtUNcrAGHLKQdhg4h4V9Dg= +go.opentelemetry.io/otel/sdk v1.43.0/go.mod h1:P+IkVU3iWukmiit/Yf9AWvpyRDlUeBaRg6Y+C58QHzg= +go.opentelemetry.io/otel/sdk/metric v1.43.0 h1:S88dyqXjJkuBNLeMcVPRFXpRw2fuwdvfCGLEo89fDkw= +go.opentelemetry.io/otel/sdk/metric v1.43.0/go.mod h1:C/RJtwSEJ5hzTiUz5pXF1kILHStzb9zFlIEe85bhj6A= go.opentelemetry.io/otel/trace v1.43.0 h1:BkNrHpup+4k4w+ZZ86CZoHHEkohws8AY+WTX09nk+3A= go.opentelemetry.io/otel/trace v1.43.0/go.mod h1:/QJhyVBUUswCphDVxq+8mld+AvhXZLhe+8WVFxiFff0= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= diff --git a/version/VERSION b/version/VERSION index 0664a8fd..2bf1ca5f 100644 --- a/version/VERSION +++ b/version/VERSION @@ -1 +1 @@ -1.1.6 +1.1.7 diff --git a/version/version.go b/version/version.go index 5666ff5b..64a9a7ab 100644 --- a/version/version.go +++ b/version/version.go @@ -7,7 +7,7 @@ import "github.com/hashicorp/packer-plugin-sdk/version" var ( // Version is the main version number that is being run at the moment. - Version = "1.1.6" + Version = "1.1.7" // VersionPrerelease is A pre-release marker for the Version. If this is "" // (empty string) then it means that it is a final release. Otherwise, this