Skip to content

Commit

Permalink
v0.4.0: Dsl Query Builder, query interface for grpc and embedded, com…
Browse files Browse the repository at this point in the history
…pleted CJsonWriter
  • Loading branch information
oruchreis committed Dec 5, 2023
1 parent 60d046c commit 15eb9a1
Show file tree
Hide file tree
Showing 39 changed files with 4,116 additions and 1,194 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.0] - 2023-12-07
### Added
- Dsl Query Builder
- Query Interface for both grpc and embedded clients.
- Completed cjson serializer(CJsonWriter)

## [0.3.10] - 2023-11-30
### Added
- Updated Reindexer Embedded to 3.20
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ If you have any questions about Reindexer, please use [main page](https://github
<ItemGroup>
<PackageReference
Include="ReindexerNet.Embedded.Native.AlpineLinux-x64" Version="0.3.10.3200"
Condition="$([MSBuild]::IsOSPlatform('linux')) and ($(RuntimeIdentifier.StartsWith('linux-musl')) or $(RuntimeIdentifier.StartsWith('alpine')))" />
Condition="$([MSBuild]::IsOSPlatform('Linux')) and ($(RuntimeIdentifier.StartsWith('linux-musl')) or $(RuntimeIdentifier.StartsWith('alpine')))" />
<PackageReference
Include="ReindexerNet.Embedded.Native.Linux-x64" Version="0.3.10.3200"
Condition="$([MSBuild]::IsOSPlatform('linux')) and !($(RuntimeIdentifier.StartsWith('linux-musl')) or $(RuntimeIdentifier.StartsWith('alpine')))" />
Condition="$([MSBuild]::IsOSPlatform('Linux')) and !($(RuntimeIdentifier.StartsWith('linux-musl')) or $(RuntimeIdentifier.StartsWith('alpine')))" />
<PackageReference
Include="ReindexerNet.Embedded.Native.Osx-x64" Version="0.3.10.3200"
Condition="$([MSBuild]::IsOSPlatform('osx'))" />
Condition="$([MSBuild]::IsOSPlatform('OSX'))" />
<PackageReference
Include="ReindexerNet.Embedded.Native.Win-x64" Version="0.3.10.3200"
Condition="$([MSBuild]::IsOSPlatform('windows')) and $(PlatformTarget) == 'x64'" />
Condition="$([MSBuild]::IsOSPlatform('Windows'))" />
<PackageReference
Include="ReindexerNet.Embedded.Native.Win-x86" Version="0.3.10.3200"
Condition="$([MSBuild]::IsOSPlatform('windows')) and $(PlatformTarget) != 'x64'" />
Condition="$([MSBuild]::IsOSPlatform('Windows'))" />
</ItemGroup>
```

Expand Down Expand Up @@ -292,11 +292,11 @@ Intel Core i7-8700K CPU 3.70GHz (Coffee Lake), 1 CPU, 12 logical and 6 physical
- [x] RestApi models [![Core Nuget](https://img.shields.io/nuget/v/ReindexerNet.Core?label=Core&color=1182c2&logo=nuget)](https://www.nuget.org/packages/ReindexerNet.Core)
- [x] Embedded mode binding (Builtin) [![Embedded Nuget](https://img.shields.io/nuget/v/ReindexerNet.Embedded?label=Embedded&color=1182c2&logo=nuget)](https://www.nuget.org/packages/ReindexerNet.Embedded)
- [x] Embedded Server mode binding (Builtin-server) [![Embedded Nuget](https://img.shields.io/nuget/v/ReindexerNet.Embedded?label=Embedded&color=1182c2&logo=nuget)](https://www.nuget.org/packages/ReindexerNet.Embedded)
- [x] Embedded bindings for win-x64, linux-x64, osx-x64 and win-x86
- [x] Embedded bindings for win-x64, linux-x64, linux-musl-x64, osx-x64 and win-x86
- [x] GRPC connector for remote servers (Standalone server/Grpc) [![Remote.Grpc Nuget](https://img.shields.io/nuget/v/ReindexerNet.Remote.Grpc?label=Remote.Grpc&color=1182c2&logo=nuget)](https://www.nuget.org/packages/ReindexerNet.Remote.Grpc)
- [ ] Query Interface
- [ ] CJson Serializer
- [ ] Dsl Query Builder
- [x] Query Interface
- [x] CJson Serializer
- [x] Dsl Query Builder
- [ ] OpenApi/Json connector for remote servers
- [ ] CProto connector for remote servers
- [ ] Documentation
Loading

0 comments on commit 15eb9a1

Please sign in to comment.