Skip to content

Commit 0406c76

Browse files
authored
Merge pull request #1479 from microsoft/feature/go-move
go libs move
2 parents ada6b74 + 5694478 commit 0406c76

File tree

88 files changed

+38
-5656
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+38
-5656
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,6 @@ updates:
2424
open-pull-requests-limit: 10
2525
labels:
2626
- Ruby
27-
- package-ecosystem: gomod
28-
directory: "/abstractions/go"
29-
schedule:
30-
interval: daily
31-
open-pull-requests-limit: 10
32-
labels:
33-
- Go
3427
- package-ecosystem: composer
3528
directory: "/abstractions/php"
3629
schedule:

.github/workflows/abstractions-go.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/authentication-go-azure.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/http-go-nethttp.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/serialization-go-json.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/serialization-go-text.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
- Added support for unstructured response generation (stream). [#546](https://github.com/microsoft/kiota/issues/546)
1919

2020
### Changed
21+
22+
- Moved go libraries to their own repository. [#370](https://github.com/microsoft/kiota/issues/370)
2123
- 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)
22-
- Fix issue where custom date types are never corrected for method parameters(PHP). #1474
24+
- Fixed issue where custom date types are never corrected for method parameters(PHP). #1474
2325
- Replace DateTimeOffset with DateTime for custom date types(PHP). #1474
2426
- 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)
2527
- Fixed a bug where request builder classes for collections endpoints would have a wrong name. #1052

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following table provides an overview of the languages supported by Kiota and
2222
| Language | Generation | Abstractions | Serialization | Authentication | HTTP | Required tools & dependencies |
2323
| -------- | ---------- |--------------------------------|-----------------------------------------------------------------| -------------- | ---- | -------------- |
2424
| 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) |
25-
| 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) |
25+
| 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) |
2626
| 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) |
2727
| 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) | |
2828
| 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) | |

abstractions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Your project will need a reference to the abstraction package to build and run,
55

66
- [Dotnet](https://github.com/microsoft/kiota-abstractions-dotnet)
77
- [Java](./java)
8-
- [Go](./go)
8+
- [Go](https://github.com/microsoft/kiota-abstractions-go)
99
- [Ruby](./ruby/microsoft_kiota_abstractions)
1010
- [TypeScript](https://github.com/microsoft/kiota-typescript/tree/main/packages/abstractions)
1111
- [PHP](./php)

abstractions/go/README.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)