Skip to content

Commit

Permalink
Merge pull request #109 from microsoft/dev
Browse files Browse the repository at this point in the history
Release 1.0.0 🚀
  • Loading branch information
Ndiritu authored Nov 1, 2023
2 parents 5a955ce + 61029d2 commit 677dc5b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [1.0.0] - 2023-11-01

### Changed
- Deserializing collections of objects to return a non-nullable value within the collection. [#106](https://github.com/microsoft/kiota-abstractions-php/pull/106)
- Bump OpenTelemetry SDK dependency to stable 1.0.0. [#106](https://github.com/microsoft/kiota-abstractions-php/pull/106)

## [0.9.1] - 2023-10-31

### Changed
Expand Down
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@
"php": "^7.4 || ^8.0",
"php-http/promise": "^1.2.0",
"doctrine/annotations": "^1.13 || ^2.0",
"open-telemetry/sdk": "^0.0.17",
"open-telemetry/api": "^0.0.17",
"open-telemetry/sdk": "^1.0.0",
"ramsey/uuid": "^3 || ^4",
"stduritemplate/stduritemplate": "^0.0.44 || ^0.0.46",
"stduritemplate/stduritemplate": "^0.0.46",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

final class Constants
{
public const VERSION = '0.9.1';
public const VERSION = '1.0.0';
}
2 changes: 1 addition & 1 deletion src/ObservabilityOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Microsoft\Kiota\Abstractions;

use OpenTelemetry\API\Common\Instrumentation\Globals;
use OpenTelemetry\API\Globals;
use OpenTelemetry\API\Trace\TracerInterface;

class ObservabilityOptions implements RequestOption
Expand Down
2 changes: 1 addition & 1 deletion src/RequestAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function getParseNodeFactory(): ParseNodeFactory;
* @param RequestInformation $requestInfo the request info to execute.
* @param array{class-string<T>,string} $targetCallable the callable representing object creation logic.
* @param array<string, array{class-string<V>, string}>|null $errorMappings
* @return Promise<array<T|null>|null> with the deserialized response model collection.
* @return Promise<array<T>|null> with the deserialized response model collection.
*/
public function sendCollectionAsync(
RequestInformation $requestInfo,
Expand Down

0 comments on commit 677dc5b

Please sign in to comment.