-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
title: Version 7.0 (Unreleased) | ||
sidebar_position: 995 | ||
--- | ||
|
||
:::info | ||
|
||
Version 7 has not been released yet. | ||
|
||
::: | ||
|
||
## Breaking Changes | ||
|
||
Features have been removed *or* behavior changed. Most of the items here would have been deprecated | ||
in the past. Deprecations are always mentioned in release notes for minor version bumps. | ||
|
||
### Path Change on MacOS {#osx-path-change} | ||
|
||
:::caution | ||
|
||
If you are not running Recyclarr on MacOS, **no action is needed!** | ||
|
||
::: | ||
|
||
The [app data directory](../file-structure.md#appdata-directory) path has changed for only the MacOS | ||
platform. This is due to a [breaking change][net8] introduced in .NET 8. | ||
|
||
In Recyclarr v6 and earlier, the path to the app data directory is: | ||
|
||
```sh | ||
~/.config/recyclarr | ||
``` | ||
|
||
Starting in v7, the new path is located at: | ||
|
||
```sh | ||
~/Library/Application Support/recyclarr | ||
``` | ||
|
||
There is a required [migration step][mig] that will inform you if the data directory should be | ||
moved. Use the [`recyclarr migrate`][cmd] command to have Recyclarr attempt to move the directory | ||
for you. | ||
|
||
[net8]: https://learn.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/8.0/getfolderpath-unix | ||
[mig]: ../behavior/migration-system.md | ||
[cmd]: ../cli/migrate.md |