Skip to content

Commit 104a9b8

Browse files
committed
v1.9.0-beta1
1 parent 0e760af commit 104a9b8

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
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-beta1 - 2016 Jun 10
4+
5+
```clojure
6+
[com.taoensso/sente "1.9.0-beta1"]
7+
```
8+
9+
> This is a **major release** that should be non-breaking in most cases. Enjoy! :-)
10+
11+
**PLEASE REPORT ANY PROBLEMS**, thank you!
12+
13+
* **BREAKING**: `:ws-kalive-ms`, `:lp-timeout-ms` opts moved from client-side to server-side `make-channel-socket!` fn
14+
* **BREAKING**: Drop experimental (and rarely used) flexi packer
15+
* **New**: Add support for more flexible conn-type upgrade/downgrade [#201]
16+
* **New**: Add alpha `[:chsk/ws-error _]` client-side ev-msgs [#214]
17+
* **Impl**: Clojure-side Transit performance optimizations [#161]
18+
* **Impl**: Allow server to garbage collect long-polling conns [#150 #159]
19+
* **Fix**: Server-side ping to help gc non-terminating WebSocket conns [#230]
20+
* **Fix**: Fix for spurious Firefox unload->onclose calls [#224]
21+
* **Fix**: Clear the keep alive timer in `chsk-disconnect!` [#221 @theasp]
22+
323
## v1.8.1 - 2016 Mar 4
424

525
```clojure

README.md

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

66
```clojure
7-
[com.taoensso/sente "1.8.1"] ; Stable
7+
[com.taoensso/sente "1.8.1"] ; Stable
8+
[com.taoensso/sente "1.9.0-beta1"] ; Dev (unstable), see CHANGELOG for details
89
```
910

1011
Want to help [support taoensso/open-source]?

example-project/project.clj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso.examples/sente "1.9.0-SNAPSHOT"
1+
(defproject com.taoensso.examples/sente "1.9.0-beta1"
22
:description "Sente, reference web-app example project"
33
:url "https://github.com/ptaoussanis/sente"
44
:license {:name "Eclipse Public License"
@@ -15,8 +15,8 @@
1515
[org.clojure/core.async "0.2.374"]
1616
[org.clojure/tools.nrepl "0.2.12"] ; Optional, for Cider
1717

18-
[com.taoensso/sente "1.9.0-SNAPSHOT"] ; <--- Sente
19-
[com.taoensso/timbre "4.3.1"]
18+
[com.taoensso/sente "1.9.0-beta1"] ; <--- Sente
19+
[com.taoensso/timbre "4.4.0"]
2020

2121
;;; ---> Choose (uncomment) a supported web server <---
2222
[http-kit "2.2.0-alpha2"]

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/sente "1.9.0-SNAPSHOT"
1+
(defproject com.taoensso/sente "1.9.0-beta1"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Realtime web comms for Clojure/Script"
44
:url "https://github.com/ptaoussanis/sente"

0 commit comments

Comments
 (0)