Skip to content

Commit

Permalink
Release v2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cabol committed Jul 14, 2023
1 parent 730d645 commit f1c4845
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v2.5.2](https://github.com/cabol/nebulex/tree/v2.5.2) (2023-07-14)

[Full Changelog](https://github.com/cabol/nebulex/compare/v2.5.1...v2.5.2)

**Closed issues:**

- Replicated adapter syncing during rolling deployment.
[#209](https://github.com/cabol/nebulex/issues/209)
- Ambiguity regarding ttl and `gc_interval` relation.
[#208](https://github.com/cabol/nebulex/issues/208)
- Seeing Nebulex.RPCError during deployments with partitioned adapter.
[#206](https://github.com/cabol/nebulex/issues/206)
- Random `:erpc`, `:timeout` with partitioned get.
[#202](https://github.com/cabol/nebulex/issues/202)
- Processes reading from cache blocked by generational gc process.
[#197](https://github.com/cabol/nebulex/issues/197)

**Merged pull requests:**

- Delay flushing ets table to avoid blocking processes using it.
[#210](https://github.com/cabol/nebulex/pull/210)
([szajbus](https://github.com/szajbus))

## [v2.5.1](https://github.com/cabol/nebulex/tree/v2.5.1) (2023-05-27)

[Full Changelog](https://github.com/cabol/nebulex/compare/v2.5.0...v2.5.1)
Expand Down
2 changes: 1 addition & 1 deletion guides/creating-new-adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Now let's modify `mix.exs` so that we could fetch Nebulex repository.
defmodule NebulexMemoryAdapter.MixProject do
use Mix.Project

@nbx_vsn "2.5.0"
@nbx_vsn "2.5.2"
@version "0.1.0"

def project do
Expand Down
4 changes: 4 additions & 0 deletions lib/nebulex/adapters/local.ex
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ defmodule Nebulex.Adapters.Local do
the timeout used when the cache starts and there are few entries or the
consumed memory is near to `0`. Defaults to `600_000` (10 minutes).
* `:gc_flush_delay` - If it is set, an integer > 0 is expected defining the
delay in milliseconds before objects from the oldest generation are
flushed. Defaults to `10_000` (10 seconds).
## Usage
`Nebulex.Cache` is the wrapper around the cache. We can define a
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Nebulex.MixProject do
use Mix.Project

@source_url "https://github.com/cabol/nebulex"
@version "2.5.1"
@version "2.5.2"

def project do
[
Expand Down

0 comments on commit f1c4845

Please sign in to comment.