Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.2.0 #87

Merged
merged 4 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
================================================
The Terraform Provider for Ansible Release Notes
================================================

.. contents:: Topics

v1.2.0
======

alinabuzachis marked this conversation as resolved.
Show resolved Hide resolved
Release Summary
---------------

The terraform-provider-ansible v1.2.0 includes minor bugfixes and improvements.

Minor Changes
-------------

- Update dependencies (google.golang.org/grpc and golang.org/x/net) to resolve security alerts https://github.com/ansible/terraform-provider-ansible/security/dependabot (https://github.com/ansible/terraform-provider-ansible/pull/72).
- Updates the provider to use Go 1.21 (https://github.com/ansible/terraform-provider-ansible/pull/89)
- Updates the provider to use SDKv2 (https://github.com/ansible/terraform-provider-ansible/issues/39).

Bugfixes
--------

- provider/resource_playbook - Fix race condition between multiple ansible_playbook resources (https://github.com/ansible/terraform-provider-ansible/issues/38).
24 changes: 24 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
ancestor: null
releases:
1.2.0:
changes:
bugfixes:
- provider/resource_playbook - Fix race condition between multiple ansible_playbook
resources (https://github.com/ansible/terraform-provider-ansible/issues/38).
minor_changes:
- Update dependencies (google.golang.org/grpc and golang.org/x/net) to resolve
security alerts https://github.com/ansible/terraform-provider-ansible/security/dependabot
(https://github.com/ansible/terraform-provider-ansible/pull/72).
- Updates the provider to use Go 1.21 (https://github.com/ansible/terraform-provider-ansible/pull/89)
- Updates the provider to use SDKv2 (https://github.com/ansible/terraform-provider-ansible/issues/39).
release_summary: The terraform-provider-ansible v1.2.0 includes minor bugfixes
and improvements.
fragments:
alinabuzachis marked this conversation as resolved.
Show resolved Hide resolved
- aws_example.yml
- go_version_updates.yml
- gplv3_licensing.yml
- inventory_race_conditions.yml
- release-summary.yml
- update_dependencies.yml
- use_sdkv2.yml
release_date: '2024-02-21'
2 changes: 0 additions & 2 deletions changelogs/fragments/aws_example.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/gplv3_licensing.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/inventory_race_conditions.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/update_dependencies.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/use_sdkv2.yml

This file was deleted.

2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Use the navigation to the left to read about the available resources.
terraform {
required_providers {
ansible = {
version = "~> 1.1.0"
version = "~> 1.2.0"
source = "ansible/ansible"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
ansible = {
version = "~> 1.1.0"
version = "~> 1.2.0"
source = "ansible/ansible"
}
}
Expand Down
Loading