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
39 changes: 27 additions & 12 deletions .azure-pipelines/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ parameters:
os: "windows"
image: "windows-latest"
pool: Azure-Pipelines-1ESPT-ExDShared
- architecture: "win-arm64"
jobPrefix: "win_arm64"
os: "windows"
image: windows-2022-arm64
pool: 1es-windows-latest-arm
# arm64 is not currently available in the shared pool
hostArchitecture: "arm64"
- architecture: "linux-x64"
jobPrefix: "linux_x64"
os: "linux"
Expand Down Expand Up @@ -380,6 +387,8 @@ extends:
name: ${{ distribution.pool }}
os: ${{ distribution.os }}
image: ${{ distribution.image }}
${{ if eq(distribution.hostArchitecture, 'arm64') }}:
hostArchitecture: ${{ distribution.hostArchitecture }}
templateContext:
sdl:
baseline:
Expand All @@ -404,6 +413,11 @@ extends:
inputs:
version: 9.x

- script: dotnet tool install --global PowerShell
displayName: "Install PowerShell"
condition: and(succeeded(), eq('${{ distribution.hostArchitecture }}', 'arm64'))
# powershell is not installed by default on arm64 images

- pwsh: |
Copy-Item $(Build.ArtifactStagingDirectory)/AppSettings/appsettings.json $(Build.SourcesDirectory)/src/kiota/appsettings.json -Force -Verbose
displayName: Copy the appsettings.json
Expand Down Expand Up @@ -690,6 +704,7 @@ extends:
[
win_x64_build_binaries,
win_x86_build_binaries,
win_arm64_build_binaries,
linux_x64_build_binaries,
linux_arm64_build_binaries,
osx_x64_build_binaries,
Expand Down Expand Up @@ -1059,18 +1074,18 @@ extends:
versionSpec: "20.x"
- task: EsrpRelease@7
inputs:
connectedservicename: 'Federated DevX ESRP Managed Identity Connection'
keyvaultname: 'akv-prod-eastus'
authcertname: 'ReferenceLibraryPrivateCert'
signcertname: 'ReferencePackagePublisherCertificate'
clientid: '65035b7f-7357-4f29-bf25-c5ee5c3949f8'
intent: 'PackageDistribution'
contenttype: 'npm'
contentsource: 'Folder'
folderlocation: '$(Pipeline.Workspace)/npm-package/'
connectedservicename: "Federated DevX ESRP Managed Identity Connection"
keyvaultname: "akv-prod-eastus"
authcertname: "ReferenceLibraryPrivateCert"
signcertname: "ReferencePackagePublisherCertificate"
clientid: "65035b7f-7357-4f29-bf25-c5ee5c3949f8"
intent: "PackageDistribution"
contenttype: "npm"
contentsource: "Folder"
folderlocation: "$(Pipeline.Workspace)/npm-package/"
waitforreleasecompletion: true
owners: $(NPM_OWNERS_LIST)
approvers: $(NPM_APPROVERS_LIST)
serviceendpointurl: 'https://api.esrp.microsoft.com'
mainpublisher: 'ESRPRELPACMAN'
domaintenantid: 'cdc5aeea-15c5-4db6-b079-fcadd2505dc2'
serviceendpointurl: "https://api.esrp.microsoft.com"
mainpublisher: "ESRPRELPACMAN"
domaintenantid: "cdc5aeea-15c5-4db6-b079-fcadd2505dc2"
7 changes: 6 additions & 1 deletion .github/workflows/build-vscode-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,19 @@ jobs:
test_and_generate_binaries:
needs: [checksecret]
strategy:
fail-fast: false
matrix:
binaries:
- architecture: win-x64
os: windows-latest
- architecture: win-arm64
os: windows-11-arm #preview image
- architecture: linux-x64
os: ubuntu-latest
- architecture: linux-arm64
os: ubuntu-24.04-arm #preview image
- architecture: osx-arm64
os: macOS-latest
os: macOS-latest
runs-on: ${{ matrix.binaries.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest, windows-11-arm, ubuntu-24.04-arm]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Added support for windows arm64. [#6427](https://github.com/microsoft/kiota/issues/6427)

### Changed

- Fixed a bug where having `additionalProperties` schema (instead of true) would not generate `AdditionalData` property. [#6443](https://github.com/microsoft/kiota/issues/6443)
Expand All @@ -29,12 +31,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [1.25.1] - 2025-04-03

### Changed

- Fixed a bug with http client generation where query parameters were being processed incorrectly. [#6268](https://github.com/microsoft/kiota/issues/6268)

### Added

- Extracted and created an npm package from the VS Code - Kiota interop module. [#6172](https://github.com/microsoft/kiota/pull/6172)

- Added support for generating function capabilities in plugin manifest from x-ai-capabilities OpenApi extension. [#6369](https://github.com/microsoft/kiota/issues/6369)
- Added support for generating function capabilities in plugin manifest from x-ai-capabilities OpenApi extension. [#6369](https://github.com/microsoft/kiota/issues/6369)

- Added a comment on top of every golang file to indicate the file is machine generated so it can be excluded from various tools. [#6363](https://github.com/microsoft/kiota/issues/6363)

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

- Initial GitHub release



4 changes: 4 additions & 0 deletions vscode/npm-package/runtime.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"platformId": "win-x86",
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"platformId": "win-arm64",
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"platformId": "linux-x64",
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
Expand Down
Loading