Skip to content

Releases: shotstack/shotstack-sdk-php

Sync SDK with latest APIs and features

20 May 06:28
Compare
Choose a tag to compare

This update adds all the latest API's that we've been working on for the last year including Create API and Ingest API. Plus a whole bunch of new features.

Fix FPS strict type bug

03 Oct 00:54
750da91
Compare
Choose a tag to compare

Fixes a bug with FPS responses caused by strict type checking.

Fix slideLeftSlow effect typo

09 Mar 01:25
96e6168
Compare
Choose a tag to compare

Fixes a capital letter typo in the slideLeftSlow effect.

Add S3 destination, volume effects and update readme

05 Dec 12:22
6924f47
Compare
Choose a tag to compare

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

15 Aug 12:02
40f20e9
Compare
Choose a tag to compare

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

01 Jul 02:10
6bc9a81
Compare
Choose a tag to compare

Adds the ability to create and manage templates for faster video editing capabilities

Enhancements

  • #25: Add templates to SDK

Add Mux destination

03 Jun 04:09
c19c48d
Compare
Choose a tag to compare

Introduces MUX as a new destination for hosting and streaming rendered videos.

Enhancements

  • #22: Update readme
  • #23: Added MUX as an output destination option

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

12 Mar 02:07
47c00c3
Compare
Choose a tag to compare

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...

04 Nov 07:01
6dd443b
Compare
Choose a tag to compare

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

22 Sep 06:06
4181be0
Compare
Choose a tag to compare

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