Skip to content

Commit

Permalink
fixed name change of bolts dependency (#111)
Browse files Browse the repository at this point in the history
* fixed name change of bolts dependency

* added change log

* removed project file

* Trigger Travis CI
  • Loading branch information
mtrezza authored Jun 18, 2020
1 parent b7e9261 commit 095dae0
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 4 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
## Changelog

### master

### 1.2.1
> NOTE:
>
> This release requires Parse Android SDK >=`1.24.2` as dependency because of the transient depencency on the internalized bolts module.
- 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)

### 1.2.0
- Upgrade to avoid depending on outdated Bolts (#107)

### 1.1.0
- Repackage from com.parse to com.parse.livequery
- Bumps to use the latest dependency on JitPack for compatibility

### 1.0.6
- Safely call close on the websocket client with synchronized calls
thanks to @mmimeault (#83)

### 1.0.5
- Back the subscriptions by a thread safe collection map thanks to @mmimeault (#80)

### 1.0.4
- Change package name thanks to @hermanliang (#64)

### 1.0.3
- Fix race condition by ensuring that op=connected has been received before sending a new subscribe event thanks to @jhansche (#48)

### 1.0.2
- Dispatch better disconnect events thanks to @jhansche (#39)

### 1.0.1
- getClient() method can get URL inferred from Parse.initialize() call thanks to @hermanliang (#30)
- Bump to support Android API 25 (#32)
- Bump to Parse Android 1.14.1 dependency (#32).
- Switch from TubeSock library to OkHttp3 web scokets (#28)
- Fix Locale lint errors thanks to @jhansche (#23)
- Connect/disconnect on background executor thanks to @jhansche (#22)
- Refactor ParseLiveQueryClient not to be typed thanks to @jhansche (#27)

### 1.0.0
- Initial 1.0.0 release
2 changes: 1 addition & 1 deletion ParseLiveQuery/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {
}

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

testImplementation "org.robolectric:robolectric:3.3.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.Executor;

import bolts.Continuation;
import bolts.Task;
import com.parse.boltsinternal.Continuation;
import com.parse.boltsinternal.Task;
import okhttp3.OkHttpClient;

class ParseLiveQueryClientImpl implements ParseLiveQueryClient {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.io.IOException;
import java.net.URI;

import bolts.Task;
import com.parse.boltsinternal.Task;

import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.assertNotNull;
Expand Down

0 comments on commit 095dae0

Please sign in to comment.