Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

Add deprecation warning #1429

Merged
merged 5 commits into from
Oct 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)._

Expand Down
4 changes: 4 additions & 0 deletions src/fidesops/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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. Fides is located at "
"https://github.com/ethyca/fides. The documentation is located at https://ethyca.github.io/fides."
)
logger.info("****************fidesops****************")

if logger.getEffectiveLevel() == logging.DEBUG:
Expand Down