Skip to content

Commit 4cb1510

Browse files
committed
v1.9.0-beta1
1 parent 71943c5 commit 4cb1510

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

Diff for: CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3-
## v1.9.0-alpha3 / 2015 December 19
3+
## v1.9.0-beta1 / 2016 Jan 24
44

55
> This is a major feature release with **BREAKING CHANGES** (see **Migration** section for details).
66
> Big thanks to @ricardojmendez for most of the work for this release!
@@ -13,12 +13,14 @@
1313
* **New**: `update-table` support for index modification [@ricardojmendez]
1414
* **New**: `scan` support for indexes, `:expr-attr-names`, `:proj-expr` [@ricardojmendez]
1515
* **New**: `delete-item` support for expressions [@ricardojmendez]
16+
* **New**: `scan` support for `support filter-expr`, `expr-attr-vals` [@ricardojmendez #90]
17+
* **New**: `scan` support for consistent reads [@ricardojmendez #92]
1618
* **Change**: `update-table` now returns a future instead of a promise (allows exceptions to rethrow)
1719
* **Change**: implementation details now marked as private
1820
* **Fix**: `remove-empty-attr-vals` vs blank strings [@crough #72]
1921

2022
```clojure
21-
[com.taoensso/faraday "1.9.0-alpha3"]
23+
[com.taoensso/faraday "1.9.0-RC1"]
2224
```
2325

2426
#### MIGRATION INSTRUCTIONS
@@ -27,6 +29,7 @@
2729

2830
**[2]**: `(update-table <client-opts> <table> <throughput> <opts>)` -> `(update-table <client-opts> <table> {:through-put <throughput> <other-opts>})`
2931

32+
3033
## v1.8.0 / 2015 September 26
3134

3235
> This is a non-breaking feature release

Diff for: README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
**[CHANGELOG]** | [API] | current [Break Version]:
55

66
```clojure
7-
[com.taoensso/faraday "1.8.0"] ; Stable
7+
[com.taoensso/faraday "1.8.0"] ; Stable
8+
[com.taoensso/faraday "1.9.0-beta1"] ; Dev, see CHANGELOG
89
```
910

1011
# Faraday
@@ -183,4 +184,4 @@ Copyright &copy; 2013-2016 [Peter Taoussanis].
183184
[provisions capacity]: http://aws.amazon.com/dynamodb/pricing/
184185
[primary keys]: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataModel.html#DataModelPrimaryKey
185186
[official AWS DynamoDB documentation]: http://aws.amazon.com/documentation/dynamodb/
186-
[DynamoDB data model]: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataModel.html
187+
[DynamoDB data model]: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataModel.html

Diff for: project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/faraday "1.9.0-alpha3"
1+
(defproject com.taoensso/faraday "1.9.0-beta1"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Clojure DynamoDB client"
44
:url "https://github.com/ptaoussanis/faraday"

0 commit comments

Comments
 (0)