Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/Azure/azure-kusto-go from 0.3.2 to 0.10.2 #33

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 9, 2023

Bumps github.com/Azure/azure-kusto-go from 0.3.2 to 0.10.2.

Release notes

Sourced from github.com/Azure/azure-kusto-go's releases.

Version 0.10.2

  • Fixed issue with managed identity parameters

v0.10.1

Version 0.10.1 Fixed issue with queued ingestion to other clouds

Version 0.10.0

  • [BREAKING] - The minimal go version is now 1.19

  • [BREAKING] - Moving to a connection-string based approach to creating and authenticating clients.
    This change aligns the go SDK with the others, and gives the option to re-use connection strings between SDKs.
    As part of this change use of go-autorest based authentication is deprecated in favor of Azure Identity.

    To initialize a client:

    // OLD WAY - REMOVED
    authConfig := auth.NewClientCredentialsConfig("clientID", "clientSecret", "tenantID")
    client, err := kusto.New("endpoint", kusto.Authorization{Config: authConfig})
// NEW WAY
kcsb := kusto.NewConnectionStringBuilder(`endpoint`).WithAadAppKey("clientID", "clientSecret", "tenentID")
client, err := kusto.New(kcsb)

  • [BREAKING] - Upgraded the azblob library to 0.6.1 This solves compatibility issues with other libraries, but might cause errors to those who still depend on the old version.

  • Implicit cloud detection.

  • All of our operations now share the same HTTP client inside the kusto client object.
    Using the option WithHttpClient will use the passed http client for all of the SDKs request, granting support for configuring proxies and other HTTP related settings.

  • Fixed various goroutine leaks. Now there are automatic tests to make sure we are not leaking resources.

  • Fetching ingestion resources is now done more consistently, without blocking the user.

  • Removed the header caching mechanism from streaming ingestion, as it was using a lot of memory for no major benefit.

Version 0.9.2

  • Fixed default values for parameters not parsing correctly
  • Fixed goroutine leak when streaming ingestion fails
  • Fixed leaks in tests

Full Changelog: Azure/azure-kusto-go@v0.9.1...v0.9.2

Version 0.9.1

  • Setting a mapping now implies the ingestion format
  • Fixed possible context race
  • Json parsing errors now display the failed json string
  • E2E tests require fewer prerequisites

v0.9.0 - Improved performance, Column Types

What's Changed

  • Deprecate AllowWrite - now it is the default like in other SDKs.
  • Remove mutex from query client. Now queries can run in parallel, achieving much better performance.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/Azure/azure-kusto-go](https://github.com/Azure/azure-kusto-go) from 0.3.2 to 0.10.2.
- [Release notes](https://github.com/Azure/azure-kusto-go/releases)
- [Commits](Azure/azure-kusto-go@v0.3.2...v0.10.2)

---
updated-dependencies:
- dependency-name: github.com/Azure/azure-kusto-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants