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

Ansible certification for 2.15 and 2.16 #172

Merged
merged 1 commit into from
May 16, 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
11 changes: 4 additions & 7 deletions .github/workflows/ansible-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,8 @@ jobs:
strategy:
matrix:
ansible:
- stable-2.10
- stable-2.12
- stable-2.13
- stable-2.14
- stable-2.15
- stable-2.16
runs-on: ubuntu-latest
steps:

Expand All @@ -21,10 +18,10 @@ jobs:
with:
path: ansible_collections/dellemc/os10

- name: Set up Python 3.9
- name: Set up Python "3.10"
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: "3.10"

- name: Install ansible-base (${{ matrix.ansible }})
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
Expand All @@ -33,4 +30,4 @@ jobs:
run: ansible-galaxy collection install ansible.netcommon -p ../../

- name: Run sanity tests
run: ansible-test sanity --docker -v --color --python 3.9
run: ansible-test sanity --docker -v --color --python "3.10"
12 changes: 12 additions & 0 deletions changelogs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ Ansible Network Collection for Dell EMC SmartFabric OS10 Release Notes

.. contents:: Topics

v1.2.5
======

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

This is to Update our Certified Ansible Collection as per the redhat
This is for OS10 collections for Ansible core versions 2.15 and 2.16
This is the minor release of the ``dellemc.os10`` collection.
This changelog contains all changes to the modules in this collection
This have been added after the release of ``dellemc.os10`` 1.2.4.

v1.2.4
======

Expand Down
8 changes: 8 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,3 +194,11 @@ releases:

that have been added after the release of ``dellemc.os10`` 1.2.3.'
release_date: '2024-01-12'
1.2.5:
changes:
release_summary: 'This is to Update our Certified Ansible Collection as per the redhat
This is for OS10 collections for Ansible core versions 2.15 and 2.16
This is the minor release of the ``dellemc.os10`` collection.
This changelog contains all changes to the modules in this collection
This have been added after the release of ``dellemc.os10`` 1.2.4.'
release_date: '2024-05-16'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: os10
namespace: dellemc
readme: README.md
tags: [dell, dellemc, os10, emc, networking]
version: 1.2.4
version: 1.2.5
repository: https://github.com/ansible-collections/dellemc.os10
documentation: https://github.com/ansible-collections/dellemc.os10/tree/master/docs
homepage: https://github.com/ansible-collections/dellemc.os10
Expand Down
2 changes: 1 addition & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
requires_ansible: '>=2.9.10'
requires_ansible: '>=2.15.0'
plugin_routing:
action:
os10_config:
Expand Down
Loading