Skip to content

Commit

Permalink
chore: release 1.1.0 with required ansible >=2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-zakurenyi committed Oct 17, 2023
1 parent 4ce513e commit cb5d937
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:

env:
ANSIBLE: "stable-2.13"
ANSIBLE: "stable-2.15"
HERE: "./ansible_collections/delinea/core"

concurrency:
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Aqua
uses: aquaproj/aqua-installer@294926f94b4233f202a2f03875c604f840cfed70 # v2.1.1
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ jobs:
fail-fast: true
matrix:
ansible:
- stable-2.10
- stable-2.11
- stable-2.12
- stable-2.13
- stable-2.14
- stable-2.15
- devel

steps:
Expand All @@ -38,7 +37,7 @@ jobs:
- name: Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Aqua
uses: aquaproj/aqua-installer@294926f94b4233f202a2f03875c604f840cfed70 # v2.1.1
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ Delinea.Core Release Notes
.. contents:: Topics


v1.1.0
======

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

New option to allow returning a specific key from the returned data. If it's defined, but not found it will error, otherwise by default the entire secret object will be returned.

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

- dsv lookup plugin - add optional ``data_key`` parameter for filtering secret data.

v1.0.0
======

Expand Down
4 changes: 2 additions & 2 deletions aqua.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ registries:
- type: standard
ref: v3.79.0 # renovate: depName=aquaproj/aqua-registry
packages:
- name: golang/go@go1.19.2
- name: golang/go@go1.21.3
tags: ["release"]
- name: magefile/mage@v1.14.0
- name: magefile/mage@v1.15.0
tags: ["tests", "release"]
- name: charmbracelet/[email protected]
- name: mvdan/[email protected]
Expand Down
29 changes: 21 additions & 8 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,28 @@
---
ancestor:
ancestor: null
releases:
1.0.0:
changes:
release_summary: |
New plugin for getting secrets from Delinea DevOps Secrets Vault in Ansible.
release_summary: 'New plugin for getting secrets from Delinea DevOps Secrets
Vault in Ansible.
'
fragments:
- 1.0.0.yml
- 1.0.0.yml
plugins:
lookup:
- description: Get secrets from Delinea DevOps Secrets Vault
name: dsv
namespace:
- description: Get secrets from Delinea DevOps Secrets Vault
name: dsv
namespace: null
release_date: '2022-08-30'
1.1.0:
changes:
minor_changes:
- dsv lookup plugin - add optional ``data_key`` parameter for filtering secret
data.
release_summary: New option to allow returning a specific key from the returned
data. If it's defined, but not found it will error, otherwise by default the
entire secret object will be returned.
fragments:
- 1.1.0.yml
- 39-support data filtering.yml
release_date: '2023-10-17'
1 change: 0 additions & 1 deletion changelogs/fragments/1.1.0.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/39-support data filtering.yml

This file was deleted.

3 changes: 2 additions & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: delinea
name: core
version: 1.0.0
version: 1.1.0
readme: README.md
authors:
- Delinea (https://delinea.com/)
Expand All @@ -25,6 +25,7 @@ homepage: https://github.com/DelineaXPM/ansible-core-collection
issues: https://github.com/DelineaXPM/ansible-core-collection/issues
build_ignore:
# Directories:
- .artifacts
- .cache
- .devcontainer
- .github
Expand Down
2 changes: 1 addition & 1 deletion magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (

const (
// AnsibleLatest defines the latest stable version we use and support.
AnsibleLatest = "stable-2.13"
AnsibleLatest = "stable-2.15"

// CacheDir is the directory to keep virtual environments (ignored by git).
CacheDir = ".cache"
Expand Down
2 changes: 1 addition & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
requires_ansible: '>=2.10'
requires_ansible: '>=2.13'

0 comments on commit cb5d937

Please sign in to comment.