Skip to content

Commit 5a3a486

Browse files
committed
Rx Version 3.31
1 parent bcafc24 commit 5a3a486

15 files changed

Lines changed: 36 additions & 25 deletions

File tree

.github/workflows/unix-test.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
strategy:
1414
matrix:
1515
target:
16-
- name: ubuntu20
17-
runs-on: 'ubuntu-20.04'
18-
shell: bash -e
19-
rid: linux-x64
2016
- name: ubuntu22
2117
runs-on: 'ubuntu-22.04'
2218
shell: bash -e
2319
rid: linux-x64
20+
- name: ubuntu24
21+
runs-on: 'ubuntu-24.04'
22+
shell: bash -e
23+
rid: linux-x64
2424
- name: alpine
2525
runs-on: 'ubuntu-latest'
2626
shell: alpine.sh --root
@@ -72,12 +72,19 @@ jobs:
7272
./dotnet-install.sh --channel 5.0 --install-dir ~/.dotnet
7373
./dotnet-install.sh --channel 6.0 --install-dir ~/.dotnet
7474
./dotnet-install.sh --channel 7.0 --install-dir ~/.dotnet
75-
./dotnet-install.sh --channel 8.0 --install-dir ~/.dotnet
76-
./dotnet-install.sh --channel 9.0 --install-dir ~/.dotnet
75+
if [["${{ matrix.target.name }}" != "osx"]]; then
76+
./dotnet-install.sh --channel 8.0 --install-dir ~/.dotnet
77+
./dotnet-install.sh --channel 9.0 --install-dir ~/.dotnet
78+
fi
7779
echo "DOTNET_ROOT=~/.dotnet" >> $GITHUB_ENV
7880
echo "$DOTNET_ROOT" >> $GITHUB_PATH
7981
echo "$DOTNET_ROOT/tools" >> $GITHUB_PATH
8082
shell: shell.sh {0}
83+
- name: Install OpenSSL 1.1 for Ubuntu24 and below net 5
84+
if: matrix.target.name == 'ubuntu24'
85+
run: |
86+
wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.24_amd64.deb
87+
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.24_amd64.deb
8188
- name: GrpcTool Fix on Alpine
8289
if: startsWith(matrix.target.name,'alpine')
8390
run: |

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
8+
## [0.4.11.3310 Embedded] - 2025-04-18
9+
### Added
10+
- Updated Reindexer Embedded to 3.31
11+
712
## [0.4.10.3300 Embedded] - 2024-12-02
813
### Added
914
- Updated Reindexer Embedded to 3.30

src/ReindexerNet.Core/Internal/Bindings.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ namespace ReindexerNet.Internal;
77
internal static class Bindings
88
{
99
public const int CInt32Max = int.MaxValue;
10-
public const string ReindexerVersion = "v3.20.0";
11-
10+
public const string ReindexerVersion = "v3.20.0";//Api version that supports. increase with grpc and openapi version
1211

1312
internal enum LogLevel
1413
{

src/ReindexerNet.Core/ReindexerJsonSerializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public override double Read(ref Utf8JsonReader reader, Type typeToConvert, JsonS
4343

4444
public override void Write(Utf8JsonWriter writer, double value, JsonSerializerOptions options)
4545
{
46-
Span<byte> buffer = stackalloc byte[32];
46+
Span<byte> buffer = stackalloc byte[30];
4747
var format = value % 1 == 0 ? f : g;
4848
if (Utf8Formatter.TryFormat(value, buffer, out var written, format))
4949
writer.WriteRawValue(buffer[..written]);

src/ReindexerNet.Embedded.NativeAssets.AlpineLinux-x64/ReindexerNet.Embedded.NativeAssets.AlpineLinux-x64.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<Title>ReindexerNet.Embedded</Title>
88
<Description>Reindexer Embedded library to embed and run in .net projects.</Description>
99
<PackageTags>reindexer embedded document-db in-memory</PackageTags>
10-
<Version>0.4.10.3300</Version>
11-
<AssemblyVersion>0.4.10</AssemblyVersion>
12-
<FileVersion>0.4.10</FileVersion>
10+
<Version>0.4.11.3310</Version>
11+
<AssemblyVersion>0.4.11</AssemblyVersion>
12+
<FileVersion>0.4.11</FileVersion>
1313
</PropertyGroup>
1414

1515
<ItemGroup>

src/ReindexerNet.Embedded.NativeAssets.Linux-x64/ReindexerNet.Embedded.NativeAssets.Linux-x64.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<Title>ReindexerNet.Embedded</Title>
88
<Description>Reindexer Embedded library to embed and run in .net projects.</Description>
99
<PackageTags>reindexer embedded document-db in-memory</PackageTags>
10-
<Version>0.4.10.3300</Version>
11-
<AssemblyVersion>0.4.10</AssemblyVersion>
12-
<FileVersion>0.4.10</FileVersion>
10+
<Version>0.4.11.3310</Version>
11+
<AssemblyVersion>0.4.11</AssemblyVersion>
12+
<FileVersion>0.4.11</FileVersion>
1313
</PropertyGroup>
1414

1515
<ItemGroup>

0 commit comments

Comments
 (0)