Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mwhooker committed Apr 5, 2018
1 parent cb90e8b commit f094b3b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
## (UNRELEASED)

### BUG FIXES:

* post-processor/vagrant: Large VMDKs should no longer show a 0-byte size on OS X. [GH-6084]

### IMPROVEMENTS:

* builder/amazon: Setting `force_delete` will only delete AMIs owned by the
user. This should prevent failures where we try to delete an AMI with
a matching name, but owned by someone else. [GH-6111]

## 1.2.2 (March 26, 2018)

### BUG FIXES:
Expand Down
2 changes: 1 addition & 1 deletion builder/amazon/common/step_deregister_ami.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (s *StepDeregisterAMI) Run(_ context.Context, state multistep.StateBag) mul
Owners: aws.StringSlice([]string{"self"}),
Filters: []*ec2.Filter{{
Name: aws.String("name"),
Values: []*string{aws.String(s.AMIName)},
Values: aws.StringSlice([]string{s.AMIName}),
}}})

if err != nil {
Expand Down

0 comments on commit f094b3b

Please sign in to comment.