Skip to content

Commit e288a5e

Browse files
Bumped versions
1 parent 4759512 commit e288a5e

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ CHANGE LOG
22
==========
33

44

5+
## V4.4 (UPCOMING)
6+
7+
* Added support for `psr/http-message` v2
8+
9+
510
## V4.3 (27/02/2023)
611

712
* Added PHP 8.2 support

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ This version supports [PHP](https://php.net) 7.4-8.2. To get started, simply req
2828
### Standard Installation
2929

3030
```bash
31-
$ composer require "bitbucket/client:^4.3" \
32-
"guzzlehttp/guzzle:^7.5" "http-interop/http-factory-guzzle:^1.2"
31+
$ composer require "bitbucket/client:^4.4" \
32+
"guzzlehttp/guzzle:^7.5.1" "http-interop/http-factory-guzzle:^1.2"
3333
```
3434

3535
### Framework Integration
@@ -45,7 +45,7 @@ We are decoupled from any HTTP messaging client by using [PSR-7](https://www.php
4545

4646
## Usage
4747

48-
The main point of entry is the `Bitbucket\Client` class. Simply create a new instance of that, authenticate, and you're good to go! As of time of writing (Tuesday 29th June 2020), every endpoint (excluding issue export and import, and various deprecated endpoints) available on the Bitbucket API 2.0 is also available through this PHP client. We'd recommend looking through the [Bitbucket documentation](https://developer.atlassian.com/bitbucket/api/2/reference/), and also the [source code](https://github.com/BitbucketPHP/Client/tree/3.0/src) to get a full picture of what is available to use.
48+
The main point of entry is the `Bitbucket\Client` class. Simply create a new instance of that, authenticate, and you're good to go! As of time of writing (Tuesday 29th June 2020), every endpoint (excluding issue export and import, and various deprecated endpoints) available on the Bitbucket API 2.0 is also available through this PHP client. We'd recommend looking through the [Bitbucket documentation](https://developer.atlassian.com/cloud/bitbucket/rest/intro/), and also the [source code](https://github.com/BitbucketPHP/Client/tree/4.4/src) to get a full picture of what is available to use.
4949

5050
### Authentication
5151

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@
1313
"require": {
1414
"php": "^7.4.15 || ^8.0.2",
1515
"ext-json": "*",
16-
"php-http/cache-plugin": "^1.7.5",
17-
"php-http/client-common": "^2.6",
18-
"php-http/discovery": "^1.15",
19-
"php-http/httplug": "^2.3",
20-
"php-http/multipart-stream-builder": "^1.2",
16+
"php-http/cache-plugin": "^1.8",
17+
"php-http/client-common": "^2.6.1",
18+
"php-http/discovery": "^1.17",
19+
"php-http/httplug": "^2.4",
20+
"php-http/multipart-stream-builder": "^1.3",
2121
"psr/cache": "^1.0 || ^2.0 || ^3.0",
2222
"psr/http-client-implementation": "^1.0",
2323
"psr/http-factory-implementation": "^1.0",
24-
"psr/http-message": "^1.0",
24+
"psr/http-message": "^1.1 || ^2.0",
2525
"symfony/polyfill-php80": "^1.26"
2626
},
2727
"require-dev": {
2828
"bamarni/composer-bin-plugin": "^1.8.2",
29-
"guzzlehttp/guzzle": "^7.5",
29+
"guzzlehttp/guzzle": "^7.5.1",
3030
"http-interop/http-factory-guzzle": "^1.2",
3131
"php-http/mock-client": "^1.5"
3232
},

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class Client
7676
*
7777
* @var string
7878
*/
79-
private const USER_AGENT = 'bitbucket-php-api-client/4.2';
79+
private const USER_AGENT = 'bitbucket-php-api-client/4.4';
8080

8181
/**
8282
* The HTTP client builder.

0 commit comments

Comments
 (0)