From 272cd1ff29b7245483f41b6ff4feb44d22c47312 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Fri, 7 May 2021 00:08:26 +0200 Subject: [PATCH] Delete 5.0-to-5.1.md --- .github/migrations/5.0-to-5.1.md | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/migrations/5.0-to-5.1.md 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.