7.0.0
What's Changed
PR #811:
- Convert all
intIDs tolong - Fix
ProjectCreate.NamespaceId's type, fromstringtolong - Remove some of the deprecated code
PR #814:
- Convert public fields to properties
- Make
Runner.Onlinea nullablebool(was non-nullable before) - Run
dotnet format
A Few Migration Tips for Client Code
- You may have to convert or cast
intIDs in your code tolong - In some cases, it may be more appropriate to use
ProjectIdorGroupIdinstead ProjectQueryScope.Visibleshould be replaced byProjectQueryScope.AllAccessLevel.Mastershould be replaced byAccessLevel.Maintainer- Constructing a
GroupIdfromGroupis no longer possible; construct it fromlongID orstringpath instead - Constructing a
ProjectIdfromProjectis no longer possible; construct it fromlongID orstringpath instead - Use of
Runner*.Activeshould be replaced by that ofRunner*.Paused(with any conditional logic reversed) - Use of
Snippet*.FileName,Snippet*.CodeandSnippet*.Contentshould be replaced by that ofSnippet*.Files
Full Changelog: 6.59.2...7.0.0