Skip to content

Commit

Permalink
Update galaxy version and requirements.txt
Browse files Browse the repository at this point in the history
Increases the collection version to 4.2.0 and specifies the
dependency for PYAOSCX v2.4.0

(cherry picked from commit d1c4df0d9e0a45749a2a243e93d52b634357615c)
  • Loading branch information
Vladimir Vargas authored and kchavesr committed Apr 18, 2023
1 parent 5ed4f37 commit 4dc0d16
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ Arubanetworks.Aoscx Release Notes
.. contents:: Topics


v4.2.0
======

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

New features (port security, PoE, MAC, static MAC and speed/duplex) and bugfixes

Major Changes
-------------

- Add new modules for PoE (aoscx_poe), MAC (aoscx_mac) and Static MAC (aoscx_static_mac)
- Add port security support (aoscx_l2_interface).
- Add speed and duplex support (aoscx_interface).
- Fix module aoscx_upload firmware using HTTP.
- Fix module aoscx_upload_firmware for local path (https://github.com/aruba/aoscx-ansible-collection/issues/28).
- Include fixes for issues found internally.

Minor Changes
-------------

- Fix Interface MTU support (https://github.com/aruba/aoscx-ansible-collection/issues/38).
- Fix idempotency in ACL module.

v4.1.1
======

Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Requirements
switch(config)# https-server rest access-mode read-write
switch(config)# https-server vrf mgmt
```
* Pycurl (When using aoscx_firmware_upload with platforms 4100i and 6100)

Installation
------------
Expand Down Expand Up @@ -69,6 +70,19 @@ Skipping 'ansible.utils:2.3.1' as it is already installed
```
ansible-control-machine$cd /users/chiapuzi/Desktop/sandbox/
```
* Optional: Install pycurl
Debian based distros:
```
apt-get install curl openssl libcurl4-openssl-dev libssl-dev python3-dev
```
Red Hat based distros:
```
yum install curl openssl openssl-devel libcurl libcurl-devel python3-devel
```
And install pycurl:
```
python3 -m pip install pycurl
```

SSH/CLI Modules
---------------
Expand Down
14 changes: 14 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,17 @@ releases:
- Fix default string value (https://github.com/aruba/aoscx-ansible-collection/issues/42).
release_summary: Bug fixes release
release_date: '2022-10-19'
4.2.0:
changes:
major_changes:
- Add speed and duplex support (aoscx_interface).
- Add port security support (aoscx_l2_interface).
- Add new modules for PoE (aoscx_poe), MAC (aoscx_mac) and Static MAC (aoscx_static_mac)
- Fix module aoscx_upload_firmware for local path (https://github.com/aruba/aoscx-ansible-collection/issues/28).
- Fix module aoscx_upload firmware using HTTP.
- Include fixes for issues found internally.
minor_changes:
- Fix Interface MTU support (https://github.com/aruba/aoscx-ansible-collection/issues/38).
- Fix idempotency in ACL module.
release_summary: New features (port security, PoE, MAC, static MAC and speed/duplex) and bugfixes
release_date: '2023-03-06'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace: "arubanetworks"

name: "aoscx"

version: "4.1.1"
version: "4.2.0"

authors:
- "Madhusudan Pranav Venugopal"
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
paramiko
requests
pyaoscx>=2.3.1
ansible-pylibssh
pyaoscx>=2.4.0

0 comments on commit 4dc0d16

Please sign in to comment.