Releases: DeepLcom/deepl-php
Releases · DeepLcom/deepl-php
v1.4.0
Added
- Script to check our source code for license headers and a step for them in the CI.
- Added platform and node version information to the user-agent string that is sent with API calls, along with an opt-out.
- Add method for applications that use this library to identify themselves in API requests they make.
Fixed
- Fix getUsage request to be a HTTP GET request, not POST.
- Changed document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time.
v1.3.0
Added
-
New languages available: Korean (
'ko'
) and Norwegian (bokmål) ('nb'
). Add language code constants and tests.Note: older library versions also support the new languages, this update only adds new code constants.
v1.2.1
v1.2.0
Changed
- Added dependency on
psr/log
. As this package forms a PHP Standard
Recommendation, we don't consider it to break backward-compatibility.
Fixed
v1.1.0
Added
- Add new formality options:
'prefer_less'
and'prefer_more'
.
Changed
- Requests resulting in
503 Service Unavailable
errors are now retried.
Attempting to download a document before translation is completed will now
wait and retry (up to 5 times by default), rather than throwing an exception.
v0.4.1
v1.0.0
Stable release.
Added
-
Add glossary management support.
-
New language available: Ukrainian (
'uk'
). Add language code constant and tests.Note: older library versions also support new languages, this update only adds new code constant.
-
Add proxy support.
v0.4.0
Added
- Add support for document translation.
v0.3.0
Added
-
New languages available: Indonesian (
'id'
) and Turkish ('tr'
). Add language code constants and tests.Note: older library versions also support the new languages, this update only adds new code constants.
v0.2.0
Changed
- Remove
final
keyword from class declarations to facilitate testing.