Skip to content

Commit 3be605d

Browse files
author
Andrew Omondi
committed
Update changelogs
1 parent b488ee3 commit 3be605d

3 files changed

Lines changed: 23 additions & 19 deletions

File tree

.vscode/launch.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
// Use IntelliSense to find out which attributes exist for C# debugging
66
// Use hover for the description of the existing attributes
77
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
8-
"name": ".NET Core Launch (console)",
8+
"name": "Test - Abstractions",
99
"type": "coreclr",
1010
"request": "launch",
1111
"preLaunchTask": "build",
1212
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceFolder}/Microsoft.Kiota.Abstractions.Tests/bin/Debug/net8.0/Microsoft.Kiota.Abstractions.Tests.dll",
13+
"program": "${workspaceFolder}/tests/abstractions/bin/Debug/net8.0/Microsoft.Kiota.Abstractions.Tests.dll",
1414
"args": [],
15-
"cwd": "${workspaceFolder}/Microsoft.Kiota.Abstractions.Tests",
15+
"cwd": "${workspaceFolder}",
1616
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
1717
"console": "internalConsole",
1818
"stopAtEntry": false
@@ -23,4 +23,4 @@
2323
"request": "attach"
2424
}
2525
]
26-
}
26+
}

CHANGELOG.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [1.9.8] - 2024-07-08
1111

12-
- Migrated source of various libraries to mono repository at <https://github.com/microsoft/kiota-dotnet>
12+
- Migrated source of various libraries to mono repository at <https://github.com/microsoft/kiota-dotnet>.
1313

14-
Please refer to the following for earlier releases of libraries in the project.
14+
Refer to the following for earlier releases of libraries in the project.
1515

16-
| Library |
17-
| ------ |
18-
| [Abstractions](./src/abstractions/Changelog-old.md) |
19-
| [Authentication - Azure](./src/authentication/azure/Changelog-old.md) |
20-
| [Http - HttpClientLibrary](./src/http/httpClient/Changelog-old.md) |
21-
| [Serialization - JSON](./src/serialization/json/Changelog-old.md) |
22-
| [Serialization - FORM](./src/serialization/form/Changelog-old.md) |
23-
| [Serialization - TEXT](./src/serialization/text/Changelog-old.md) |
24-
| [Serialization - MULTIPART](./src/serialization/multipart/Changelog-old.md) |
16+
1. [Abstractions](./src/abstractions/Changelog-old.md)
17+
1. [Authentication - Azure](./src/authentication/azure/Changelog-old.md)
18+
1. [Http - HttpClientLibrary](./src/http/httpClient/Changelog-old.md)
19+
1. [Serialization - JSON](./src/serialization/json/Changelog-old.md)
20+
1. [Serialization - FORM](./src/serialization/form/Changelog-old.md)
21+
1. [Serialization - TEXT](./src/serialization/text/Changelog-old.md)
22+
1. [Serialization - MULTIPART](./src/serialization/multipart/Changelog-old.md)

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Kiota Libraries for dotnet
22

3-
[![Build, Test, CodeQl](https://github.com/microsoft/kiota-abstractions-dotnet/actions/workflows/build-and-test.yml/badge.svg?branch=main)](https://github.com/microsoft/kiota-abstractions-dotnet/actions/workflows/build-and-test.yml)
4-
5-
The Kiota abstractions libraries define the basic constructs Kiota projects need once an SDK has been generated from an OpenAPI definition.
3+
The Kiota abstractions libraries define the basic constructs for Kiota projects needed once an SDK has been generated from an OpenAPI definition.
64

7-
A [Kiota](https://github.com/microsoft/kiota) generated project will need a reference to the libraries to build and run by providing default implementations for serialization and http transport.
5+
A [Kiota](https://github.com/microsoft/kiota) generated project will need a reference to the libraries to build and execute by providing default implementations for serialization, authentication and http transport.
86

97
Read more about Kiota [here](https://github.com/microsoft/kiota/blob/main/README.md).
108

9+
## Build Status
10+
11+
[![Build, Test, CodeQl](https://github.com/microsoft/kiota-abstractions-dotnet/actions/workflows/build-and-test.yml/badge.svg?branch=main)](https://github.com/microsoft/kiota-abstractions-dotnet/actions/workflows/build-and-test.yml)
12+
1113
## Libraries
1214

1315
| Library | Nuget Release |
@@ -20,6 +22,10 @@ Read more about Kiota [here](https://github.com/microsoft/kiota/blob/main/README
2022
| [Serialization - TEXT](./src/serialization/text/README.md) | [![NuGet Version](https://buildstats.info/nuget/Microsoft.Kiota.Serialization.Text?includePreReleases=true)](https://www.nuget.org/packages/Microsoft.Kiota.Serialization.Text/) |
2123
| [Serialization - MULTIPART](./src/serialization/multipart/README.md) | [![NuGet Version](https://buildstats.info/nuget/Microsoft.Kiota.Serialization.Multipart?includePreReleases=true)](https://www.nuget.org/packages/Microsoft.Kiota.Serialization.Multipart/) |
2224

25+
## Release notes
26+
27+
The Kiota Libraries releases notes are available from [Roadmap](CHANGELOG.md)
28+
2329
## Debugging
2430

2531
If you are using Visual Studio Code as your IDE, the **launch.json** file already contains the configuration to build and test the library. Otherwise, you can open the **Microsoft.Kiota.sln** with Visual Studio.

0 commit comments

Comments
 (0)