Virtualbox Plugin Release Version 1.1.4 #186
Merged
Merged
Conversation
Add backport-assistant workflow
Bumps [github.com/hashicorp/packer-plugin-sdk](https://github.com/hashicorp/packer-plugin-sdk) from 0.6.1 to 0.6.4. - [Release notes](https://github.com/hashicorp/packer-plugin-sdk/releases) - [Changelog](https://github.com/hashicorp/packer-plugin-sdk/blob/main/CHANGELOG.md) - [Commits](hashicorp/packer-plugin-sdk@v0.6.1...v0.6.4) --- updated-dependencies: - dependency-name: github.com/hashicorp/packer-plugin-sdk dependency-version: 0.6.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
…om/hashicorp/packer-plugin-sdk-0.6.4 Bump github.com/hashicorp/packer-plugin-sdk from 0.6.1 to 0.6.4
Signed-off-by: Corey Hemminger <hemminger@hotmail.com>
Signed-off-by: Corey Hemminger <hemminger@hotmail.com>
[COMPLIANCE] Update Copyright Headers
updated go.mod
Signed-off-by: Shen Jiamin <shen_jiamin@comp.nus.edu.sg>
Fix typo in shutdown message for ACPI
Bumps [github.com/hashicorp/packer-plugin-sdk](https://github.com/hashicorp/packer-plugin-sdk) from 0.6.4 to 0.6.9. - [Release notes](https://github.com/hashicorp/packer-plugin-sdk/releases) - [Changelog](https://github.com/hashicorp/packer-plugin-sdk/blob/main/CHANGELOG.md) - [Commits](hashicorp/packer-plugin-sdk@v0.6.4...v0.6.9) --- updated-dependencies: - dependency-name: github.com/hashicorp/packer-plugin-sdk dependency-version: 0.6.7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
add new hw settings and config options
fix: update plugin installation links in README
Add missing FloppyContent when creating floppy
upgrade go-jose version
…om/hashicorp/packer-plugin-sdk-0.6.7 Bump github.com/hashicorp/packer-plugin-sdk from 0.6.4 to 0.6.9
add missing auto generated docs
fix linter issues
Update storage controller naming to match the strings used by VBoxManage. The previous names included a redundant "Controller" suffix, and "VirtIO Controller" has been corrected to "VirtioSCSI" to align with VirtualBox device identification. * Replace "IDE Controller" with "IDE" * Replace "SATA Controller" with "SATA" * Replace "SCSI Controller" with "SCSI" * Replace "Floppy Controller" with "Floppy" * Replace "NVMe Controller" with "NVMe" * Replace "VirtIO Controller" with "VirtioSCSI" Fixes: #56 Fixes: #108 Signed-off-by: Shen Jiamin <shen_jiamin@comp.nus.edu.sg>
fix: align controller names for VBoxManage
|
Thank you for your submission! We require that all contributors sign our Contributor License Agreement ("CLA") before we can accept the contribution. Read and sign the agreement Learn more about why HashiCorp requires a CLA and what the CLA includes 6 out of 8 committers have signed the CLA.
sanyaraj2424 seems not to be a GitHub user. Have you signed the CLA already but the status is still pending? Recheck it. |
tanmay-hc
approved these changes
Jun 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several updates across the codebase, primarily focused on documentation improvements, CI/CD pipeline enhancements, and copyright/license updates. The most significant changes include expanded documentation for VirtualBox builder options, updates to the Go toolchain and linting configuration, and the addition of a new workflow for automated backports. Additionally, there are widespread copyright updates reflecting a change in ownership.
Documentation improvements:
.web-docs/components/builder/iso/README.mdto document new and existing options, including support for additional chipsets (armv8,armv8virtual), NICs (usbnet), audio, USB, mouse, keyboard, and graphics controller types, and clarified SSH and WinRM tunnel options. Also, added more key command documentation. [1] [2] [3] [4] [5].web-docs/components/builder/ovf/README.mdand.web-docs/components/builder/vm/README.md. [1] [2] [3] [4] [5] [6]CI/CD and linting updates:
.go-versionto Go 1.25.11 and upgraded GitHub Actions in.github/workflows/go-validate.ymlto use newer versions ofactions/checkout,actions/setup-go, andgolangci/golangci-lint-action, with corresponding linter version bump to v2.10.1. [1] [2].golangci.ymlto use the new v2 syntax, enabled specific linters, added granular exclusion rules, and changed output formatting. [1] [2].github/workflows/backport.ymlto automate backporting merged pull requests to release branches using Backport Assistant.