Skip to content

Releases: abraham/twitteroauth

8.2.0

Choose a tag to compare

@abraham abraham released this 24 Jun 04:09
Immutable release. Only release title and notes can be modified.
d7a58e9
  • Consistent file validation between chunked/unchunked media upload methods

8.1.1

Choose a tag to compare

@abraham abraham released this 18 Jan 23:31
95da0d4
  • Remove missed curl_close

8.1.0

Choose a tag to compare

@abraham abraham released this 20 Nov 23:06
f8aabdb
  • Support PHP 8.5

8.0.0

Choose a tag to compare

@abraham abraham released this 17 Nov 05:20
588e6f2
  • Drop support for PHP 8.1
  • Switch to x.com domain
  • Replace VCR with dependency injection

7.1.0

Choose a tag to compare

@abraham abraham released this 17 Nov 02:35
5fad27a
  • Update dependencies
  • Improve typing
  • Stop calling curl_close

7.0.0

Choose a tag to compare

@abraham abraham released this 11 Feb 18:59
a862268

Change the third argument of callers from a boolean to an array

+ $connection->post("tweets", ["text" => $text], ['jsonPayload' => true]);
- $connection->post("tweets", ["text" => $text], true);
$connection->upload( 
  'media/upload',
  ['media' => $file_path, 'media_type' => 'video/mp4'],
+   ['chunkedUpload' => true],
-   true
);

6.2.0

Choose a tag to compare

@abraham abraham released this 28 Oct 20:21
e6fc2e0
  • Expand PHP 8 support

6.1.0

Choose a tag to compare

@abraham abraham released this 08 Aug 03:21
20efddf

Default v2 to JSON payload

6.0.0

Choose a tag to compare

@abraham abraham released this 24 Jul 13:43
233bd80

Default to Twitter API v2.

For v1 APIs you can switch back using:

$connection->setApiVersion('1.1');

5.0.0

Choose a tag to compare

@abraham abraham released this 17 Jan 01:16
6a68a5e

Require PHP 8