Releases: stormpath/stormpath-sdk-dotnet
Stormpath.SDK v0.5.1
Fixed Issues
- Incorrect version of RestSharp specified in project vs. package file (#138)
Stormpath.SDK v0.5
Stormpath.SDK v0.4.2
Stormpath.SDK v0.4.1
This release is a small bugfix and documentation release.
New Features
- Added
GetAccessToken(href)
andGetRefreshToken(href)
convenience methods. (#107) - Lots of API documentation fixes and updates.
Fixed Issues
- Fixed a broken overload of
CreateOrganization
(#110)
Stormpath.SDK v0.4
New Features
- ID Site -> OAuth Access Token exchange flow. (#40)
- Organization resource support. (#43)
- Token management. (#62)
- Local (#94) and remote (#69) validation of JSON Web Tokens.
- Added convenience methods for retrieving resources. (#86)
- Added factories for easier plugin configuration. (#100)
Fixed Issues
Stormpath.SDK v0.3.1
This is a documentation release: fixing and adding a lot of inline API documentation. No changes in functionality.
There are a few small breaking changes due to internal code cleanup.
Breaking Changes
- Removed
ICustomData.Keys
andICustomData.Values
properties, since it's already anIEnumerable
. - Removed
HttpExtensions
class (it was unused).
Stormpath.SDK v0.3.0
Upgrading
Run update-package Stormpath.SDK
from the Package Manager Console, or use the GUI to update the Stormpath.SDK package. The dependent packages will automatically be updated.
In this release, we've removed a dependency on the Remotion.Linq library. If you're upgrading, the package won't be uninstalled automatically. Use the NuGet Package Manager (or the console) to uninstall the Remotion.Linq package. 👍
If you experience issues after upgrading to this version, log an issue and we'll take a look!
Breaking Changes
- Renamed
UseHttpClient
andUseJsonSerializer
methods onIClientBuilder
to match their neighbors.
New Features
- Support for ID Site. (#25)
- AccountStore and AccountStoreMapping methods. (#44)
- Ability to specify an AccountStore href or Organization nameKey during login/password reset. (#45)
- Client-side caching layer and in-memory cache implementation. (#26)
- Link expansion support. (#57)
- Reference implementation of a Redis-backed cache provider. (#56)
Fixed Issues
Stormpath.SDK v0.2.0
We've added a lot under the hood in this release!
New features
- Custom data. Arbitrary key/value pairs can be saved to any resource that supports custom data. (#29)
- Full support for Groups. (#27)
- Social login. Everything you need to use Stormpath to simplify your social login flows from Google, Facebook, Github, and LinkedIn. (#24)
- Support for verifying a new account's email address. (#19)
Fixed issues
- Resolved issue with DLL path resolution. (#36, #37)
- Added and clarified behavior around multiple local instances of a single server resource. (#34, #35, #42)
Upgrading
Run update-package Stormpath.SDK
from the Package Manager Console, or use the GUI to update the Stormpath.SDK package. The dependent packages will automatically be updated.
In most cases, existing code should not be affected. If you experience issues after upgrading to this version, log an issue and we'll take a look.
Stormpath.SDK v0.1.0
Our first release! This version supports:
- Basic and digest (Stormpath SAuthc1) authentication against the Stormpath API
- LINQ-to-Stormpath - use familiar LINQ expressions to query and access resource
- Dual asynchronous/synchronous model for best practices and compatibility
- CRUD on Application, Account resources
- Account authentication and password reset flows
- Preliminary (read) support for Directories and AccountStores
- A default JSON serialization plugin based on JSON.NET
- A default HTTP client plugin based on RestSharp
The SDK builds in Visual Studio 2015 and on Mono 4.0+. It is also available on nuget.
Stormpath.SDK v0.1.0-rc
Initial preview/release candidate.