Skip to content

Commit

Permalink
Initial commit (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
andriizhegurov-okta authored Oct 20, 2021
1 parent 3c4da55 commit 789b0d6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog
Running changelog of releases since `3.1.1`


## v5.2.1

### Update

- Remove FlexibleConfiguration dependency and use .NET Configuration Providers instead.


## v5.2.0

### Features
Expand Down
5 changes: 3 additions & 2 deletions src/Okta.Sdk/Okta.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
<Version>5.2.0</Version>
<Version>5.2.1</Version>
<LangVersion>7.3</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FlexibleConfiguration" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Okta.Sdk.Abstractions" Version="4.0.2" />
<PackageReference Include="System.Diagnostics.TraceSource" Version="4.3.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.11.1" />
<PackageReference Include="System.Interactive.Async" Version="5.0.0" />
Expand Down
5 changes: 4 additions & 1 deletion src/Okta.Sdk/OktaClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using FlexibleConfiguration;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
using Okta.Sdk.Abstractions.Configuration.Providers.EnvironmentVariables;
using Okta.Sdk.Abstractions.Configuration.Providers.Object;
using Okta.Sdk.Abstractions.Configuration.Providers.Yaml;
using Okta.Sdk.Configuration;
using Okta.Sdk.Internal;

Expand Down

0 comments on commit 789b0d6

Please sign in to comment.