Skip to content

Commit

Permalink
Merge branch 'main' into task/extension/remove-kiota-interop-tight-co…
Browse files Browse the repository at this point in the history
…upling
  • Loading branch information
thewahome committed Feb 27, 2025
2 parents 21e65ca + 7976e7e commit b9d79ca
Show file tree
Hide file tree
Showing 109 changed files with 5,585 additions and 4,041 deletions.
5 changes: 4 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,7 @@ dotnet_diagnostic.CA1302.severity = none
dotnet_diagnostic.CA1707.severity = none
dotnet_diagnostic.CA1720.severity = none
dotnet_diagnostic.CA2007.severity = none
dotnet_diagnostic.CA2227.severity = none
dotnet_diagnostic.CA2227.severity = none

[*.csproj]
indent_size = 2
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ updates:
kiota-dependencies:
patterns:
- "*kiota*"
OpenTelemetry:
patterns:
- "OpenTelemetry.*"
- "Azure.Monitor.OpenTelemetry.Exporter"
- package-ecosystem: github-actions
directory: "/"
schedule:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build image
uses: docker/build-push-action@v6.14.0
uses: docker/build-push-action@v6.15.0
with:
push: false
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
- name: Push to GitHub Packages - Nightly
if: contains(github.ref, env.PREVIEW_BRANCH)
uses: docker/build-push-action@v6.14.0
uses: docker/build-push-action@v6.15.0
with:
push: true
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
Expand All @@ -104,7 +104,7 @@ jobs:
# we can't get the sequence number from ADO so we default it back to github run number
- name: Push to GitHub Packages - Release
if: contains(github.ref, 'refs/tags/v')
uses: docker/build-push-action@v6.14.0
uses: docker/build-push-action@v6.15.0
with:
push: true
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
Expand Down
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Added support for OpenAPI 3.1. [#3914](https://github.com/microsoft/kiota/issues/3914)

### Changed

- Fixed mapping of Binary Types to array buffer in TypeScript. [#6124](https://github.com/microsoft/kiota/issues/6124)
- Updated kiota generate classname flag validator to prevent invalid class names. [#6187](https://github.com/microsoft/kiota/issues/6187)
- Fixed enum serialization for union and intersection types in Dart. [#6201](https://github.com/microsoft/kiota/pull/6201)
- Added mapping for Bundle package in PHP to show up in Kiota commands. [#4636](https://github.com/microsoft/kiota/issues/4636)

## [1.23.0] - 2025-02-06

Expand All @@ -35,7 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fixed a bug in the VS Code extension deeplink with the API Center extension [#6004](https://github.com/microsoft/kiota/issues/6004)
- Drops Python 3.8 support by removing deprecated type aliases from generated code. [microsoft/kiota-python#349](https://github.com/microsoft/kiota-python/issues/349)
- Removes superfluous inline imports in serializer methods in Python Generation.
- Removes superfluous inline imports in serializer methods in Python Generation.

## [1.22.2]

Expand Down Expand Up @@ -1570,5 +1575,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- Initial GitHub release


2 changes: 1 addition & 1 deletion it/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<kiota-java.version>1.8.3</kiota-java.version>
<kiota-java.version>1.8.4</kiota-java.version>
</properties>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions it/python/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ importlib-metadata==6.8.0 ; python_version >= '3.7'

iniconfig==2.0.0 ; python_version >= '3.7'

isort==6.0.0
isort==6.0.1

lazy-object-proxy==1.10.0 ; python_version >= '3.7'

Expand Down Expand Up @@ -66,7 +66,7 @@ yapf==0.43.0

zipp==3.21.0 ; python_version >= '3.7'

aiohttp==3.11.12 ; python_version >= '3.6'
aiohttp==3.11.13 ; python_version >= '3.6'

aiosignal==1.3.2 ; python_version >= '3.7'

Expand Down
Loading

0 comments on commit b9d79ca

Please sign in to comment.