Skip to content
This repository has been archived by the owner on Feb 14, 2025. It is now read-only.

Commit

Permalink
[SECFOUND-4018] Archive Confidant Announcement (#445)
Browse files Browse the repository at this point in the history
***Description***
This PR is to post archive announcement to the repo and [public
docs](https://lyft.github.io/confidant/archiving_announcement.html) in
the docs and to post deprecation warning to the PYPI package.

***Ticket***
[SECFOUND-4018](https://jira.lyft.net/browse/SECFOUND-4018)
  • Loading branch information
whu-lyft authored Feb 14, 2025
1 parent 1b4b1c4 commit 9f5c36f
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10.15
python-version: 3.10.16
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10.15
python-version: 3.10.16
- name: Install virtualenv
run: pip install virtualenv
- name: Install xmlsec
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Setup python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10.15
python-version: 3.10.16
- name: Add wheel dependency
run: pip install wheel
- name: Generate dist
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
![confidant](./confidant/public/images/confidant_text_purple.svg)
=========

[Archiving Confidant Notice](https://github.com/lyft/confidant/issues/439)
[Archive Confidant Notice]
----------------------------------

As of 10/25/2024, we have made the decision to archive the Confidant project by 01/31/2025. This choice comes after careful consideration of the project’s direction, usage, and internal needs. Confidant will no longer receive updates or support, including issue triaging, pull request reviews, or feature development.
As of 02/14/2025, the repository has been marked as archived and read-only. While all existing code remains accessible, we will no longer accept new pull requests or issues. The existing releases will continue to be available for download, but no new features or updates will be developed.


----------------------------------
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.6.2
7.0.0
7 changes: 7 additions & 0 deletions confidant/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import warnings

warnings.warn(
"This package is deprecated and will no longer be maintained. ",
DeprecationWarning,
stacklevel=2
)
2 changes: 1 addition & 1 deletion docker-compose.integration.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.8"
services:
confidant:
image: python:3.10.15
image: python:3.10.16
init: true
restart: "no"
networks:
Expand Down
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Developer-local docs build
# The public docs has been deprecated, DO NOT build

```bash
# Just run the make target
Expand Down
2 changes: 2 additions & 0 deletions docs/root/archive_announcement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Archive Announcement
As of 02/14/2025, the repository has been marked as archived and read-only. While all existing code remains accessible, we will no longer accept new pull requests or issues. The existing releases will continue to be available for download, but no new features or updates will be developed.
2 changes: 0 additions & 2 deletions docs/root/archiving_announcement.md

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
install_requires=reqs,
author="Ryan Lane",
author_email="[email protected]",
description="A secret management system and client.",
description="DEPRECATED: A secret management system and client.",
license="apache2",
url="https://github.com/lyft/confidant",
entry_points={
Expand Down

0 comments on commit 9f5c36f

Please sign in to comment.