Skip to content

Commit

Permalink
Update changelog re caching API surface
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Mar 5, 2019
1 parent f59719d commit cac6139
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

The repo is versioned based on [SemVer 2.0](https://semver.org/spec/v2.0.0.html) using the tiny-but-mighty [MinVer](https://github.com/adamralph/minver) from [@adamralph](https://github.com/adamralph). [See here](https://github.com/adamralph/minver#how-it-works) for more information on how it works.

All notable changes to this project will be documented in this file.
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/).

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
The `Unreleased` section name is replaced by the expected version of next release. A stable version's log contains all changes between that version and the previous stable version (can duplicate the prereleases logs).

_NB at the present time, this project does not adhere strictly to Semantic Versioning - small binary-breaking changes may occur without a change in Major at the until this notice is removed (it will be!)._
Expand All @@ -13,6 +12,10 @@ _NB at the present time, this project does not adhere strictly to Semantic Versi

### Added
### Changed

- Make `caching` non-optional in CosmosStreamResolver; add `NoCaching` cache mode for `Equinox.Cosmos` [#104](https://github.com/jet/equinox/issues/104) @jakzale
- Reorder `caching` and `access` in `GesStreamResolver` to match `CosmosStreamResolver` [#107](https://github.com/jet/equinox/issues/107)

### Removed
### Fixed

Expand Down
1 change: 0 additions & 1 deletion src/Equinox.EventStore/EventStore.fs
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,6 @@ type private Folder<'event, 'state>(category : Category<'event, 'state>, fold: '
| Some (cache : Caching.Cache, prefix : string) ->
match cache.TryGet(prefix + streamName) with
| None -> batched
| Some (token, state) -> cached token state
interface ICategory<'event, 'state, string> with
member __.Load (streamName : string) (log : ILogger) : Async<Store.StreamToken * 'state> =
loadAlgorithm streamName initial log
Expand Down

0 comments on commit cac6139

Please sign in to comment.