Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark acra-backup deprecated #674

Merged
merged 2 commits into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 4 additions & 1 deletion CHANGELOG_DEV.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 0.96.0 - 2023-09-20
- Deprecate acra-backup;
Zhaars marked this conversation as resolved.
Show resolved Hide resolved

# 0.96.0 - 2023-07-26
- Improve unicode support
- Improve unicode support;

# 0.96.0 - 2023-03-06
- Added support of PreparedStatement from SQL for PostgreSQL;
Expand Down
1 change: 1 addition & 0 deletions cmd/acra-backup/acra-backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const (
var DefaultConfigPath = utils.GetConfigPathByName(ServiceName)

func main() {
log.Warn("acra-backup tool is DEPRECATED since 0.96.0 and will be removed in 0.97.0. Use acra-keys instead.")
loggingFormat := flag.String("logging_format", "plaintext", "Logging format: plaintext, json or CEF")
outputDir := flag.String("keys_private_dir", keystore.DefaultKeyDirShort, "Folder with private keys")
outputPublicKey := flag.String("keys_public_dir", "", "Folder with public keys. Leave empty if keys stored in same folder as keys_private_dir")
Expand Down