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

Bump ansible requirement to 2.8.0 #1147

Closed
wants to merge 1 commit into from
Closed
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Allow `composer install` with `--classmap-authoritative` during deploy ([#1132](https://github.com/roots/trellis/pull/1132))
* Fix `DEPLOY_UNFINISHED` not being copied over to `release` folder (#[1145])(https://github.com/roots/trellis/pull/1145)
* Deploy: Remove untracked files from project folder ([#1146](https://github.com/roots/trellis/pull/1146))
* Bump ansible requirement to 2.8.0 ([#1147](https://github.com/roots/trellis/pull/1147))

### 1.3.0: December 7th, 2019
* Add `git_sha` and `release_version` to `.env` on deploy ([#1124](https://github.com/roots/trellis/pull/1124))
Expand Down
2 changes: 1 addition & 1 deletion lib/trellis/plugins/vars/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from ansible.utils.display import Display
display = Display()

version_requirement = '2.7.12'
version_requirement = '2.8.0'
version_tested_max = '2.8.4'
python3_required_version = '2.5.3'

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ansible>=2.7.12,<2.9
ansible>=2.8.0,<2.9
passlib
2 changes: 1 addition & 1 deletion vagrant.default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ vagrant_cpus: 1
vagrant_memory: 1024 # in MB
vagrant_box: 'bento/ubuntu-18.04'
vagrant_box_version: '>= 201807.12.0'
vagrant_ansible_version: '2.7.12'
vagrant_ansible_version: '2.8.0'
vagrant_skip_galaxy: false
vagrant_mount_type: 'nfs'

Expand Down