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: Release v3.11.0 #715

Merged
merged 3 commits into from
Aug 15, 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
17 changes: 17 additions & 0 deletions ansible_collections/arista/cvp/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ Arista.Cvp Release Notes
.. contents:: Topics


v3.11.0
=======

Release Summary
---------------

Release 3.11.0 - See documentation on cvp.avd.sh for details.


Bugfixes
--------

- Allow cv_device_v3 to handle SN-based decomms
- Cv_validate_v3 broken with cvprac 1.4.0 due to argument keyword change
- Device decommissioning fails if a device is not streaming and not provisioned
- Update Readme with correct ansible-core version

v3.10.1
=======

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ plugins:
strategy: {}
test: {}
vars: {}
version: 3.10.1
version: 3.11.0
13 changes: 13 additions & 0 deletions ansible_collections/arista/cvp/changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@ releases:
fragments:
- v3.10.1.yml
release_date: '2023-12-06'
3.11.0:
changes:
bugfixes:
- Allow cv_device_v3 to handle SN-based decomms
- Cv_validate_v3 broken with cvprac 1.4.0 due to argument keyword change
- Device decommissioning fails if a device is not streaming and not provisioned
- Update Readme with correct ansible-core version
release_summary: 'Release 3.11.0 - See documentation on cvp.avd.sh for details.
'
fragments:
- v3.11.0.yml
release_date: '2024-08-13'
3.4.0:
changes:
bugfixes:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
release_summary: |
Release 3.11.0 - See documentation on cvp.avd.sh for details.
bugfixes:
- Cv_validate_v3 broken with cvprac 1.4.0 due to argument keyword change
- Update Readme with correct ansible-core version
- Allow cv_device_v3 to handle SN-based decomms
- Device decommissioning fails if a device is not streaming and not provisioned
20 changes: 20 additions & 0 deletions ansible_collections/arista/cvp/docs/release-notes/v3.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,30 @@

## Release 3.11.0

Full release note available on [github](https://github.com/aristanetworks/ansible-cvp/releases/tag/v3.11.0)
carlbuchmann marked this conversation as resolved.
Show resolved Hide resolved

### Deprecations

- The `dhcp_configuration` role has been deprecated and will be removed in version 4.0.0.

### Bug fixes

- `cv_validate_v3` Fix broken module with cvprac 1.4.0 due to argument keyword change(#694)
- `cv_device_v3` Fix device decommissioning fail when a device is not streaming and not provisioned(#700)
- `cv_device_v3` Allow cv_device_v3 to handle SN-based decomms(#705)

### Documentation

- Add actions documentation
- Readme updates to align with new Red Hat template

### Requirements

- Ansible-cvp now requires a newer minimum and maximum version of the Python package `ansible-core>=2.15.0,<2.18.0`
The latest version can be installed with `pip install "ansible-core>=2.15.0" --upgrade`
- Ansible-cvp now requires a newer minimum but no maximum version of the Python package `cvprac>=1.4.0`
The latest version can be installed with `pip install "cvprac>=1.4.0" --upgrade`

## Release 3.10.1

Full release note available on [github](https://github.com/aristanetworks/ansible-cvp/releases/tag/v3.10.1)
Expand Down
2 changes: 1 addition & 1 deletion ansible_collections/arista/cvp/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace: arista
name: cvp

# The version of the collection. Must be compatible with semantic versioning
version: 3.10.1
version: 3.11.0

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
Loading