From f92b63d0f2b77a014622d45eccf783ad78d42768 Mon Sep 17 00:00:00 2001 From: Andrew Jackson Date: Mon, 17 Oct 2022 12:31:36 -0400 Subject: [PATCH 1/4] Add deprecation warning --- src/fidesops/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/fidesops/main.py b/src/fidesops/main.py index 7edcac065..5cff9e52e 100644 --- a/src/fidesops/main.py +++ b/src/fidesops/main.py @@ -235,6 +235,10 @@ def read_ui_files(request: Request) -> FileResponse: def start_webserver() -> None: """Run any pending DB migrations and start the webserver.""" + logger.warning( + "Fidesops has been deprecated. The codebase has merged into the Fides repo. Located at " + "https://github.com/ethyca/fides" + ) logger.info("****************fidesops****************") if logger.getEffectiveLevel() == logging.DEBUG: From eb024e4a42d7aa42c3da605e935a7bd66d914e6f Mon Sep 17 00:00:00 2001 From: Andrew Jackson Date: Mon, 17 Oct 2022 12:33:27 -0400 Subject: [PATCH 2/4] update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30c0cd263..c3ccef005 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ The types of changes are: * `Security` in case of vulnerabilities. ## [Unreleased](https://github.com/ethyca/fidesops/compare/1.8.1...main) +### Added +- Add deprecation warning [#1429](https://github.com/ethyca/fidesops/pull/1429) ### Changed * Fix redis `db_index` config issue [#1427](https://github.com/ethyca/fidesops/pull/1427) From 1e1bdad65b0b0aa24356b1e13c7b6094c243e5c7 Mon Sep 17 00:00:00 2001 From: Andrew Jackson Date: Wed, 19 Oct 2022 09:48:23 -0400 Subject: [PATCH 3/4] Update message --- src/fidesops/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fidesops/main.py b/src/fidesops/main.py index 5cff9e52e..f9bde5787 100644 --- a/src/fidesops/main.py +++ b/src/fidesops/main.py @@ -236,8 +236,8 @@ def read_ui_files(request: Request) -> FileResponse: def start_webserver() -> None: """Run any pending DB migrations and start the webserver.""" logger.warning( - "Fidesops has been deprecated. The codebase has merged into the Fides repo. Located at " - "https://github.com/ethyca/fides" + "Fidesops has been deprecated. The codebase has merged into the Fides repo. Fides is located at " + "https://github.com/ethyca/fides. The documentation is located at https://ethyca.github.io/fides." ) logger.info("****************fidesops****************") From a292f5df04b40cdcdbceda2bf1baac0d9228b838 Mon Sep 17 00:00:00 2001 From: Andrew Jackson Date: Thu, 20 Oct 2022 13:47:19 -0400 Subject: [PATCH 4/4] Update Readme --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d9a2d81c..9ad777395 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ -# Meet Fidesops: Privacy as Code for DSAR Orchestration +# Deprecation Notice +Fidesops is deprecated now. The codebase has been merged in into [Fides](https://github.com/ethyca/fides). +Visit the Fides [Documentation](https://ethyca.github.io/fides) to learn more. + +## Meet Fidesops: Privacy as Code for DSAR Orchestration _A part of the [greater Fides ecosystem](https://github.com/ethyca/fides)._