Releases: abjerner/Skybrud.Social.Instagram
v1.0.0-beta008
Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Skybrud.Social.Instagram --version 1.0.0-beta008
or the NuGet package manager:
Install-Package Skybrud.Social.Instagram -Version 1.0.0-beta008
Changelog
-
Updated the Skybrud.Essentials.Http dependency (see 831a44b)
With this release, the dependency is updated fromv1.1.0
tov1.1.4
. Changes include:- support for nullable reference types
- additional logic for parsing JSON via the Skybrud.Essentials dependency
-
Added support for nullable reference types (see d2d5df5)
The package now natively uses nullable reference types for improved quality and code analysis. -
Improved exception handling (see de316b6)
This release introduces some additional exception classes that can describe specific errors in greater detail. -
Added support for specifying the API version to be used (see 274a8fa)
For the implementation for the Instagram Graph API, the package doesn't specify an explicit version of the API to be used, but instead leaves it up to the API to determine the version based on the Facebook app used for accessing the API. With this release, it's now possible to specify an explicit version to be used. -
List based classes now implement
IReadOnlyList<T>
(see 0e533fc)
The package contains various classes that represent some kind of list. With this release, those classes now all implement theIReadOnlyList<T>
interface.
v1.0.0-beta007
Installation
Install the NuGet package - either via the .NET CLI:
dotnet add package Skybrud.Social.Instagram --version 1.0.0-beta007
or the NuGet package manager:
Install-Package Skybrud.Social.Instagram -Version 1.0.0-beta007
Changelog
This release mostly contains code cleanup, but also includes:
-
Dropped .NET Framework as target framework
The package now only contains a DLL for .NET Standard 1.3, but both .NET Framework and .NET are indirectly supported as they build on top of .NET Standard. -
Various properties have been from converted from
T[]
toIReadOnlyList<T>
Since returned data is not really meant to be modified, array properties have now been updated to useIReadOnlyList<T>
instead. -
Updated
Skybrud.Essentials.Http
dependency
With this release, theSkybrud.Essentials.Http
dependency has been updated to the most recent version.
Skybrud.Social.Instagram v1.0.0-beta006
Installation
Changelog
-
Added support for the Instagram Basic Display API 🎉
-
Removed support for the Instagram Platform API as it has been discontinued by Instagram.
-
Restructured the implementation for the Instagram Graph API.