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
7 changes: 0 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,6 @@ updates:
open-pull-requests-limit: 10
labels:
- Ruby
- package-ecosystem: gomod
directory: "/abstractions/go"
schedule:
interval: daily
open-pull-requests-limit: 10
labels:
- Go
- package-ecosystem: composer
directory: "/abstractions/php"
schedule:
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/abstractions-go.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/authentication-go-azure.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/http-go-nethttp.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/serialization-go-json.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/serialization-go-text.yml

This file was deleted.

4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added support for unstructured response generation (stream). [#546](https://github.com/microsoft/kiota/issues/546)

### Changed

- Moved go libraries to their own repository. [#370](https://github.com/microsoft/kiota/issues/370)
- Fixed a bug where the base url of the request adapter would be reset by the client(PHP). [#1469](https://github.com/microsoft/kiota/issues/1469)
- Fix issue where custom date types are never corrected for method parameters(PHP). #1474
- Fixed issue where custom date types are never corrected for method parameters(PHP). #1474
- Replace DateTimeOffset with DateTime for custom date types(PHP). #1474
- Fixed a bug where the base url of the request adapter would be reset by the client. [#1443](https://github.com/microsoft/kiota/issues/1443)
- Fixed a bug where request builder classes for collections endpoints would have a wrong name. #1052
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The following table provides an overview of the languages supported by Kiota and
| Language | Generation | Abstractions | Serialization | Authentication | HTTP | Required tools & dependencies |
| -------- | ---------- |--------------------------------|-----------------------------------------------------------------| -------------- | ---- | -------------- |
| CSharp | [✔](https://github.com/microsoft/kiota/projects/5) | [✔](https://github.com/microsoft/kiota-abstractions-dotnet) | [JSON](https://github.com/microsoft/kiota-serialization-json-dotnet), [TEXT](https://github.com/microsoft/kiota-serialization-text-dotnet) | [Anonymous](https://github.com/microsoft/kiota-abstractions-dotnet/blob/main/src/authentication/AnonymousAuthenticationProvider.cs), [Azure](https://github.com/microsoft/kiota-authentication-azure-dotnet) | [✔](https://github.com/microsoft/kiota-http-dotnet) | [link](https://microsoft.github.io/kiota/get-started/dotnet) |
| Go | [✔](https://github.com/microsoft/kiota/projects/8) | [✔](./abstractions/go) | [JSON](./serialization/go/json), [TEXT](./serialization/go/text) | [Anonymous](./abstractions/go/authentication/anonymous_authentication_provider.go), [Azure](./authentication/go/azure) | [✔](./http/go/nethttp) | [link](https://microsoft.github.io/kiota/get-started/go) |
| Go | [✔](https://github.com/microsoft/kiota/projects/8) | [✔](https://github.com/microsoft/kiota-abstractions-go) | [JSON](https://github.com/microsoft/kiota-serialization-json-go), [TEXT](https://github.com/microsoft/kiota-serialization-text-go) | [Anonymous](https://github.com/microsoft/kiota-abstractions-go/blob/main/authentication/anonymous_authentication_provider.go), [Azure](https://github.com/microsoft/kiota-authentication-azure-go/) | [✔](https://github.com/microsoft/kiota-http-go/) | [link](https://microsoft.github.io/kiota/get-started/go) |
| Java | [✔](https://github.com/microsoft/kiota/projects/7) | [✔](./abstractions/java) | [JSON](./serialization/java/json), [TEXT](./serialization/java/text) | [Anonymous](./abstractions/java/lib/src/main/java/com/microsoft/kiota/authentication/AnonymousAuthenticationProvider.java), [Azure](./authentication/java/azure) | [✔](./http/java/okhttp) | [link](https://microsoft.github.io/kiota/get-started/java) |
| PHP | [✔](https://github.com/microsoft/kiota/projects/4) | [✔](./abstractions/php) | [JSON](./serialization/php/json), [❌ TEXT](https://github.com/microsoft/kiota/issues/1405) | [Anonymous](./abstractions/php/src/Authentication/AnonymousAuthenticationProvider.php), [✔️ PHP League](./authentication/php/phpleague) | [✔](./http/php/guzzle) | |
| Python | [▶](https://github.com/microsoft/kiota/projects/3) | [✔](./abstractions/python) | [JSON](./serialization/python/json), [❌ TEXT](https://github.com/microsoft/kiota/issues/1406) | [Anonymous](./abstractions/python/kiota/abstractions/authentication/anonymous_authentication_provider.py), [Azure](./authentication/python/azure) | [✔](./http/python/requests) | |
Expand Down
2 changes: 1 addition & 1 deletion abstractions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Your project will need a reference to the abstraction package to build and run,

- [Dotnet](https://github.com/microsoft/kiota-abstractions-dotnet)
- [Java](./java)
- [Go](./go)
- [Go](https://github.com/microsoft/kiota-abstractions-go)
- [Ruby](./ruby/microsoft_kiota_abstractions)
- [TypeScript](https://github.com/microsoft/kiota-typescript/tree/main/packages/abstractions)
- [PHP](./php)
Expand Down
17 changes: 0 additions & 17 deletions abstractions/go/README.md

This file was deleted.

32 changes: 0 additions & 32 deletions abstractions/go/api_client_builder.go

This file was deleted.

129 changes: 0 additions & 129 deletions abstractions/go/api_client_builder_test.go

This file was deleted.

21 changes: 0 additions & 21 deletions abstractions/go/api_error.go

This file was deleted.

Loading