Skip to content

Commit 095dae0

Browse files
authored
fixed name change of bolts dependency (#111)
* fixed name change of bolts dependency * added change log * removed project file * Trigger Travis CI
1 parent b7e9261 commit 095dae0

File tree

4 files changed

+48
-4
lines changed

4 files changed

+48
-4
lines changed

CHANGELOG.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
## Changelog
2+
3+
### master
4+
5+
### 1.2.1
6+
> NOTE:
7+
>
8+
> This release requires Parse Android SDK >=`1.24.2` as dependency because of the transient depencency on the internalized bolts module.
9+
- CHANGE: Changed bolts references to use internalized bolts depedency. See [#1036](https://github.com/parse-community/Parse-SDK-Android/issues/1036) for details. Thanks to [Manuel Trezza](https://github.com/mtrezza)
10+
11+
### 1.2.0
12+
- Upgrade to avoid depending on outdated Bolts (#107)
13+
14+
### 1.1.0
15+
- Repackage from com.parse to com.parse.livequery
16+
- Bumps to use the latest dependency on JitPack for compatibility
17+
18+
### 1.0.6
19+
- Safely call close on the websocket client with synchronized calls
20+
thanks to @mmimeault (#83)
21+
22+
### 1.0.5
23+
- Back the subscriptions by a thread safe collection map thanks to @mmimeault (#80)
24+
25+
### 1.0.4
26+
- Change package name thanks to @hermanliang (#64)
27+
28+
### 1.0.3
29+
- Fix race condition by ensuring that op=connected has been received before sending a new subscribe event thanks to @jhansche (#48)
30+
31+
### 1.0.2
32+
- Dispatch better disconnect events thanks to @jhansche (#39)
33+
34+
### 1.0.1
35+
- getClient() method can get URL inferred from Parse.initialize() call thanks to @hermanliang (#30)
36+
- Bump to support Android API 25 (#32)
37+
- Bump to Parse Android 1.14.1 dependency (#32).
38+
- Switch from TubeSock library to OkHttp3 web scokets (#28)
39+
- Fix Locale lint errors thanks to @jhansche (#23)
40+
- Connect/disconnect on background executor thanks to @jhansche (#22)
41+
- Refactor ParseLiveQueryClient not to be typed thanks to @jhansche (#27)
42+
43+
### 1.0.0
44+
- Initial 1.0.0 release

ParseLiveQuery/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ android {
2424
}
2525

2626
dependencies {
27-
api "com.github.parse-community.Parse-SDK-Android:parse:1.24.1"
27+
api "com.github.parse-community.Parse-SDK-Android:parse:1.24.2"
2828
api "com.squareup.okhttp3:okhttp:3.14.4"
2929

3030
testImplementation "org.robolectric:robolectric:3.3.1"

ParseLiveQuery/src/main/java/com/parse/livequery/ParseLiveQueryClientImpl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
import java.util.concurrent.ConcurrentHashMap;
2323
import java.util.concurrent.Executor;
2424

25-
import bolts.Continuation;
26-
import bolts.Task;
25+
import com.parse.boltsinternal.Continuation;
26+
import com.parse.boltsinternal.Task;
2727
import okhttp3.OkHttpClient;
2828

2929
class ParseLiveQueryClientImpl implements ParseLiveQueryClient {

ParseLiveQuery/src/test/java/com/parse/TestParseLiveQueryClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import java.io.IOException;
2525
import java.net.URI;
2626

27-
import bolts.Task;
27+
import com.parse.boltsinternal.Task;
2828

2929
import static junit.framework.Assert.assertEquals;
3030
import static junit.framework.Assert.assertNotNull;

0 commit comments

Comments
 (0)