Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit 56aaae8

Browse files
authored
Release 2.7.2 (#229)
* Update CHANGELOG.md * Update CHANGELOG.md * Update ParseLiveQuery.podspec * Update Cartfile * test circle with Carthage build on PR * update carthage dependencies
1 parent 397d240 commit 56aaae8

File tree

7 files changed

+56
-49
lines changed

7 files changed

+56
-49
lines changed

.circleci/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ workflows:
5555
version: 2
5656
pr:
5757
jobs:
58+
- carthage
5859
- ios
5960
- macos
6061
- demo

CHANGELOG.md

+47-41
Original file line numberDiff line numberDiff line change
@@ -2,93 +2,99 @@
22

33
### Master
44

5-
[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.7.1...master)
5+
[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.7.2...master)
6+
7+
### 2.7.2
8+
9+
[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.7.1...2.7.2)
10+
11+
- Bump Parse SDK to v.1.19.0 ([#229](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/229)), thanks to [Tom Fox](https://github.com/TomWFox).
612

713
### 2.7.1
814

915
[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.7.0...2.7.1)
1016

1117
- Bump Parse SDK to v1.18.0
12-
([#226](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/226)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas)
18+
([#226](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/226)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas).
1319

1420
- Remove Bolts-ObjC as dependency
15-
([#223](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/223)), thanks to [Joe Szymanski](https://github.com/JoeSzymanski)
21+
([#223](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/223)), thanks to [Joe Szymanski](https://github.com/JoeSzymanski).
1622

1723
### 2.7.0
1824

1925
[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.6.1...2.7.0)
2026

21-
- Build compatibility with Xcode 11 and iOS 13 ([#210](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/210)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas) & [Darren Black](https://github.com/drdaz)
22-
- Bump Parse SDK to v1.17.3 ([#210](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/210)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas) & [Darren Black](https://github.com/drdaz)
23-
- Moves to Swift 5 ([#210](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/210)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas) & [Darren Black](https://github.com/drdaz)
24-
- Bump Bolts-Swift dependency to v1.5.0 ([#210](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/210)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas) & [Darren Black](https://github.com/drdaz)
25-
- Properly encode Array of GeoPoints ([#208](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/208)), thanks to [Diamond Lewis](https://github.com/dplewis)
27+
- Build compatibility with Xcode 11 and iOS 13 ([#210](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/210)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas) & [Darren Black](https://github.com/drdaz).
28+
- Bump Parse SDK to v1.17.3 ([#210](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/210)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas) & [Darren Black](https://github.com/drdaz).
29+
- Moves to Swift 5 ([#210](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/210)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas) & [Darren Black](https://github.com/drdaz).
30+
- Bump Bolts-Swift dependency to v1.5.0 ([#210](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/210)), thanks to [Nathan Kellert](https://github.com/noobs2ninjas) & [Darren Black](https://github.com/drdaz).
31+
- Properly encode Array of GeoPoints ([#208](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/208)), thanks to [Diamond Lewis](https://github.com/dplewis).
2632

2733
### 2.6.1
2834

2935
[Full Changelog](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/compare/2.6.0...2.6.1)
3036

3137
**This will be the final release for Swift 4.2**
3238

33-
- Fix #190, thanks to [rostopira](https://github.com/rostopira)
34-
- Bumps Parse SDK to 1.17.1
35-
- Bumps Starscream to 3.0.5
39+
- Fix #190, thanks to [rostopira](https://github.com/rostopira).
40+
- Bumps Parse SDK to 1.17.1.
41+
- Bumps Starscream to 3.0.5.
3642

3743
### 2.6.0
3844

3945
- Fixed issue where no "where" property sent when no constraints where added to a query. This is required by the LiveQuery protocol.
40-
- Support for .or queries. Fixes #156, #47, and #85. Allows orQuery to be encoded without throwing. Thanks to [dblythy](https://github.com/dblythy)
41-
- Added @objc to compile with objective-c . Thanks to [Junya Yamaguchi](https://github.com/junya100) [(#184)](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/184)
42-
- Encode Date object with __type: Date. Thanks to [anafang](https://github.com/ananfang) [#186](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/186)
46+
- Support for `.or` queries. Fixes #156, #47, and #85. Allows orQuery to be encoded without throwing, thanks to [dblythy](https://github.com/dblythy).
47+
- Added @objc to compile with objective-c ([#184](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/184)), thanks to [Junya Yamaguchi](https://github.com/junya100).
48+
- Encode Date object with __type: Date ([#186](https://github.com/parse-community/ParseLiveQuery-iOS-OSX/pull/186)), thanks to [anafang](https://github.com/ananfang).
4349

4450
### 2.5.0
4551

46-
- Bumps Bolts-Swift to 1.4.0
47-
- Bumps Swift version to 4.2
52+
- Bumps Bolts-Swift to 1.4.0.
53+
- Bumps Swift version to 4.2.
4854

4955
### 2.4.0
5056

51-
- Bumps Parse SDK to 1.17.0
52-
- Bumps cocoapods to 1.4.0
53-
- Set Swift version to 3.2
57+
- Bumps Parse SDK to 1.17.0.
58+
- Bumps cocoapods to 1.4.0.
59+
- Set Swift version to 3.2.
5460

5561
### 2.3.0
5662

57-
- Bumps Parse SDK to 1.16.0
58-
- Bumps Starscream to 3.0.4
59-
- Fixes warnings in Swift 4
63+
- Bumps Parse SDK to 1.16.0.
64+
- Bumps Starscream to 3.0.4.
65+
- Fixes warnings in Swift 4.
6066

6167
### 2.2.3
6268

63-
- Bumps Parse SDK to 1.15.4 and Bolts to 1.9.0, thanks to [marcgovi](https://github.com/marcgovi)
64-
- Updates logging strategy for websockets, thanks to [Joe Szymanski](https://github.com/JoeSzymanski)
65-
- Ensures unsubscribed queries are removed from subscriptions list, thanks to [Joe Szymanski](https://github.com/JoeSzymanski)
66-
- Do not attempt to reconnect if a connection is already in progress, thanks to [Joe Szymanski](https://github.com/JoeSzymanski)
69+
- Bumps Parse SDK to 1.15.4 and Bolts to 1.9.0, thanks to [marcgovi](https://github.com/marcgovi).
70+
- Updates logging strategy for websockets, thanks to [Joe Szymanski](https://github.com/JoeSzymanski).
71+
- Ensures unsubscribed queries are removed from subscriptions list, thanks to [Joe Szymanski](https://github.com/JoeSzymanski).
72+
- Do not attempt to reconnect if a connection is already in progress, thanks to [Joe Szymanski](https://github.com/JoeSzymanski).
6773

6874
### 2.2.2
6975

70-
- Adds ability to set the clientKey on the connect message, thanks to [bryandel](https://github.com/bryandel)
71-
- Adds ability to silence the logs, thanks to [ananfang](https://github.com/ananfang)
72-
- Ensures that `wss` URL's are properly handled, thanks to [Joe Szymanski](https://github.com/JoeSzymanski)
76+
- Adds ability to set the clientKey on the connect message, thanks to [bryandel](https://github.com/bryandel).
77+
- Adds ability to silence the logs, thanks to [ananfang](https://github.com/ananfang).
78+
- Ensures that `wss` URL's are properly handled, thanks to [Joe Szymanski](https://github.com/JoeSzymanski).
7379

7480
### 2.0.0
7581

76-
- Full carthage support, thanks to [David Starke](https://github.com/dstarke)
82+
- Full carthage support, thanks to [David Starke](https://github.com/dstarke).
7783

7884
**Deprecates usage of SocketRocket in favour of Starscream**
7985

80-
- Adds support for sessionToken and user authentication, thanks to [Andrew Gordeev](https://github.com/andrew8712)
81-
- Adds support for tvOS, thanks to [Kurt (kajensen)](https://github.com/kajensen)
82-
- Adds support for updating subscription, thanks to [Florent Vilmart](https://github.com/flovilmart)
83-
- Fixes for object decoding
86+
- Adds support for sessionToken and user authentication, thanks to [Andrew Gordeev](https://github.com/andrew8712).
87+
- Adds support for tvOS, thanks to [Kurt (kajensen)](https://github.com/kajensen).
88+
- Adds support for updating subscription, thanks to [Florent Vilmart](https://github.com/flovilmart).
89+
- Fixes for object decoding.
8490

8591
### 1.1.0
8692

87-
- Breaking change: Swift 3 support
88-
- Breaking change: OSX deployment target to 10.10
89-
- New: Carthage support, thanks to [Florent Vilmart](https://github.com/flovilmart)
90-
- New: Supports PFGeoPoints, thanks to [Nikita Lutsenko](https://github.com/nlutsenko)
91-
- Fix: Deduplicates subscription requests, thanks to [Nathan Kellert](https://github.com/noobs2ninjas)
92-
- New: Support for wss, thanks to [@kajensen](https://github.com/kajensen)
93-
- Fix: Properly deliver events back to obj-c, thanks to [Richard Ross](https://github.com/richardjrossiii)
93+
- Breaking change: Swift 3 support.
94+
- Breaking change: OSX deployment target to 10.10.
95+
- New: Carthage support, thanks to [Florent Vilmart](https://github.com/flovilmart).
96+
- New: Supports PFGeoPoints, thanks to [Nikita Lutsenko](https://github.com/nlutsenko).
97+
- Fix: Deduplicates subscription requests, thanks to [Nathan Kellert](https://github.com/noobs2ninjas).
98+
- New: Support for wss, thanks to [@kajensen](https://github.com/kajensen).
99+
- Fix: Properly deliver events back to obj-c, thanks to [Richard Ross](https://github.com/richardjrossiii).
94100

Cartfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
github "BoltsFramework/Bolts-Swift" >= 1.5.0
2-
github "ParsePlatform/Parse-SDK-iOS-OSX" >= 1.18.0
3-
github "daltoniam/Starscream" == 3.1.1
2+
github "ParsePlatform/Parse-SDK-iOS-OSX" >= 1.19.0
3+
github "daltoniam/Starscream" == 3.1.1

Cartfile.resolved

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
github "BoltsFramework/Bolts-ObjC" "1.9.1"
22
github "BoltsFramework/Bolts-Swift" "1.5.0"
3-
github "ParsePlatform/Parse-SDK-iOS-OSX" "1.18.0"
3+
github "ParsePlatform/Parse-SDK-iOS-OSX" "1.19.0"
44
github "daltoniam/Starscream" "3.1.1"
5-
github "facebook/facebook-objc-sdk" "v5.15.1"
5+
github "facebook/facebook-objc-sdk" "v6.5.2"

ParseLiveQuery.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Pod::Spec.new do |s|
2222
s.source_files = 'Sources/ParseLiveQuery/**/*.{swift,h}'
2323
s.module_name = 'ParseLiveQuery'
2424

25-
s.dependency 'Parse', '~> 1.18.0'
25+
s.dependency 'Parse', '~> 1.19.0'
2626
s.dependency 'Bolts-Swift', '~> 1.5.0'
2727
s.dependency 'Starscream', '3.1.0'
2828

29-
end
29+
end

0 commit comments

Comments
 (0)