Skip to content

Commit 92cdabe

Browse files
author
Wiktor Maj
authored
Merge branch 'master' into fix/51-cleanup-pyc-files
2 parents 37bd4c4 + ad65275 commit 92cdabe

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222
* Migrated CI from self-hosted to GitHub-hosted runners with Docker-in-Docker test infrastructure. (#94)
2323
* Test workflow always builds service images locally for reproducibility. (#97)
2424
* Clean up temporary `.pyc` files on remote nodes after execution. (#51)
25+
* Relaxed Terraform version constraint to accept any 1.x release. (#40)
2526

2627
### Fixed
2728

2829
* Fixed `run_mysql_server()` not instantiating `MySQLServer` class. (#94)
2930
* Disabled MD060 markdownlint rule to fix table column style false positives in documentation. (#94)
31+
* Added default inventory directive to `ansible.cfg`. (#42)
3032

3133
## 1.0 - 2024-10-13
3234

tests/setup/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = "1.0.10"
2+
required_version = ">= 1.0.0, < 2.0.0"
33
required_providers {
44
null = {
55
source = "hashicorp/null"

tests/testsuite/ansible.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[defaults]
2+
inventory = inventory.yml
23
roles_path = ./roles
34
forks = 32

0 commit comments

Comments
 (0)