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

Commit

Permalink
Add deprecation warning (#1429)
Browse files Browse the repository at this point in the history
* Add deprecation warning

* update CHANGELOG.md

* Update message

* Update Readme
  • Loading branch information
TheAndrewJackson committed Oct 21, 2022
1 parent 395c8d8 commit efd16e2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
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

0 comments on commit efd16e2

Please sign in to comment.