Skip to content

Commit

Permalink
Add initial v7 upgrade guide
Browse files Browse the repository at this point in the history
  • Loading branch information
rcdailey committed Mar 21, 2024
1 parent 79435bd commit 2d97fd2
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions docs/upgrade-guide/v7.0.md
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

0 comments on commit 2d97fd2

Please sign in to comment.