Releases: shotstack/shotstack-sdk-php
Sync SDK with latest APIs and features
Fix FPS strict type bug
Fixes a bug with FPS responses caused by strict type checking.
Fix slideLeftSlow effect typo
Fixes a capital letter typo in the slideLeftSlow effect.
Add S3 destination, volume effects and update readme
This release adds the following:
- Add S3 destination, mute output and volume effects
- Updates the readme with all the latest features including templates. Mux destination and the new features.
Fix templates get requests and remove default values
This update:
- Removes default values from the SDK. The SDK will set parameters with default values which are not needed and also causing some issues with some users applications.
- Fixes a bug with template get requests.
Add templates endpoint
Adds the ability to create and manage templates for faster video editing capabilities
Enhancements
- #25: Add templates to SDK
Add Mux destination
Introduces MUX as a new destination for hosting and streaming rendered videos.
Enhancements
Breaking Changes
- #23: EndpointsAPI has been removed from the SDK
Full Changelog: v0.1.6...v0.2.0
Add new FPS settings and upgrade to PHP7.3 / Guzzle7.3
This release adds new FPS settings and upgrades PHP requirement to PHP7.3+. It also uses Guzzle7.3+.
This release fixes issue 20.
Feature update: merge fields, transformations, probe...
This update adds the following features:
- Merge fields
- Probe endpoint
- Gif loop repeat setting
- Transformations: rotate, flip, skew
- Get render querystring params
Fix Guzzle version to 7.2.0
Guzzle 7.3.0 introduces a breaking change after GuzzleHttp\Psr7\build_query()
was deprecated in favor of Query::build
.
This resulted in an error like:
PHP Fatal error: Uncaught Error: Call to undefined function GuzzleHttp\Psr7\build_query()
The SDK is generated by the OpenAPI Generator which still does not officially support Guzzle 7 and it's PHP template still uses build_query. Until this issue is fixed by the upstream provider we are locking the version of Guzzle to 7.2.0.
For more info see: OpenAPITools/openapi-generator#7869