Skip to content

Releases: keboola/storage-api-php-client

10.1.1

29 Mar 19:22
Compare
Choose a tag to compare

Works with Symfony V4 projects

10.1.0

29 Mar 19:24
1efbba8
Compare
Choose a tag to compare

Works with Symfony V4 projects

10.0.1

27 Feb 06:43
Compare
Choose a tag to compare
  • Fixed client version in user agent

10.0.0

26 Feb 12:52
Compare
Choose a tag to compare

New Features

  • Configurable job polling delay. New parameter jobPollRetryDelay - callable method which determines wait period for job polling

BC Breaks

  • Deprecated rollbackTableFromSnapshot method removed
  • Removed maxJobPollWaitPeriodSeconds parameter. Replaced by new jobPollRetryDelay.

Migration

If you were using maxJobPollWaitPeriodSeconds parameter, you can migrate:

$client = new Client([
    'token' => STORAGE_API_TOKEN,
    'url' => STORAGE_API_URL,
    'maxJobPollWaitPeriodSeconds' => 1,
]);

To new jobPollRetryDelay parameter:

$client = new Client([
    'token' => STORAGE_API_TOKEN,
    'url' => STORAGE_API_URL,
    'jobPollRetryDelay' => createSimpleJobPollDelay(1),
]);

9.0.0

23 Feb 08:13
Compare
Choose a tag to compare
  • BC Break - Removed support of indexed columns. Deprecated methods markTableColumnAsIndexed and removeTableColumnFromIndexed removed.

8.0.2

17 Feb 10:28
2478807
Compare
Choose a tag to compare
  • Fixed download response to file #183

8.0.1

30 Jan 13:46
Compare
Choose a tag to compare

Bugfixes

  • Fixed endpoint resolution

8.0.0

24 Jan 12:57
Compare
Choose a tag to compare

BC Breaks

  • Client url parameter is required
  • Removed deprecated BucketCredentials support

Features

  • Snowflake time travel support createTableFromSourceTableAtTimestamp

7.3.0

30 Nov 12:15
Compare
Choose a tag to compare

Features

  • FileUploadTransferOptions - configurable max retries per chunk count

Fixes

  • File Uploads - make sure, that multipartUploadThreshold cannot be set to 0 
  • File Uploads - check the file size and for empty file perform a direct putObject #164