Skip to content

Commit

Permalink
Prepare Release - v2.3.0 (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Apr 2, 2024
1 parent 9fcaa24 commit 5340613
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,26 @@

---

[//]: # (START/v2.3.0)
# v2.3.0

This release updates the collection based on the [`ansible-core` support matrix](https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix). This involves the following:
- Dropping support for `ansible-core` 2.14 since it will reach its end of life on May 20th 2024.
- Dropping support for Python 3.8 since it's no longer supported in `ansible-core` 2.15 and above.

To be able to use the latest version of the collection, please update your `ansible-core` and Python versions.

No breaking changes have been made in terms of usability of the collection.

## Features
* :warning: Set Ansible core 2.15 as minimum required version. {#91}
* :warning: Set Python 3.9 as minimum required version. {#91}

## Fixes
* Add 204 as a valid status code for DELETE operation. {#82}

---

[//]: # (START/v2.2.1)
# v2.2.1

Expand Down
25 changes: 25 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ onepassword.connect Release Notes
.. contents:: Topics


v2.3.0
======

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

This release updates the collection based on the `ansible-core` support matrix (https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix).

This involves the following:
- Dropping support for `ansible-core` 2.14 since it will reach its end of life on May 20th 2024.
- Dropping support for Python 3.8 since it's no longer supported in `ansible-core` 2.15 and above.

To be able to use the latest version of the collection, please update your `ansible-core` and Python versions.

No breaking changes have been made in terms of usability of the collection.

Breaking Changes / Porting Guide
--------------------------------
- Set Ansible core 2.15 as minimum required version. (https://github.com/1Password/ansible-onepasswordconnect-collection/pull/91)
- Set Python 3.9 as minimum required version. (https://github.com/1Password/ansible-onepasswordconnect-collection/pull/91)

Bugfixes
--------
- Add 204 as a valid status code for DELETE operation. (https://github.com/1Password/ansible-onepasswordconnect-collection/pull/82)

v2.2.4
======

Expand Down
32 changes: 32 additions & 0 deletions changelogs/.plugin-cache.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
objects: {}
plugins:
become: {}
cache: {}
callback: {}
cliconf: {}
connection: {}
httpapi: {}
inventory: {}
lookup: {}
module:
field_info:
description: Returns the value of a field in a 1Password item.
name: field_info
namespace: ""
version_added: 2.2.0
generic_item:
description: Creates a customizable 1Password Item
name: generic_item
namespace: ""
version_added:
item_info:
description: Returns information about a 1Password Item
name: item_info
namespace: ""
version_added:
netconf: {}
shell: {}
strategy: {}
vars: {}
version: 2.2.3
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace: onepassword
name: connect

# The version of the collection. Must be compatible with semantic versioning
version: 2.2.4
version: "2.3.0"

readme: README.md

Expand Down
2 changes: 1 addition & 1 deletion plugins/module_utils/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# 1Password Connect Ansible Collection Version
# Auto-updated during release process
COLLECTION_VERSION = "2.2.4"
COLLECTION_VERSION = "2.3.0"

GENERATE_NEVER = "never"
GENERATE_ALWAYS = "always"
Expand Down

0 comments on commit 5340613

Please sign in to comment.