From 38bbd0150f86af8b30bb6f813dfdc324c0e592c1 Mon Sep 17 00:00:00 2001 From: Corey Date: Fri, 27 Aug 2021 08:35:26 -0400 Subject: [PATCH] Prepare for 1.9.5 release (#218) * Prepare for 1.9.5 release * nits --- CHANGELOG.md | 10 +++++++++- Sources/ParseSwift/ParseConstants.swift | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23e235cd7..9e20a31bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,30 @@ # Parse-Swift Changelog ### main -[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/1.9.4...main) +[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/1.9.5...main) * _Contributing to this repo? Add info about your change here to be included in the next release_ + +### 1.9.5 +[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/1.9.4...1.9.5) + +__Improvements__ - LiveQuery web socket connections handle URL error codes -1001 "The request timed out" and -1011 "There was a bad response from the server." ([#217](https://github.com/parse-community/Parse-Swift/pull/217)), thanks to [Lukas Smilek](https://github.com/lsmilek1). ### 1.9.4 [Full Changelog](https://github.com/parse-community/Parse-Swift/compare/1.9.3...1.9.4) + __Fixes__ - Fix LiveQuery reconnections when server disconnects. Always receive and pass connection errors to ParseLiveQuery delegate ([#211](https://github.com/parse-community/Parse-Swift/pull/211)), thanks to [Corey Baker](https://github.com/cbaker6). ### 1.9.3 [Full Changelog](https://github.com/parse-community/Parse-Swift/compare/1.9.2...1.9.3) + __Improvements__ - Ensure delegate set before resuming a ParseLiveQuery task ([#209](https://github.com/parse-community/Parse-Swift/pull/209)), thanks to [Corey Baker](https://github.com/cbaker6). ### 1.9.2 [Full Changelog](https://github.com/parse-community/Parse-Swift/compare/1.9.1...1.9.2) + __Improvements__ - ParseLiveQuery checks all states of a websocket and reacts as needed after an error ([#207](https://github.com/parse-community/Parse-Swift/pull/207)), thanks to [Corey Baker](https://github.com/cbaker6). diff --git a/Sources/ParseSwift/ParseConstants.swift b/Sources/ParseSwift/ParseConstants.swift index df11457f4..87388b7e3 100644 --- a/Sources/ParseSwift/ParseConstants.swift +++ b/Sources/ParseSwift/ParseConstants.swift @@ -10,7 +10,7 @@ import Foundation enum ParseConstants { static let sdk = "swift" - static let version = "1.9.4" + static let version = "1.9.5" static let fileManagementDirectory = "parse/" static let fileManagementPrivateDocumentsDirectory = "Private Documents/" static let fileManagementLibraryDirectory = "Library/"