Skip to content

Commit

Permalink
bump to v1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Nov 24, 2024
1 parent 1051519 commit 1bb80fd
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,32 @@ for updates, or [StackOverflow](http://stackoverflow.com/questions/ask) or the [

This repository contains the source for ServiceStack plugins for the leading Android Studio, IntelliJ and Eclipse Java IDE's providing Java developers a highly productive development experience for consuming Typed ServiceStack Services by leveraging [Add ServiceStack Reference](https://github.com/ServiceStack/ServiceStack/wiki/Add-ServiceStack-Reference) directly within their IDE!

### v1.1.4 Changes

Added new ServiceClient APIs:

```java
<TResponse> TResponse postFileWithRequest(IReturn<TResponse> request, FileUpload file);
<TResponse> TResponse postFileWithRequest(Object request, FileUpload file, Object responseType);
<TResponse> TResponse postFileWithRequest(String path, Object request, FileUpload file, Object responseType);

<TResponse> TResponse postFilesWithRequest(IReturn<TResponse> request, FileUpload[] files);
<TResponse> TResponse postFilesWithRequest(Object request, FileUpload[] files, Object responseType);
<TResponse> TResponse postFilesWithRequest(String path, Object request, FileUpload[] files, Object responseType);
```

Added new AsyncServiceClient APIs:

```java
<T> void postFileWithRequestAsync(IReturn<T> request, FileUpload file, final AsyncResult<T> asyncResult);
<T> void postFileWithRequestAsync(Object request, FileUpload file, Object responseType, final AsyncResult<T> asyncResult);
<T> void postFileWithRequestAsync(String path, Object request, FileUpload file, Object responseType, final AsyncResult<T> asyncResult);

<T> void postFilesWithRequestAsync(IReturn<T> request, FileUpload[] files, final AsyncResult<T> asyncResult);
<T> void postFilesWithRequestAsync(Object request, FileUpload[] files, Object responseType, final AsyncResult<T> asyncResult);
<T> void postFilesWithRequestAsync(String path, Object request, FileUpload[] files, Object responseType, final AsyncResult<T> asyncResult);
```

### v1.1.0 Changes

Switched to use `/api` pre-defined route by default, revert to legacy `/json/reply` pre-defined route with:
Expand Down
2 changes: 1 addition & 1 deletion src/AndroidClient/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'maven-publish'
apply plugin: 'signing'

// Define the version and group for the Maven package
version = "1.1.3"
version = "1.1.4"
group = "net.servicestack"

if (project.hasProperty('versionSuffix')) {
Expand Down
2 changes: 1 addition & 1 deletion src/AndroidClient/client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'maven-publish'
apply plugin: 'signing'

// Define the version and group for the Maven package
version = "1.1.3"
version = "1.1.4"
group = "net.servicestack"

if (project.hasProperty('versionSuffix')) {
Expand Down
2 changes: 1 addition & 1 deletion src/AndroidClient/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.servicestack</groupId>
<artifactId>client</artifactId>
<version>1.0.49</version>
<version>1.1.4</version>
<name>ServiceStack.Client</name>
<description>A client library to call your ServiceStack webservices.</description>
<url>https://github.com/ServiceStack/ServiceStack.Java</url>
Expand Down

0 comments on commit 1bb80fd

Please sign in to comment.