Skip to content

Commit

Permalink
Merge branch 'microsoft:elinor/add-kiota-workspace' into elinor/add-k…
Browse files Browse the repository at this point in the history
…iota-workspace
  • Loading branch information
sebastienlevert authored Jun 3, 2024
2 parents 6258833 + d3a2b11 commit 1fd3f7e
Show file tree
Hide file tree
Showing 15 changed files with 609 additions and 288 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Check out the repo
uses: actions/checkout@v4
- name: Login to GitHub package feed
uses: docker/login-action@v3.1.0
uses: docker/login-action@v3.2.0
with:
username: ${{ secrets.ACR_USERNAME }}
password: ${{ secrets.ACR_PASSWORD }}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added uri-form encoded serialization for PHP. [#2074](https://github.com/microsoft/kiota/issues/2074)
- Added information message with base URL in the CLI experience. [#4635](https://github.com/microsoft/kiota/issues/4635)
- Added optional parameter --disable-ssl-validation for generate, show, and download commands. [#4176](https://github.com/microsoft/kiota/issues/4176)
- For *Debug* builds of kiota, the `--log-level` / `--ll` option is now observed if specified explicitly on the command line. It still defaults to `Debug` for *Debug* builds and `Warning` for *Release* builds. [#4739](https://github.com/microsoft/kiota/pull/4739)

### Changed

Expand Down
14 changes: 7 additions & 7 deletions it/csharp/dotnet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.11.3" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.1" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.1.6" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.3.8" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.2.0" />
<PackageReference Include="Microsoft.kiota.Serialization.Multipart" Version="1.1.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.1.4" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.3" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.1.7" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.2.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.3.3" />
<PackageReference Include="Microsoft.kiota.Serialization.Multipart" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.2.2" />

<Compile Remove="basic\**" />
</ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions it/python/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pytest==8.2.1

pytest-asyncio==0.23.7

requests==2.32.2 ; python_version >= '3.7'
requests==2.32.3 ; python_version >= '3.7'

toml==0.10.2

Expand All @@ -64,13 +64,13 @@ wrapt==1.15.0 ; python_version < '3.11'

yapf==0.40.2

zipp==3.18.2 ; python_version >= '3.7'
zipp==3.19.0 ; python_version >= '3.7'

aiohttp==3.9.5 ; python_version >= '3.6'

aiosignal==1.3.1 ; python_version >= '3.7'

anyio==4.3.0 ; python_version >= '3.7'
anyio==4.4.0 ; python_version >= '3.7'

async-timeout==4.0.3 ; python_version >= '3.6'

Expand Down
Loading

0 comments on commit 1fd3f7e

Please sign in to comment.