Skip to content

Commit

Permalink
Release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Paula Gearon committed Nov 10, 2021
1 parent 647eb40 commit 6b27d2e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [2.2.3] - 2021-11-10
### Added
- The `asami.core/entity` function now accepts Connections as well as Databases. This will select the latest database from the connection.

### Changed
- The third argument to the `asami.storage.Database/entity` function is now required. This change should not affect most users, as this is an internal function and should be accessed with `asami.core/entity`, which has not changed.

### Fixed
- Using an entity `:id` will now correctly select and update entities in transactions.

## [2.2.2] - 2021-10-19
### Added
- Added a new `:input-limit` option to transact. When included, the transaction will attempt to keep at or below this number of triples.
Expand Down Expand Up @@ -289,7 +299,8 @@
### Added
- Introduced Update Annotations

[Unreleased]: https://github.com/threatgrid/asami/compare/2.2.2...HEAD
[Unreleased]: https://github.com/threatgrid/asami/compare/2.2.3...HEAD
[2.2.3]: https://github.com/threatgrid/asami/compare/2.2.2...2.2.3
[2.2.2]: https://github.com/threatgrid/asami/compare/2.2.1...2.2.2
[2.2.1]: https://github.com/threatgrid/asami/compare/2.2.0...2.2.1
[2.2.0]: https://github.com/threatgrid/asami/compare/2.1.3...2.2.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Asami can be made available to clojure by adding the following to a `deps.edn` f
```clojure
{
:deps {
org.clojars.quoll/asami {:mvn/version "2.2.2"}
org.clojars.quoll/asami {:mvn/version "2.2.3"}
}
}
```
Expand All @@ -41,7 +41,7 @@ This makes Asami available to a repl that is launched with the `clj` or `clojure

Alternatively, Asami can be added for the Leiningen build tool by adding this to the `:dependencies` section of the `project.clj` file:
```clojure
[org.clojars.quoll/asami "2.2.2"]
[org.clojars.quoll/asami "2.2.3"]
```

### Important Note for databases before 2.1.0
Expand Down

0 comments on commit 6b27d2e

Please sign in to comment.