-
Notifications
You must be signed in to change notification settings - Fork 15
fix!: Remove deprecated methods and constructors. Throw error if using local eval without server-side key #147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
da05059
Throw exception when trying to instantiate client in local eval witho…
matthewelwell fe0a558
Fix test muddle
matthewelwell 1efd99b
Update fixture api key
matthewelwell 5e8df20
Remove deprecated methods and constructors
rolodato e8aca10
8.0.0
rolodato 70af5ff
Merge branch 'fix!/exception-on-startup-for-server-side-key' into cho…
rolodato 604696a
Adapt tests to 8.0.0
rolodato 4686aa9
Merge branch 'main' into chore/8.0.0
rolodato File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
70 changes: 35 additions & 35 deletions
70
Flagsmith.FlagsmithClient/Flagsmith.FlagsmithClient.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,42 +1,42 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFramework>netstandard2.0</TargetFramework> | ||
| <LangVersion>8</LangVersion> | ||
| <DefaultItemExcludes>$(DefaultItemExcludes);example/**;</DefaultItemExcludes> | ||
| <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
| <PackageId>Flagsmith</PackageId> | ||
| <Title>Flagsmith</Title> | ||
| <Version>7.1.0</Version> | ||
| <Authors>flagsmith</Authors> | ||
| <Company>Flagsmith</Company> | ||
| <PackageDescription>Client SDK for Flagsmith. Ship features with confidence using feature flags and remote config. Host yourself or use our hosted version at https://flagsmith.com/</PackageDescription> | ||
| <Copyright>Copyright © 2023 Bullet Train Ltd</Copyright> | ||
| <PackageProjectUrl>https://flagsmith.com/</PackageProjectUrl> | ||
| <PackageIcon>icon.png</PackageIcon> | ||
| <PackageReleaseNotes>Singleton HTTP client</PackageReleaseNotes> | ||
| <PackageTags>feature flags remote config toggles</PackageTags> | ||
| <RepositoryUrl>https://github.com/Flagsmith/flagsmith-dotnet-client</RepositoryUrl> | ||
| <NeutralLanguage>en-GB</NeutralLanguage> | ||
| <PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
| </PropertyGroup> | ||
| <PropertyGroup> | ||
| <TargetFramework>netstandard2.0</TargetFramework> | ||
| <LangVersion>8</LangVersion> | ||
| <DefaultItemExcludes>$(DefaultItemExcludes);example/**;</DefaultItemExcludes> | ||
| <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
| <PackageId>Flagsmith</PackageId> | ||
| <Title>Flagsmith</Title> | ||
| <Version>8.0.0</Version> | ||
| <Authors>flagsmith</Authors> | ||
| <Company>Flagsmith</Company> | ||
| <PackageDescription>Client SDK for Flagsmith. Ship features with confidence using feature flags and remote config. Host yourself or use our hosted version at https://flagsmith.com/</PackageDescription> | ||
| <Copyright>Copyright © 2023 Bullet Train Ltd</Copyright> | ||
| <PackageProjectUrl>https://flagsmith.com/</PackageProjectUrl> | ||
| <PackageIcon>icon.png</PackageIcon> | ||
| <PackageReleaseNotes>Singleton HTTP client</PackageReleaseNotes> | ||
| <PackageTags>feature flags remote config toggles</PackageTags> | ||
| <RepositoryUrl>https://github.com/Flagsmith/flagsmith-dotnet-client</RepositoryUrl> | ||
| <NeutralLanguage>en-GB</NeutralLanguage> | ||
| <PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" /> | ||
| <PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
| <PackageReference Include="Polly" Version="7.2.3" /> | ||
| <PackageReference Include="Teronis.MSBuild.Packaging.ProjectBuildInPackage" Version="1.0.0"> | ||
| <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
| <PrivateAssets>all</PrivateAssets> | ||
| </PackageReference> | ||
| <ItemGroup> | ||
| <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0"/> | ||
| <PackageReference Include="Newtonsoft.Json" Version="13.0.1"/> | ||
| <PackageReference Include="Polly" Version="7.2.3"/> | ||
| <PackageReference Include="Teronis.MSBuild.Packaging.ProjectBuildInPackage" Version="1.0.0"> | ||
| <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
| <PrivateAssets>all</PrivateAssets> | ||
| </PackageReference> | ||
|
|
||
| <!-- currently we duplicate the semver dependency here from Engine project --> | ||
| <!-- TODO: build the Engine at build time and reference it using a PackageReference --> | ||
| <PackageReference Include="semver" Version="2.3.0" /> | ||
| <!-- currently we duplicate the semver dependency here from Engine project --> | ||
| <!-- TODO: build the Engine at build time and reference it using a PackageReference --> | ||
| <PackageReference Include="semver" Version="2.3.0"/> | ||
|
|
||
| <ProjectReference Include="..\Flagsmith.Engine\Flagsmith.Engine.csproj" PrivateAssets="all" /> | ||
| <None Include="LICENSE" Pack="true" PackagePath="" /> | ||
| <None Include="icon.png" Pack="true" PackagePath="\" /> | ||
| </ItemGroup> | ||
| <ProjectReference Include="..\Flagsmith.Engine\Flagsmith.Engine.csproj" PrivateAssets="all"/> | ||
| <None Include="LICENSE" Pack="true" PackagePath=""/> | ||
| <None Include="icon.png" Pack="true" PackagePath="\"/> | ||
| </ItemGroup> | ||
|
|
||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.