diff --git a/.github/migrations/5.0-to-5.1.md b/.github/migrations/5.0-to-5.1.md deleted file mode 100644 index e41740c9e..000000000 --- a/.github/migrations/5.0-to-5.1.md +++ /dev/null @@ -1,17 +0,0 @@ -# ASF V5.0 -> V5.1 - -## Plugins - -### `SelectElementNodes(...)`, `SelectNodes(...)` - -Previously returned `List`, now returns `IEnumerable` - -https://github.com/JustArchiNET/ArchiSteamFarm/commit/65dc5def01b4208dd019685c8724d88f82d2902f - -#### Proper solution - -Use `IEnumerable` where you've previously used `List`. If you're just enumerating over results, you don't need a full collection, we didn't need it anywhere in ASF code when doing this change. - -#### Alternative solution - -Just call `.ToList()` on the result yourself.