|
| 1 | +# Changelog |
| 2 | +All notable changes to this project will be documented in this file. |
| 3 | + |
| 4 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 5 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 6 | + |
| 7 | +## [Unreleased] |
| 8 | +### Added |
| 9 | +- Add `CHANGELOG.md`. |
| 10 | +### Changed |
| 11 | +- Switch CI from SemaphoreCI to GitHub Actions. |
| 12 | + |
| 13 | +## [0.4.1] - 2020-06-04 |
| 14 | +### Added |
| 15 | +- Add CONTRIBUTING.md. |
| 16 | +- Add `phony-targets` and `markdown-link-check` hooks. |
| 17 | +### Changelog |
| 18 | +- Update logo and badges in README.md. |
| 19 | + |
| 20 | +## [0.4.0] - 2020-05-28 |
| 21 | +### Fixed |
| 22 | +- Fix a bug that was introduced during the last release which forced the |
| 23 | + re-creation of teams on every run. |
| 24 | + |
| 25 | +## [0.3.1] - 2020-05-24 |
| 26 | +### Fixed |
| 27 | +- Fix dependency issue when assigning teams by name. |
| 28 | + |
| 29 | +## [0.3.0] - 2020-05-14 |
| 30 | +### Added |
| 31 | +- Add `issue_labels_create` to specify whether you want to force or suppress the |
| 32 | + creation of issues labels. Default is `true` if `has_issues` is `true` or |
| 33 | + `issue_labels` is non-empty, otherwise default is `false`. |
| 34 | + |
| 35 | +## [0.2.1] - 2020-05-09 |
| 36 | +### Added |
| 37 | +- Introduced support for the |
| 38 | + [github_repository_webhook](https://www.terraform.io/docs/providers/github/r/repository_webhook.html) |
| 39 | + resource. You can now add webhooks to your repositories through the newly |
| 40 | + introduced variable `webhooks`. For further information please read the |
| 41 | + [documentation](https://github.com/mineiros-io/terraform-github-repository#webhooks-configuration). |
| 42 | + |
| 43 | +## [0.2.0] - 2020-04-16 |
| 44 | +### Added |
| 45 | +- Use slugs for team ids. |
| 46 | +### Changed |
| 47 | +- Set `delete_branch_on_merge` default value to `true`. |
| 48 | +- Upgrade terraform-github-provider to `~> 2.6`. |
| 49 | +### Fixed |
| 50 | +- Fix module dependency by introducing `modules_depends_on`. |
| 51 | + |
| 52 | +## [0.1.0] - 2020-02-27 |
| 53 | +### Changed |
| 54 | +- Update README.md and add more examples and related tests. |
| 55 | + |
| 56 | +## [0.0.7] - 2020-01-14 |
| 57 | +### Changed |
| 58 | +- Breaking Changes for `branch_protection_rules`. Properties are now configured |
| 59 | + as a nested object instead of lists. |
| 60 | + |
| 61 | +## [0.0.6] - 2020-01-12 |
| 62 | +### Changed |
| 63 | +- Ignore changes in `auto_init`. |
| 64 | +- Ignore changes in `gitignore_template`. |
| 65 | +- Ignore changes in `license_template`. |
| 66 | + |
| 67 | +## [0.0.5] - 2020-01-12 |
| 68 | +### Added |
| 69 | +- Add `defaults`. |
| 70 | +- Add `extra_topics` for adding additional topics when defaults.topics should |
| 71 | + not be overwritten but merged. |
| 72 | +- Add `admin_collaborators` as a list of github usernames to add as |
| 73 | + collaborators with admin permission. |
| 74 | +- Add `push_collaborators` as a list of github usernames to add as collaborators |
| 75 | + with push permission. |
| 76 | +- Add `pull_collaborators` as a list of github usernames to add as collaborators |
| 77 | + with pull permission. |
| 78 | +- Add `admin_team_ids` as a list of team IDs to add as admin teams. |
| 79 | +- Add `push_team_ids` as a list of team IDs to add as push teams. |
| 80 | +- Add `pull_team_ids` as a list of team IDs to add as pull teams. |
| 81 | +### Changed |
| 82 | +- Use `for_each` instead of `count` to not recreate most resources when order |
| 83 | + in module parameter changes. |
| 84 | +- Add automated unit tests. |
| 85 | +### Fixed |
| 86 | +- Fix race condition in `branch_protection` configuration. |
| 87 | +### Removed |
| 88 | +- Remove `teams`. |
| 89 | +- Remove `collaborators`. |
| 90 | + |
| 91 | +## [0.0.4] - 2020-01-06 |
| 92 | +### Changed |
| 93 | +- Set `auto_init` default value to `true`. |
| 94 | + |
| 95 | +## [0.0.3] - 2020-01-06 |
| 96 | +### Changed |
| 97 | +- Set has_issues default value to `false`. |
| 98 | + |
| 99 | +## [0.0.2] - 2020-01-06 |
| 100 | +### Removed |
| 101 | +- Remove unnecessary `Vars` declaration from test. |
| 102 | +### Changed |
| 103 | +- Set `has_feature` toggles default values to `false`. |
| 104 | +- Set example variables default value to null. |
| 105 | + |
| 106 | +## [0.0.1] - 2020-01-05 |
| 107 | +### Added |
| 108 | +- This is the initial release of our GitHub Repository module with support for |
| 109 | + creating and managing GitHub Repositories for Organizations. |
| 110 | + |
| 111 | +[Unreleased]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.4.1...HEAD |
| 112 | +[0.4.1]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.4.0...v0.4.1 |
| 113 | +[0.4.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.3.1...v0.4.0 |
| 114 | +[0.3.1]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.3.0...v0.3.1 |
| 115 | +[0.3.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.2.1...v0.3.0 |
| 116 | +[0.2.1]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.2.0...v0.2.1 |
| 117 | +[0.2.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.1.0...v0.2.0 |
| 118 | +[0.1.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.0.7...v0.1.0 |
| 119 | +[0.0.7]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.0.6...v0.0.7 |
| 120 | +[0.0.6]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.0.5...v0.0.6 |
| 121 | +[0.0.5]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.0.4...v0.0.5 |
| 122 | +[0.0.4]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.0.3...v0.0.4 |
| 123 | +[0.0.3]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.0.2...v0.0.3 |
| 124 | +[0.0.2]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.0.1...v0.0.2 |
| 125 | +[0.0.1]: https://github.com/mineiros-io/terraform-aws-s3-bucket/releases/tag/v0.0.1 |
0 commit comments