openziti / edge

Application-embedded connectivity and zero-trust components
Apache License 2.0
75 stars 19 forks source link

Bump github.com/openziti/sdk-golang from 0.20.115 to 0.21.2 #1655

Closed dependabot[bot] closed 9 months ago

dependabot[bot] commented 9 months ago

Bumps github.com/openziti/sdk-golang from 0.20.115 to 0.21.2.

Changelog

Sourced from github.com/openziti/sdk-golang's changelog.

Release 0.21.0

  • New ListenOptions field: WaitForNEstablishedListeners. Allows specifying that you want at least N listeners to be established before the Listen method returns. Defaults to 0.

Release 0.20.145

  • New Context API method: RefreshService, which allows refreshing a single service, when that's all that's needed.

Release 0.20.59

  • SDK context's will now use the properly prefixed Edge Client API Path for enrollment configurations. Previous versions relied upon legacy path support in scenarios where Ziti Context configurations were generated from an enrollment JWT.
  • Added edge_apis.ClientUrl(hostname string) and edge_apis.ManagementUrl(hostname string) to convert hostnames to fully prefixed API URls.

Release 0.20.52 - 0.20.58

  • minor bug fixes
  • dependency updates

Release 0.20.51

WHat's New

  • Edge Router Filter Options - now possible to filter Edge Routers based on connection URL

Edge Router Filter Options

When creating Ziti SDK Context instances, the options argument can now contain an EdgeRouterUrlFilter function that takes in a string URL and returns a boolean to determine if the context will use that connection string to connect to the Edge Router. This is useful when operating in restricted environments, GoLang WASM, where some connection methods are no allowed (i.e. tcp/tls vs ws/wss).

   cfg := &ziti.Config{
        ZtAPI:       "https://localhost:1280/edge/client/v1",
        Credentials: credentials,
    }
    ctx, err := ziti.NewContextWithOpts(cfg, &ziti.Options{
        EdgeRouterUrlFilter: func(addr string) bool {
            return strings.HasPrefix(addr,"wss")
        },
    })

Release 0.20.50

... (truncated)

Commits
  • 7baf330 Release v0.21.2
  • c367b8e Merge pull request #466 from openziti/wait-for-n-listeners
  • de055eb Allow waiting for N established listeners before returning from listen. Fixes...
  • 9061ebe Updating dependency github.com/openziti/edge-api@v0.26.6
  • 74c8fd3 Merge pull request #463 from openziti/single-svc-refresh
  • bc750af Update CHANGELOG
  • 20a65d2 Allow refreshing a single service. Fixes #462
  • 34437ca Updating dependency github.com/openziti/edge-api@v0.26.5
  • 2ceca93 Updating dependency github.com/openziti/edge-api@v0.26.4
  • c73e2db Updating dependency github.com/openziti/edge-api@v0.26.3
  • Additional commits viewable in compare view


Most Recent Ignore Conditions Applied to This Pull Request | Dependency Name | Ignore Conditions | | --- | --- | | github.com/openziti/sdk-golang | [< 0.21, > 0.20.115] |

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 show ignore conditions` will show all of the ignore conditions of the specified dependency - `@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)
dependabot[bot] commented 9 months ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.