Skip to content

Commit

Permalink
Update CHANGELOG.md and LIBRARY.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CheK539 committed Nov 10, 2023
1 parent a17ea6e commit 098177b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
- Added support for converting multipage into a group of files.
- Added `default_effects` field in `UploadcareFile`.
- Added react to request throttling (429 code response).
- Added support for latest add-ons.
- Added support for [object recognition](https://uploadcare.com/docs/intelligence/object-recognition/),
[unsafe content detection](https://uploadcare.com/docs/unsafe-content/),
[malware protection](https://uploadcare.com/docs/security/malware-protection/),
and [background removal](https://uploadcare.com/docs/remove-bg/).
- Fixed authorization signature for requests with url parameters.
- Widget:
- SocialApi doesn't use `GET /sources` method anymore.
Expand Down
8 changes: 8 additions & 0 deletions documentation/LIBRARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -1273,6 +1273,7 @@ addOn.executeAsync("YOUR_FILE_UUID", object : UploadcareFileCallback {
}
})
```

Java
```java
// Create AWS Rekognition Add-On
Expand Down Expand Up @@ -1314,6 +1315,7 @@ if (statusResult.status == AddOnStatus.DONE) {
// Handle other statuses
}
```

Java
```java
// Create AWS Rekognition Add-On
Expand Down Expand Up @@ -1354,6 +1356,7 @@ addOn.executeAsync(object : UploadcareFileCallback {
}
})
```

Java
```java
// Create AWS Rekognition Add-On
Expand Down Expand Up @@ -1394,6 +1397,7 @@ if (statusResult.status == AddOnStatus.DONE) {
// Handle other statuses
}
```

Java
```java
// Create AWS Rekognition Moderation Add-On
Expand Down Expand Up @@ -1434,6 +1438,7 @@ addOn.executeAsync(object : UploadcareFileCallback {
}
})
```

Java
```java
// Create ClamAV Add-On
Expand Down Expand Up @@ -1474,6 +1479,7 @@ if (statusResult.status == AddOnStatus.DONE) {
// Handle other statuses
}
```

Java
```java
// Create ClamAV Add-On
Expand Down Expand Up @@ -1514,6 +1520,7 @@ addOn.executeAsync(object : UploadcareFileCallback {
}
})
```

Java
```java
// Create Remove.bg Add-On
Expand Down Expand Up @@ -1554,6 +1561,7 @@ if (statusResult.status == AddOnStatus.DONE) {
// Handle other statuses
}
```

Java
```java
// Create Remove.bg Add-On
Expand Down

0 comments on commit 098177b

Please sign in to comment.