From 594b6fe347ade9cac389aa39624bb38e5685871f Mon Sep 17 00:00:00 2001 From: Norman Ziegner Date: Thu, 23 May 2024 11:15:25 +0200 Subject: [PATCH] Add deprecation notice Signed-off-by: Norman Ziegner --- CHANGELOG.md | 23 +++++++++++++++++++++++ README.md | 8 ++++++++ tasks/main.yml | 3 +++ 3 files changed, 34 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 216f3b2..46eeece 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [v1.6.2](https://github.com/hifis-net/ansible-role-gitlab/tree/v1.6.2) (2024-05-23) + +[Full Changelog](https://github.com/hifis-net/ansible-role-gitlab/compare/v1.6.1...v1.6.2) + +**Implemented enhancements:** + +- Query ansible facts through ansible\_facts.\* namespace [\#143](https://github.com/hifis-net/ansible-role-gitlab/issues/143) + +**Fixed bugs:** + +- Prefix variables with role name [\#106](https://github.com/hifis-net/ansible-role-gitlab/issues/106) + +**Merged pull requests:** + +- chore\(deps-dev\): Bump ansible-lint from 6.21.0 to 24.2.0 [\#146](https://github.com/hifis-net/ansible-role-gitlab/pull/146) ([dependabot[bot]](https://github.com/apps/dependabot)) +- refactor: refer to ansible facts through ansible\_facts.\* namespace [\#144](https://github.com/hifis-net/ansible-role-gitlab/pull/144) ([Normo](https://github.com/Normo)) +- chore\(deps-dev\): Bump molecule-plugins from 23.5.0 to 23.5.3 [\#142](https://github.com/hifis-net/ansible-role-gitlab/pull/142) ([dependabot[bot]](https://github.com/apps/dependabot)) +- chore\(deps-dev\): Bump molecule from 6.0.2 to 24.2.0 [\#141](https://github.com/hifis-net/ansible-role-gitlab/pull/141) ([dependabot[bot]](https://github.com/apps/dependabot)) +- chore\(deps-dev\): Bump reuse from 2.1.0 to 3.0.1 [\#140](https://github.com/hifis-net/ansible-role-gitlab/pull/140) ([dependabot[bot]](https://github.com/apps/dependabot)) +- chore\(deps\): Bump ansible from 8.5.0 to 9.3.0 [\#139](https://github.com/hifis-net/ansible-role-gitlab/pull/139) ([dependabot[bot]](https://github.com/apps/dependabot)) +- chore\(deps-dev\): Bump yamllint from 1.32.0 to 1.35.1 [\#138](https://github.com/hifis-net/ansible-role-gitlab/pull/138) ([dependabot[bot]](https://github.com/apps/dependabot)) +- refactor: add role name prefix to variables [\#121](https://github.com/hifis-net/ansible-role-gitlab/pull/121) ([Normo](https://github.com/Normo)) + ## [v1.6.1](https://github.com/hifis-net/ansible-role-gitlab/tree/v1.6.1) (2023-11-07) [Full Changelog](https://github.com/hifis-net/ansible-role-gitlab/compare/v1.6.0...v1.6.1) diff --git a/README.md b/README.md index 29dbfa6..c1a7434 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,13 @@ SPDX-License-Identifier: Apache-2.0 # GitLab Ansible Role +:warning: **This project is archived!** :warning: + +This role has been migrated to our `hifis.toolkit` collection: + +- +- + [![CI Status](https://github.com/hifis-net/ansible-role-gitlab/actions/workflows/ci.yml/badge.svg)](https://github.com/hifis-net/ansible-role-gitlab/actions/workflows/ci.yml) [![Ansible Galaxy Role](https://img.shields.io/ansible/role/53362?color=orange)](https://galaxy.ansible.com/hifis/gitlab) [![Ansible Galaxy Role downloads](https://img.shields.io/ansible/role/d/53362)](https://galaxy.ansible.com/hifis/gitlab) @@ -17,6 +24,7 @@ SPDX-License-Identifier: Apache-2.0 A role to install and configure official GitLab Omnibus package. Currently [supported platforms](meta/main.yml) are: + - CentOS 7 - AlmaLinux 8 - Debian 11 (Bullseye) diff --git a/tasks/main.yml b/tasks/main.yml index 05e9b99..824c4d6 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -4,6 +4,9 @@ # SPDX-License-Identifier: Apache-2.0 --- +- name: Deprecation notice. + ansible.builtin.debug: + msg: "DEPRECATION NOTICE: This role has been migrated to the hifis.toolkit collection (https://github.com/hifis-net/ansible-collection-toolkit)." - name: Set OS distribution dependent variables ansible.builtin.include_vars: "{{ ansible_facts.distribution }}.yml"