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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.17.0"
".": "0.18.0"
}
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ 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).

## [0.18.0](https://github.com/microsoft/kiota-ruby/compare/v0.17.0...v0.18.0) (2026-08-24)


### Features

* add composed types support (union/intersection) ([039b8ae](https://github.com/microsoft/kiota-ruby/commit/039b8ae312265200a3038d9bdffc8640b8fb5ccb))
* add composed types support (union/intersection) ([4907000](https://github.com/microsoft/kiota-ruby/commit/4907000b2444deeaff227ca6216ab73bd3e9c428))
* add workflow_dispatch trigger to all workflows ([e7ec34e](https://github.com/microsoft/kiota-ruby/commit/e7ec34e12163689550c84dafe336ead7f37fe3b1))
* move Ruby libraries to a monorepo ([f4cf832](https://github.com/microsoft/kiota-ruby/commit/f4cf832c141df83ed23638cfa2531a976f9fe8c9))
* Switch to monorepo ([d83796d](https://github.com/microsoft/kiota-ruby/commit/d83796d31d67005d96b81295e3181a2ce032475a))
* upgrade ruby CI matrix to 3.3, 3.4 and 4.0 ([b8ae278](https://github.com/microsoft/kiota-ruby/commit/b8ae2789b67ec2f4a8d92af233dea81bdf46b803))
* upgrade ruby CI matrix to 3.3, 3.4 and 4.0 ([2ab5a2e](https://github.com/microsoft/kiota-ruby/commit/2ab5a2e454ac0da738a6e70daf85834a94e281ec))


### Bug Fixes

* anonymous authentication provider did not return a fiber resulting in a failure ([29b9d31](https://github.com/microsoft/kiota-ruby/commit/29b9d31003d787e453c39ec9c039bf575f599463))
* update minimum required ruby version to 3.3.0 ([26e398e](https://github.com/microsoft/kiota-ruby/commit/26e398eb42b82b5ca86fa51088f55e1dd5edfdab))
* update minimum required ruby version to 3.3.0 ([da96f19](https://github.com/microsoft/kiota-ruby/commit/da96f1934b4ae16dac85a8e3ac0a9133da6ef1a0))
* use VERSION constant for abstractions dependency in downstream gemspecs ([dc5c71c](https://github.com/microsoft/kiota-ruby/commit/dc5c71c82adc49b7002b269e9b62e6dc2fdf0103))
* use VERSION constant for abstractions dependency in downstream gemspecs ([3327913](https://github.com/microsoft/kiota-ruby/commit/33279138f3d7a566e676e8d4d92c69b411d209cd))

## [0.16.0](https://github.com/microsoft/kiota-abstractions-ruby/compare/v0.15.1...v0.16.0) (2026-08-19)


Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module MicrosoftKiotaAbstractions
VERSION = '0.17.0' # x-release-please-version
VERSION = '0.18.0' # x-release-please-version
end
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module MicrosoftKiotaAuthenticationOAuth
VERSION = '0.17.0' # x-release-please-version
VERSION = '0.18.0' # x-release-please-version
end
2 changes: 1 addition & 1 deletion components/http/lib/microsoft_kiota_faraday/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module MicrosoftKiotaFaraday
VERSION = '0.17.0' # x-release-please-version
VERSION = '0.18.0' # x-release-please-version
end
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module MicrosoftKiotaSerializationJson
VERSION = '0.17.0' # x-release-please-version
VERSION = '0.18.0' # x-release-please-version
end
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.17.0
0.18.0
Loading