RavenDB.Embedded
7.1.4-rc-71020
Prefix Reserved
See the version list below for details.
dotnet add package RavenDB.Embedded --version 7.1.4-rc-71020
NuGet\Install-Package RavenDB.Embedded -Version 7.1.4-rc-71020
<PackageReference Include="RavenDB.Embedded" Version="7.1.4-rc-71020" />
<PackageVersion Include="RavenDB.Embedded" Version="7.1.4-rc-71020" />
<PackageReference Include="RavenDB.Embedded" />
paket add RavenDB.Embedded --version 7.1.4-rc-71020
#r "nuget: RavenDB.Embedded, 7.1.4-rc-71020"
#:package RavenDB.Embedded@7.1.4-rc-71020
#addin nuget:?package=RavenDB.Embedded&version=7.1.4-rc-71020&prerelease
#tool nuget:?package=RavenDB.Embedded&version=7.1.4-rc-71020&prerelease
RavenDB .NET Embedded Server
You're looking at RavenDB .NET Embedded Server NuGet release.
It lets you to spin-up RavenDB server locally in no-time using friendly API.
RavenDB is a NoSQL database that fuses extreme performance with ease-of-use, offering above the roof developer experience.
Learn more at https://ravendb.net or visit our GitHub repository.
Installation
Check the runtime prerequisites in our docs and get the latest stable version from NuGet.
Learning resources
- Embedded Server Guide - https://ravendb.net/articles/building-a-beer-vending-machine-program-with-ravendb-embedded-server 🛣️
- Documentation - https://ravendb.net/docs/article-page/server/embedded 🎒
- Code Samples - https://demo.ravendb.net/ 🧑💻
Community
- RavenDB's Discord - https://discord.gg/ravendb 🍻
- Articles & guides - https://ravendb.net/articles 📰
- YouTube - https://www.youtube.com/@ravendb_net 🍿
- Blog - https://ayende.com/blog/ 🧑💻
Getting started
Initialize
EmbeddedServer.Instance.StartServer();
using (var store = EmbeddedServer.Instance.GetDocumentStore("Embedded"))
{
using (var session = store.OpenSession())
{
// Your code here
}
}
Store documents
using (IDocumentSession session = store.OpenSession()) // Open a session for a default 'Database'
{
Category category = new Category
{
Name = "Database Category"
};
session.Store(category); // Assign an 'Id' and collection (Categories)
// and start tracking an entity
Product product = new Product
{
Name = "RavenDB Database",
Category = category.Id,
UnitsInStock = 10
};
session.Store(product); // Assign an 'Id' and collection (Products)
// and start tracking an entity
session.SaveChanges(); // Send to the Server
// one request processed in one transaction
}
Query
using (IDocumentSession session = store.OpenSession()) // Open a session for a default 'Database'
{
List<string> productNames = session
.Query<Product>() // Query for Products
.Where(x => x.UnitsInStock > 5) // Filter
.Skip(0).Take(10) // Page
.Select(x => x.Name) // Project
.ToList(); // Materialize query
}
Contributing
- Submit an issue - https://github.com/ravendb/ravendb/issues
- GitHub Discussions - https://github.com/ravendb/ravendb/discussions
- Contributing rules - https://github.com/ravendb/ravendb/blob/v7.1/CONTRIBUTING.md
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.1
- RavenDB.Client (>= 7.1.4-rc-71020)
-
.NETStandard 2.0
- RavenDB.Client (>= 7.1.4-rc-71020)
- System.Runtime.Loader (>= 4.3.0)
NuGet packages (20)
Showing the top 5 NuGet packages that depend on RavenDB.Embedded:
| Package | Downloads |
|---|---|
|
RavenDB.TestDriver
Package Description |
|
|
Particular.PlatformSample.ServiceControl
Particular ServiceControl binaries for use by Particular.PlatformSample. Not intended for use outside of Particular.PlatformSample. |
|
|
FubuMVC.RavenDb
Drop in persistence with RavenDb for FubuMVC / StructureMap applications |
|
|
BuildingBlocks.Store.RavenDB.TestHelpers.SpecFlow
Helpers for integration tests with RavenDB and SpecFlow |
|
|
BrickPile
BrickPile is a lightweight CMS built on RavenDB and ASP.NET MVC 5 |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 7.1.4-rc-71021 | 0 | 10/28/2025 |
| 7.1.4-rc-71020 | 101 | 10/27/2025 |
| 7.1.3 | 3,690 | 10/2/2025 |
| 7.1.3-rc-71017 | 214 | 10/2/2025 |
| 7.1.3-rc-71014 | 380 | 9/17/2025 |
| 7.1.2 | 7,166 | 8/19/2025 |
| 7.1.2-rc-71011 | 230 | 8/11/2025 |
| 7.1.2-rc-71008 | 314 | 8/6/2025 |
| 7.1.1 | 4,163 | 7/22/2025 |
| 7.1.1-rc-71006 | 236 | 7/8/2025 |
| 7.1.0 | 5,641 | 7/1/2025 |
| 7.1.0-rc-71004 | 229 | 6/25/2025 |
| 7.1.0-rc-71003 | 247 | 6/18/2025 |
| 7.1.0-rc-71000 | 262 | 5/29/2025 |
| 7.0.7 | 218 | 10/2/2025 |
| 7.0.6 | 238 | 8/19/2025 |
| 7.0.4 | 842 | 6/25/2025 |
| 7.0.3 | 1,330 | 6/10/2025 |
| 7.0.2 | 11,646 | 4/29/2025 |
| 7.0.1 | 14,198 | 3/27/2025 |
| 7.0.0 | 33,082 | 2/4/2025 |
| 6.2.10 | 1,011 | 10/2/2025 |
| 6.2.9 | 2,418 | 8/19/2025 |
| 6.2.8 | 1,400 | 7/22/2025 |
| 6.2.7 | 371 | 6/25/2025 |
| 6.2.6 | 16,140 | 6/10/2025 |
| 6.2.5 | 9,394 | 4/29/2025 |
| 6.2.4 | 11,269 | 3/18/2025 |
| 6.2.3 | 57,600 | 1/21/2025 |
| 6.2.2 | 56,693 | 12/11/2024 |
| 6.2.1 | 45,089 | 10/30/2024 |
| 6.2.0 | 43,588 | 9/17/2024 |
| 6.0.110 | 645 | 3/18/2025 |
| 6.0.109 | 3,323 | 1/21/2025 |
| 6.0.108 | 591 | 12/11/2024 |
| 6.0.107 | 2,973 | 10/30/2024 |
| 6.0.106 | 12,812 | 9/17/2024 |
| 6.0.105 | 50,603 | 7/23/2024 |
| 6.0.104 | 21,692 | 6/17/2024 |
| 6.0.103 | 19,940 | 5/16/2024 |
| 6.0.102 | 24,537 | 4/29/2024 |
| 6.0.101 | 71,973 | 3/19/2024 |
| 6.0.100 | 79,959 | 2/12/2024 |
| 6.0.4 | 10,080 | 1/19/2024 |
| 6.0.3 | 78,218 | 1/16/2024 |
| 6.0.2 | 9,680 | 12/27/2023 |
| 6.0.1 | 16,950 | 11/14/2023 |
| 6.0.0 | 21,850 | 10/2/2023 |
| 5.4.212 | 448 | 10/2/2025 |
| 5.4.211 | 2,680 | 8/19/2025 |
| 5.4.210 | 993 | 7/22/2025 |
| 5.4.209 | 1,647 | 6/10/2025 |
| 5.4.208 | 3,087 | 4/29/2025 |
| 5.4.207 | 4,188 | 3/18/2025 |
| 5.4.206 | 23,031 | 1/21/2025 |
| 5.4.205 | 9,971 | 12/11/2024 |
| 5.4.204 | 19,152 | 10/30/2024 |
| 5.4.203 | 20,704 | 10/2/2024 |
| 5.4.202 | 2,282 | 9/17/2024 |
| 5.4.201 | 48,832 | 7/23/2024 |
| 5.4.200 | 39,787 | 6/17/2024 |
| 5.4.119 | 5,599 | 5/16/2024 |
| 5.4.118 | 19,339 | 4/29/2024 |
| 5.4.117 | 28,427 | 3/19/2024 |
| 5.4.116 | 20,373 | 2/12/2024 |
| 5.4.115 | 10,723 | 1/18/2024 |
| 5.4.114 | 1,037 | 1/16/2024 |
| 5.4.113 | 17,876 | 12/27/2023 |
| 5.4.112 | 194,296 | 11/14/2023 |
| 5.4.111 | 23,623 | 10/3/2023 |
| 5.4.110 | 12,530 | 9/12/2023 |
| 5.4.109 | 40,200 | 8/1/2023 |
| 5.4.107 | 18,377 | 6/23/2023 |
| 5.4.106 | 2,866 | 6/22/2023 |
| 5.4.105 | 3,900 | 6/20/2023 |
| 5.4.104 | 76,813 | 5/12/2023 |
| 5.4.103 | 55,883 | 3/30/2023 |
| 5.4.102 | 8,908 | 3/27/2023 |
| 5.4.101 | 30,776 | 2/13/2023 |
| 5.4.100 | 47,815 | 1/9/2023 |
| 5.4.5 | 113,486 | 11/21/2022 |
| 5.4.4 | 36,742 | 10/12/2022 |
| 5.4.3 | 5,377 | 10/10/2022 |
| 5.4.2 | 38,215 | 9/1/2022 |
| 5.4.1 | 82,959 | 7/19/2022 |
| 5.4.0 | 20,329 | 7/18/2022 |
| 5.3.108 | 53,206 | 1/9/2023 |
| 5.3.107 | 8,848 | 11/21/2022 |
| 5.3.106 | 2,882 | 10/10/2022 |
| 5.3.105 | 4,534 | 9/1/2022 |
| 5.3.104 | 5,085 | 7/18/2022 |
| 5.3.103 | 56,411 | 6/7/2022 |
| 5.3.102 | 71,783 | 4/19/2022 |
| 5.3.101 | 32,680 | 3/15/2022 |
| 5.3.100 | 51,467 | 2/1/2022 |
| 5.3.2 | 15,327 | 1/7/2022 |
| 5.3.1 | 12,977 | 12/21/2021 |
| 5.3.0 | 7,901 | 11/29/2021 |
| 5.2.116 | 1,734 | 8/1/2023 |
| 5.2.115 | 1,641 | 6/23/2023 |
| 5.2.114 | 1,581 | 6/22/2023 |
| 5.2.113 | 1,683 | 6/20/2023 |
| 5.2.112 | 2,668 | 5/12/2023 |
| 5.2.111 | 2,857 | 3/30/2023 |
| 5.2.110 | 3,436 | 3/27/2023 |
| 5.2.109 | 2,724 | 2/13/2023 |
| 5.2.108 | 10,536 | 1/9/2023 |
| 5.2.107 | 2,389 | 11/21/2022 |
| 5.2.106 | 2,527 | 10/10/2022 |
| 5.2.105 | 2,620 | 9/1/2022 |
| 5.2.104 | 2,773 | 7/18/2022 |
| 5.2.103 | 4,160 | 6/7/2022 |
| 5.2.102 | 15,219 | 4/19/2022 |
| 5.2.101 | 22,526 | 3/15/2022 |
| 5.2.100 | 3,979 | 2/1/2022 |
| 5.2.6 | 3,080 | 1/7/2022 |
| 5.2.5 | 2,346 | 12/21/2021 |
| 5.2.4 | 17,418 | 11/15/2021 |
| 5.2.3 | 16,323 | 9/29/2021 |
| 5.2.2 | 23,053 | 8/16/2021 |
| 5.2.1 | 6,011 | 7/1/2021 |
| 5.2.0 | 6,898 | 6/21/2021 |
| 5.1.13 | 2,447 | 12/21/2021 |
| 5.1.12 | 2,496 | 11/15/2021 |
| 5.1.11 | 2,497 | 9/29/2021 |
| 5.1.10 | 2,575 | 8/16/2021 |
| 5.1.9 | 13,983 | 7/1/2021 |
| 5.1.8 | 7,063 | 5/26/2021 |
| 5.1.7 | 37,695 | 4/23/2021 |
| 5.1.6 | 4,707 | 4/13/2021 |
| 5.1.5 | 19,019 | 3/1/2021 |
| 5.1.4 | 16,772 | 2/1/2021 |
| 5.1.3 | 3,001 | 1/25/2021 |
| 5.1.2 | 12,217 | 12/11/2020 |
| 5.1.1 | 4,651 | 12/1/2020 |
| 5.1.0 | 4,324 | 11/18/2020 |
| 5.0.14 | 3,563 | 6/16/2021 |
| 5.0.13 | 2,682 | 5/24/2021 |
| 5.0.12 | 14,438 | 4/23/2021 |
| 5.0.11 | 6,146 | 4/13/2021 |
| 5.0.10 | 2,838 | 3/1/2021 |
| 5.0.9 | 2,875 | 2/1/2021 |
| 5.0.8 | 4,439 | 1/25/2021 |
| 5.0.7 | 5,707 | 12/11/2020 |
| 5.0.6 | 2,757 | 12/1/2020 |
| 5.0.5 | 21,761 | 11/16/2020 |
| 5.0.4 | 3,216 | 11/10/2020 |
| 5.0.3 | 9,599 | 9/28/2020 |
| 5.0.2 | 13,306 | 8/17/2020 |
| 5.0.1 | 4,157 | 8/5/2020 |
| 5.0.0 | 7,376 | 7/23/2020 |
| 4.2.124 | 1,555 | 6/19/2023 |
| 4.2.123 | 9,456 | 6/7/2022 |
| 4.2.122 | 4,161 | 4/19/2022 |
| 4.2.121 | 3,613 | 3/15/2022 |
| 4.2.120 | 5,498 | 2/1/2022 |
| 4.2.119 | 2,475 | 12/21/2021 |
| 4.2.118 | 3,890 | 11/15/2021 |
| 4.2.117 | 2,951 | 9/29/2021 |
| 4.2.116 | 2,990 | 8/16/2021 |
| 4.2.115 | 3,087 | 7/1/2021 |
| 4.2.114 | 5,266 | 5/24/2021 |
| 4.2.113 | 4,657 | 4/23/2021 |
| 4.2.112 | 2,764 | 4/13/2021 |
| 4.2.111 | 5,107 | 3/1/2021 |
| 4.2.110 | 4,620 | 2/1/2021 |
| 4.2.109 | 2,787 | 1/25/2021 |
| 4.2.108 | 5,868 | 11/16/2020 |
| 4.2.107 | 2,757 | 11/10/2020 |
| 4.2.106 | 8,462 | 9/28/2020 |
| 4.2.105 | 13,433 | 8/17/2020 |
| 4.2.104 | 5,866 | 7/22/2020 |
| 4.2.103 | 19,426 | 5/25/2020 |
| 4.2.102 | 8,565 | 4/15/2020 |
| 4.2.101 | 15,317 | 3/3/2020 |
| 4.2.100 | 2,904 | 3/2/2020 |
| 4.2.8 | 23,394 | 1/21/2020 |
| 4.2.6 | 11,121 | 12/9/2019 |
| 4.2.5 | 5,321 | 11/25/2019 |
| 4.2.5-patch-42026 | 2,081 | 11/13/2019 |
| 4.2.4 | 7,173 | 10/14/2019 |
| 4.2.4-patch-42020 | 2,083 | 9/27/2019 |
| 4.2.3 | 19,951 | 8/26/2019 |
| 4.2.2 | 18,217 | 7/15/2019 |
| 4.2.1 | 4,623 | 6/27/2019 |
| 4.2.0 | 6,548 | 5/21/2019 |
| 4.2.0-rc-42008 | 1,964 | 5/8/2019 |
| 4.2.0-rc-42007 | 1,901 | 4/25/2019 |
| 4.2.0-rc-42005 | 1,899 | 4/17/2019 |
| 4.2.0-rc-42003 | 1,905 | 4/12/2019 |
| 4.2.0-rc-42002 | 1,873 | 4/5/2019 |
| 4.2.0-rc-42001 | 1,905 | 3/22/2019 |
| 4.1.10 | 3,713 | 11/25/2019 |
| 4.1.9 | 2,784 | 10/14/2019 |
| 4.1.9-patch-41022 | 1,872 | 9/27/2019 |
| 4.1.8 | 5,766 | 8/26/2019 |
| 4.1.8-patch-41017 | 1,947 | 7/15/2019 |
| 4.1.7 | 2,866 | 6/27/2019 |
| 4.1.6 | 2,955 | 5/21/2019 |
| 4.1.5 | 19,809 | 4/15/2019 |
| 4.1.5-patch-41012 | 2,020 | 3/15/2019 |
| 4.1.4 | 13,885 | 2/13/2019 |
| 4.1.4-patch-41009 | 2,136 | 2/1/2019 |
| 4.1.4-patch-41008 | 3,601 | 1/7/2019 |
| 4.1.3 | 10,283 | 11/19/2018 |
| 4.1.3-patch-41006 | 2,628 | 11/5/2018 |
| 4.1.3-patch-41005 | 2,174 | 10/22/2018 |
| 4.1.2 | 8,720 | 10/15/2018 |
| 4.1.1 | 9,125 | 9/14/2018 |
| 4.1.0 | 6,274 | 8/31/2018 |
| 4.1.0-rc-41000 | 4,600 | 8/17/2018 |
| 3.5.10-patch-35323 | 253 | 8/8/2024 |
| 3.5.10-patch-35319 | 872 | 1/23/2023 |
| 3.5.10-patch-35312 | 917 | 4/12/2022 |
| 3.5.10-patch-35311 | 1,030 | 7/28/2021 |
| 3.5.10-patch-35310 | 957 | 7/15/2021 |
| 3.5.10-patch-35309 | 1,033 | 5/24/2021 |
| 3.5.10-patch-35308 | 1,107 | 5/16/2021 |
| 3.5.10-patch-35307 | 1,038 | 4/1/2021 |
| 3.5.10-patch-35305 | 1,151 | 1/13/2021 |
| 3.5.10-patch-35304 | 1,149 | 12/16/2020 |
| 3.5.10-patch-35303 | 1,142 | 12/3/2020 |
| 3.5.10-patch-35302 | 1,141 | 9/21/2020 |
| 3.5.10-patch-35301 | 1,159 | 8/27/2020 |
| 3.5.10-patch-35300 | 1,258 | 7/16/2020 |
| 3.5.10-patch-35296 | 1,198 | 6/19/2020 |
| 3.5.10-patch-35295 | 1,594 | 5/28/2020 |
| 3.5.10-patch-35294 | 1,251 | 5/6/2020 |
| 3.5.10-patch-35290 | 1,305 | 3/5/2020 |
| 3.5.10-patch-35289 | 3,157 | 11/7/2019 |
| 3.5.10-patch-35288 | 1,480 | 9/12/2019 |
| 3.5.10-patch-35286 | 1,404 | 8/13/2019 |
| 3.5.10-patch-35283 | 6,265 | 5/9/2019 |
| 3.5.10-patch-35282 | 1,626 | 4/23/2019 |
| 3.5.9 | 46,136 | 4/10/2019 |
| 3.5.9-patch-35280 | 1,497 | 3/19/2019 |
| 3.5.8 | 15,961 | 1/3/2019 |
| 3.5.8-patch-35278 | 1,576 | 12/10/2018 |
| 3.5.8-patch-35277 | 1,709 | 11/7/2018 |
| 3.5.8-patch-35276 | 1,640 | 11/2/2018 |
| 3.5.8-patch-35275 | 1,660 | 10/22/2018 |
| 3.5.7 | 25,598 | 9/6/2018 |
| 3.5.7-patch-35267 | 2,093 | 7/30/2018 |
| 3.5.7-patch-35266 | 2,365 | 5/31/2018 |
| 3.5.7-patch-35265 | 2,335 | 5/25/2018 |
| 3.5.7-patch-35264 | 2,292 | 5/25/2018 |
| 3.5.7-patch-35263 | 2,383 | 5/17/2018 |
| 3.5.6-patch-35261 | 2,480 | 4/15/2018 |
| 3.5.6-patch-35260 | 2,317 | 3/29/2018 |
| 3.5.6-patch-35259 | 6,777 | 3/27/2018 |
| 3.5.6-patch-35258 | 2,326 | 3/27/2018 |
| 3.5.6-patch-35257 | 2,392 | 3/7/2018 |
| 3.5.6-patch-35256 | 2,307 | 3/6/2018 |
| 3.5.6-patch-35253 | 2,276 | 2/28/2018 |
| 3.5.6-patch-35252 | 2,388 | 2/13/2018 |
| 3.5.6-patch-35251 | 2,374 | 2/7/2018 |
| 3.5.6-patch-35250 | 2,330 | 1/30/2018 |
| 3.5.6-patch-35249 | 2,292 | 1/25/2018 |
| 3.5.5 | 12,970 | 1/18/2018 |
| 3.5.5-patch-35246 | 3,151 | 1/10/2018 |
| 3.5.5-patch-35245 | 2,335 | 1/3/2018 |
| 3.5.5-patch-35244 | 2,084 | 12/12/2017 |
| 3.5.5-patch-35243 | 2,392 | 12/6/2017 |
| 3.5.5-patch-35241 | 2,036 | 11/24/2017 |
| 3.5.5-patch-35239 | 2,081 | 11/22/2017 |
| 3.5.5-patch-35237 | 2,048 | 11/16/2017 |
| 3.5.5-patch-35235 | 2,034 | 11/10/2017 |
| 3.5.5-patch-35232 | 2,072 | 11/8/2017 |
| 3.5.5-patch-35231 | 2,124 | 10/26/2017 |
| 3.5.5-patch-35223 | 2,212 | 10/10/2017 |
| 3.5.5-patch-35222 | 2,088 | 10/3/2017 |
| 3.5.5-patch-35221 | 2,066 | 9/25/2017 |
| 3.5.5-patch-35220 | 6,478 | 9/7/2017 |
| 3.5.5-patch-35219 | 2,078 | 9/4/2017 |
| 3.5.5-patch-35218 | 2,178 | 8/29/2017 |
| 3.5.5-patch-35216 | 2,833 | 7/24/2017 |
| 3.5.4 | 64,834 | 7/21/2017 |
| 3.5.4-patch-35202 | 2,212 | 5/5/2017 |
| 3.5.4-patch-35199 | 2,205 | 4/28/2017 |
| 3.5.4-patch-35196 | 2,137 | 4/25/2017 |
| 3.5.4-patch-35194 | 2,162 | 4/4/2017 |
| 3.5.3 | 30,272 | 3/8/2017 |
| 3.0.30187 | 2,659 | 5/19/2021 |
| 3.0.30183 | 8,602 | 4/1/2019 |
| 3.0.30182 | 13,326 | 4/27/2018 |
| 3.0.30181-Hotfix | 2,051 | 4/17/2018 |
| 3.0.30180-Hotfix | 2,119 | 3/29/2018 |
| 3.0.30179 | 9,107 | 7/21/2017 |
| 3.0.30175-Hotfix | 1,967 | 5/11/2017 |
| 3.0.30172-Hotfix | 2,213 | 3/30/2017 |
| 3.0.30171 | 3,370 | 3/8/2017 |
| 2.5.25043 | 11,131 | 1/13/2020 |
| 2.5.25042 | 3,543 | 10/3/2019 |
| 2.5.25041 | 14,358 | 5/16/2019 |
| 2.5.25040 | 3,894 | 10/17/2018 |
| 2.5.25039 | 5,899 | 10/2/2018 |
| 2.5.25038 | 3,547 | 9/17/2018 |
| 2.5.25037 | 3,595 | 9/13/2018 |
| 2.5.25034 | 3,487 | 9/6/2018 |
| 2.5.25033 | 3,451 | 8/17/2018 |
| 2.5.25032 | 11,101 | 5/8/2018 |
| 2.5.25031 | 5,200 | 5/3/2018 |
| 2.0.2380 | 46,380 | 7/11/2013 |
| 1.0.992 | 6,052 | 12/9/2012 |