Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"packages/abstractions": "1.6.2",
"packages/authentication/azure": "1.6.2",
"packages/http/httpx": "1.6.2",
"packages/serialization/json": "1.6.2",
"packages/serialization/form": "1.6.2",
"packages/serialization/text": "1.6.2",
"packages/serialization/multipart": "1.6.2",
"packages/bundle": "1.6.2"
"packages/abstractions": "1.6.3",
"packages/authentication/azure": "1.6.3",
"packages/http/httpx": "1.6.3",
"packages/serialization/json": "1.6.3",
"packages/serialization/form": "1.6.3",
"packages/serialization/text": "1.6.3",
"packages/serialization/multipart": "1.6.3",
"packages/bundle": "1.6.3"
}
7 changes: 7 additions & 0 deletions packages/abstractions/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.3](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-abstractions-v1.6.2...microsoft-kiota-abstractions-v1.6.3) (2024-12-02)


### Miscellaneous Chores

* **microsoft-kiota-abstractions:** Synchronize microsoft-kiota versions

## [1.6.2](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-abstractions-v1.6.1...microsoft-kiota-abstractions-v1.6.2) (2024-11-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/abstractions/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "microsoft-kiota-abstractions"
version = "1.6.2"
version = "1.6.3"
description = "Core abstractions for kiota generated libraries in Python"
authors = ["Microsoft <graphtooling+python@microsoft.com>"]
license = "MIT"
Expand Down
7 changes: 7 additions & 0 deletions packages/authentication/azure/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.3](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-authentication-azure-v1.6.2...microsoft-kiota-authentication-azure-v1.6.3) (2024-12-02)


### Miscellaneous Chores

* **microsoft-kiota-authentication-azure:** Synchronize microsoft-kiota versions

## [1.6.2](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-authentication-azure-v1.6.1...microsoft-kiota-authentication-azure-v1.6.2) (2024-11-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/azure/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "microsoft-kiota-authentication-azure"
version = "1.6.2"
version = "1.6.3"
description = "Core abstractions for kiota generated libraries in Python"
authors = ["Microsoft <graphtooling+python@microsoft.com>"]
license = "MIT"
Expand Down
7 changes: 7 additions & 0 deletions packages/bundle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.6.3](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-bundle-v1.6.2...microsoft-kiota-bundle-v1.6.3) (2024-12-02)


### Miscellaneous Chores

* **microsoft-kiota-bundle:** Synchronize microsoft-kiota versions

## [1.6.2](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-bundle-v1.6.1...microsoft-kiota-bundle-v1.6.2) (2024-11-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/bundle/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "microsoft-kiota-bundle"
version = "1.6.2"
version = "1.6.3"
description = "Bundle package for kiota generated libraries in Python"
authors = ["Microsoft <graphtooling+python@microsoft.com>"]
license = "MIT"
Expand Down
9 changes: 9 additions & 0 deletions packages/http/httpx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.3](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-http-v1.6.2...microsoft-kiota-http-v1.6.3) (2024-12-02)


### Bug Fixes

* Ensure calculated retry delay validated against correct maximum value of 180 secs ([886f28e](https://github.com/microsoft/kiota-python/commit/886f28e47e38831c3cb55da2e790d73f81d33181))
* Ensures retry count is incremented based on value in retry-attempt header ([c655fa2](https://github.com/microsoft/kiota-python/commit/c655fa253294bf3b8f65be1b991a93ce0890a46a))
* Fixes retry handler exponential back-off to consider the delay specified in the retry handler option ([fd87c67](https://github.com/microsoft/kiota-python/commit/fd87c67d599add9e59f48db76a23dd367376b3e1))

## [1.6.2](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-http-v1.6.1...microsoft-kiota-http-v1.6.2) (2024-11-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/http/httpx/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "microsoft-kiota-http"
version = "1.6.2"
version = "1.6.3"
description = "Core abstractions for kiota generated libraries in Python"
authors = ["Microsoft <graphtooling+python@microsoft.com>"]
license = "MIT"
Expand Down
7 changes: 7 additions & 0 deletions packages/serialization/form/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [1.6.3](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-serialization-form-v1.6.2...microsoft-kiota-serialization-form-v1.6.3) (2024-12-02)


### Miscellaneous Chores

* **microsoft-kiota-serialization-form:** Synchronize microsoft-kiota versions

## [1.6.2](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-serialization-form-v1.6.1...microsoft-kiota-serialization-form-v1.6.2) (2024-11-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/serialization/form/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "microsoft-kiota-serialization-form"
version = "1.6.2"
version = "1.6.3"
description = "Core abstractions for kiota generated libraries in Python"
authors = ["Microsoft <graphtooling+python@microsoft.com>"]
license = "MIT"
Expand Down
7 changes: 7 additions & 0 deletions packages/serialization/json/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.3](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-serialization-json-v1.6.2...microsoft-kiota-serialization-json-v1.6.3) (2024-12-02)


### Miscellaneous Chores

* **microsoft-kiota-serialization-json:** Synchronize microsoft-kiota versions

## [1.6.2](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-serialization-json-v1.6.1...microsoft-kiota-serialization-json-v1.6.2) (2024-11-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/serialization/json/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "microsoft-kiota-serialization-json"
version = "1.6.2"
version = "1.6.3"
description = "Core abstractions for kiota generated libraries in Python"
authors = ["Microsoft <graphtooling+python@microsoft.com>"]
license = "MIT"
Expand Down
7 changes: 7 additions & 0 deletions packages/serialization/multipart/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [1.6.3](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-serialization-multipart-v1.6.2...microsoft-kiota-serialization-multipart-v1.6.3) (2024-12-02)


### Miscellaneous Chores

* **microsoft-kiota-serialization-multipart:** Synchronize microsoft-kiota versions

## [1.6.2](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-serialization-multipart-v1.6.1...microsoft-kiota-serialization-multipart-v1.6.2) (2024-11-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/serialization/multipart/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "microsoft-kiota-serialization-multipart"
version = "1.6.2"
version = "1.6.3"
description = "Core abstractions for kiota generated libraries in Python"
authors = ["Microsoft <graphtooling+python@microsoft.com>"]
license = "MIT"
Expand Down
7 changes: 7 additions & 0 deletions packages/serialization/text/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.3](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-serialization-text-v1.6.2...microsoft-kiota-serialization-text-v1.6.3) (2024-12-02)


### Miscellaneous Chores

* **microsoft-kiota-serialization-text:** Synchronize microsoft-kiota versions

## [1.6.2](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-serialization-text-v1.6.1...microsoft-kiota-serialization-text-v1.6.2) (2024-11-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/serialization/text/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "microsoft-kiota-serialization-text"
version = "1.6.2"
version = "1.6.3"
description = "Core abstractions for kiota generated libraries in Python"
authors = ["Microsoft <graphtooling+python@microsoft.com>"]
license = "MIT"
Expand Down
Loading