Skip to content

Tags: microsoft/garnet

Tags

v1.0.46

Toggle v1.0.46's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update version to 1.0.46 (#838)

* Update Version.props

* Update Version.props

v1.0.45

Toggle v1.0.45's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Limit Client Connections (#828)

* expose connection limit option

* implement connection limit at handle new connection

* addressing comments

* fix unlimited connection limit

* release v1.0.45

v1.0.44

Toggle v1.0.44's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix dependencies in nuget (#825)

v1.0.43

Toggle v1.0.43's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
ProjectReference fix in Garnet.host (for dotnet pack) + version bump …

…to 1.0.43 (#823)

* Reference fix in Garnet.host + version bump

* fix

v1.0.42

Toggle v1.0.42's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Changes to Release pipeline to include GarnetServer nuget and other c…

…hanges to the process (#809)

* First test run for GarnetServer in release pipeline

* Disabled Zip files step

* Disable the task copying zipped files

* Debug message cleaned up and everything enabled EXCEPT for the final Garnet Release step and actual Push to Nuget.org

* Added -p:PackageVersion=$(name) to release yml and removed     <Version>1.0.38</Version>  from GarnetServer.csproj

* Trying nuget pack on Garnet Library

* Trying PACKAGE_VERSION variable

* Adding extracting version number from version.json

* Trying to use Build.BuildNumber instead of pulling from version.json

* Moved version.json to root (adjusted extract_version.ps1).

Have debug codestill in too.

* Updated to use Directory.Build.props

* Cleaned up debug messages and have all version implemented. Still have Push to Nuget and Push to GH Release disabled. Also Garnet Library pack uses .nuspec instead of dotnet pack

* Fixed GarnetServer to use GetVersion() to set the version based on the prefix in Directory.Build.props.

* Fixed bug in GetVersion

* Setting version variable which also set Build Name.

* Move setting build number to first step

* Fixed bug with setting version

* Fixed bug as the set version had to be after check out.

* Trying to set (build.updatebuildnumber) to version to see if it works in ADO pipeline output

* Trying to build without setting variable called "version" and instead seeing if it works when the BuildNumber is updated

* Trying Build.BuildNumber instead of the $version env var

* Packing Microsoft.Garnet using DotNet Pack and also moved the shared Nuget meta data to Directory.Builds.props.

* Remove Garnet.nuspec as it is not needed any more.

* Removed Garnet.nuspec from sln

* Add the dotnet pack line to release yml for the Garnet Library

* Fixed issue in nuget pack Garnet Library

* Left behind a hardcode path

* Added --no-build --no-restore to the dotnet pack so doesn't rebuild

* Removed Nuget install / authenticate and also trying to get README.md into library nuget package

* Fixed README.md part of the nuget package

* Trying to fix Readme package for Nuget

* Debug code left in ... removed it

* Works locally but not when ran in ADO. Trying to set WorkingDirectory to see if that helps.

* Added SymbolPackageFormat=snupkg  for the nuget package symbols

* Missing Title tag in the Directory.Build.props

* Set the version to 1.0.40 and enabled the GitHub Release and Nuget Push tasks.

* Changing case of readme.md to README.md

* All the semi minor changes (spacing etc) from the PR comments

* Added Version.props as the single place to update version instead of Directory.Build.props.  Push to GH Release and Push to Nuget ARE DISABLED for this check in to be able to test first

* Trying to get .pdb out of nuget packages other than the symbols package

* Another try at not having .pdb files in the nuget package

* Tyring include symbols in the csproj and the exclude pdb in Directory.Build.props

* some changes

* update

* Fixed GarnetServer to include the proper files in the Nuget package. Push to Nuget and Push to Github release are NOT enabled until we test through in actual pipeline

* Set library to NOT have pdb in nupkg and have server set up to have pdbs in nupkg since it is a dotnet tool

* Updated version to 41 and got the release pipeline all ready to merge where it WILL PUSH TO NUGET.ORG and create a GH Release.  This release has no pdb files in the nupkg package and only Garnet.Host.pdb in the .snupkg file.

* Changed from pdbs in .snupkg to embedding debug symbols into DLL.

* One final test before setting it to be merged

* Version bumped to 42.  Create Git Hub Release is now ENABLED and the Push to Nuget.org is now ENABLED.

* Moved IncludeSymbols and IncludeSource to Directory.Build.Props and set EmbedUntrackedSources to truefor Garnet.host

* Put IncludeSymbols, IncludeSourceand DebutType into same PropertyGroup since they are closerly related

---------

Co-authored-by: Badrish Chandramouli <[email protected]>

v1.0.41

Toggle v1.0.41's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
AOF Replay using a Background Task at the Replica (#783)

* remove unused code

* nit

* cleanup replication tests

* expose replica max lag parameter

* add guarded initialization API for TsavoriteLog to avoid disrupting iterator consumer operations when skipping addresses at replica

* background replay consume implementation

* rename replay max lag parameter and added stats info

* update aof stream checks

* fix LRANGE bug

* ensure replicaof resets replay iterator

* add async replay tests

* remap ReplicationOffsetMaxLag parameter to make infinite lag default

* streamline spinwait for initialization using ProtectAndDrain

* add check to detect AOF divergence at the replica

* update unit tests for ClusterReplayAsync

* delete stale comment

* pageSizeBits instance variable for use with process AOF stream

* update sanity check

* add comment for sanity check

* release new version

v1.0.40

Toggle v1.0.40's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
release new version (#819)

v1.0.39

Toggle v1.0.39's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Align Replica Checkpoint Correctly on Attach (#571)

* skip sending primary's checkpoint only if history and version match with that of the remote checkpoint

* reset system state and verion on store.Reset

* recover in-memory checkpoint store only when recover flag is set

* add more info in replica recovery log message

* separate checkpoint entry metadata

* wip

* add test to validate bug fix

* log message tags

* update nunit legacy methods

* relase-1.0.39

v1.0.38

Toggle v1.0.38's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix docker build on windows, update version (#792)

v1.0.37

Toggle v1.0.37's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix large sized pubsub message transfer (#791)

* Fix large sized pubsub message transfer

* update timeout

* update version for release

* update comments