Skip to content
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

Target .NET Standard 2.0 #89

Merged
merged 42 commits into from
Mar 15, 2023
Merged

Target .NET Standard 2.0 #89

merged 42 commits into from
Mar 15, 2023

Conversation

shacharPash
Copy link
Contributor

No description provided.

@shacharPash shacharPash requested a review from slorello89 March 9, 2023 12:38
@codecov-commenter
Copy link

codecov-commenter commented Mar 9, 2023

Codecov Report

Patch coverage: 73.68% and project coverage change: -0.08 ⚠️

Comparison is base (df68194) 93.36% compared to head (1b20013) 93.29%.

📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more

Additional details and impacted files
@@            Coverage Diff             @@
##           master      #89      +/-   ##
==========================================
- Coverage   93.36%   93.29%   -0.08%     
==========================================
  Files          77       77              
  Lines        4568     4576       +8     
  Branches      422      423       +1     
==========================================
+ Hits         4265     4269       +4     
- Misses        181      185       +4     
  Partials      122      122              
Impacted Files Coverage Δ
src/NRedisStack/Graph/Header.cs 75.00% <16.66%> (-10.72%) ⬇️
src/NRedisStack/Json/JsonCommands.cs 87.40% <100.00%> (ø)
src/NRedisStack/Json/JsonCommandsAsync.cs 87.40% <100.00%> (ø)
src/NRedisStack/ResponseParser.cs 95.43% <100.00%> (+0.02%) ⬆️
src/NRedisStack/Tdigest/TdigestCommands.cs 100.00% <100.00%> (ø)

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@@ -82,8 +82,8 @@ public async Task<long> DelAsync(RedisKey key, string? path = null)
var res = await _db.ExecuteAsync(JsonCommandBuilder.Get<T>(key, path));
if (res.Type == ResultType.BulkString)
{
var arr = JsonSerializer.Deserialize<JsonArray>(res.ToString()!);
if (arr?.Count > 0)
var arr = JsonSerializer.Deserialize<JsonElement[]>(res.ToString()!);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason to move this to a JsonElement[] as opposed to a JsonArray?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After I added netstandard2.0 to TargetFrameworks, I got this error:
The type or namespace name 'JsonArray' could not be found (are you missing a using directive or an assembly reference?) [NRedisStack]csharp(CS0246)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's because you are using an older version of System.Text.Json - I think you SHOULD be able to switch it to 7.0.2 (current version) without breaking compatibility. The best way to validate that would be to make sure that

<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
points to some older versions of .NET Framework (e.g. 4.5.2)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do you mean to change the Version in this line: <PackageReference Include="System.Text.Json" Version="4.7.1" Condition="'$(TargetFramework)' == 'netstandard2.0'" />
to 7.0.2?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No - so in this case we want to also test against an additional framework (just to make sure that the library is going to be fully compatible with that framework) .NET 4.5.2 is the oldest supported framework in .NET Standard 2.0 - so you just add net452 to the semi-colon delaminated list of target frameworks. You will need to enable this to run on the windows-latest runner in your integration job since .NET Framework can't run on Ubuntu. And you'll need to adjust your dotnet test command to specify the frameworks with the -f option in each job. See docs here

@@ -207,8 +207,8 @@ public RedisResult Get(RedisKey key, string[] paths, RedisValue? indent = null,
var res = _db.Execute(JsonCommandBuilder.Get<T>(key, path));
if (res.Type == ResultType.BulkString)
{
var arr = JsonSerializer.Deserialize<JsonArray>(res.ToString()!);
if (arr?.Count > 0)
var arr = JsonSerializer.Deserialize<JsonElement[]>(res.ToString()!);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Type change?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above

@shacharPash shacharPash requested a review from slorello89 March 9, 2023 13:30
Copy link
Member

@slorello89 slorello89 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also want to make sure that you enable some .NET Framework testing in

<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
(should be fine just testing 4.5.2 - which technically isn't supported by msft anymore but we still have a fair number of users using it.)

@@ -82,8 +82,8 @@ public async Task<long> DelAsync(RedisKey key, string? path = null)
var res = await _db.ExecuteAsync(JsonCommandBuilder.Get<T>(key, path));
if (res.Type == ResultType.BulkString)
{
var arr = JsonSerializer.Deserialize<JsonArray>(res.ToString()!);
if (arr?.Count > 0)
var arr = JsonSerializer.Deserialize<JsonElement[]>(res.ToString()!);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's because you are using an older version of System.Text.Json - I think you SHOULD be able to switch it to 7.0.2 (current version) without breaking compatibility. The best way to validate that would be to make sure that

<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
points to some older versions of .NET Framework (e.g. 4.5.2)

run: |
sudo apt-get update
sudo apt-get install curl -y && sudo apt-get install gpg -y && apt-get install lsb-release -y && apt-get install libgomp1 -y
curl https://packages.redis.io/redis-stack/redis-stack-server-6.2.6-v6.jammy.x86_64.tar.gz -o redis-stack.tar.gz
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: ${{env.redis_stack_version}}

- name: Test
shell: cmd
run: |
START wsl ./redis-stack-server-6.2.6-v6/bin/redis-stack-server &
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same ${{env.redis_stack_version}}

@@ -1,9 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net481</TargetFrameworks>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Question for my own knowledge 481 because it's the latest in 4?

Copy link
Member

@slorello89 slorello89 Mar 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes - .NET Framework 4.8.1 is the latest (and likely final) framework version. It's also one of two framework versions that ship natively on the windows-latest image

Copy link
Member

@slorello89 slorello89 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

@shacharPash shacharPash merged commit cbdf537 into master Mar 15, 2023
@shacharPash shacharPash deleted the Target2.0 branch March 15, 2023 12:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants