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

Update misc modules #104

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

Update misc modules #104

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
alpine final minor 3.19.0 -> 3.20.2 age adoption passing confidence
github.com/Azure/azure-sdk-for-go/sdk/azidentity require minor v1.4.0 -> v1.7.0 age adoption passing confidence
github.com/bradleyfalzon/ghinstallation/v2 require minor v2.8.0 -> v2.11.0 age adoption passing confidence
github.com/dexidp/dex require minor v0.0.0-20221003101923-e4bceef9f3d1 -> v0.6.1 age adoption passing confidence
github.com/go-logr/logr require minor v1.3.0 -> v1.4.2 age adoption passing confidence
github.com/google/uuid require minor v1.4.0 -> v1.6.0 age adoption passing confidence
github.com/microsoftgraph/msgraph-sdk-go require minor v0.57.0 -> v0.64.0 age adoption passing confidence
github.com/onsi/ginkgo/v2 require minor v2.13.2 -> v2.19.1 age adoption passing confidence
github.com/onsi/gomega require minor v1.30.0 -> v1.34.1 age adoption passing confidence
github.com/pkg/browser require digest 681adbf -> 5ac0b6a age adoption passing confidence
github.com/prometheus/client_golang require minor v1.17.0 -> v1.19.1 age adoption passing confidence
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc replace minor v0.46.1 -> v0.53.0 age adoption passing confidence
go.uber.org/zap require minor v1.26.0 -> v1.27.0 age adoption passing confidence
golang.org/x/net replace minor v0.19.0 -> v0.27.0 age adoption passing confidence
google.golang.org/grpc replace minor v1.59.0 -> v1.65.0 age adoption passing confidence
google.golang.org/protobuf replace minor v1.31.0 -> v1.34.2 age adoption passing confidence

Release Notes

bradleyfalzon/ghinstallation (github.com/bradleyfalzon/ghinstallation/v2)

v2.11.0

Compare Source

What's Changed

NOTE: Now requires Go >= 1.16 to build.

New Contributors

Full Changelog: bradleyfalzon/ghinstallation@v2.10.0...v2.11.0

v2.10.0

Compare Source

What's Changed

Full Changelog: bradleyfalzon/ghinstallation@v2.9.0...v2.10.0

v2.9.0

Compare Source

What's Changed

Full Changelog: bradleyfalzon/ghinstallation@v2.8.0...v2.9.0

dexidp/dex (github.com/dexidp/dex)

v0.6.1

Compare Source

This is a minor patch release.

Changes since last release:

  • revert #​579 addressing button styling
  • fix root cause of button UI problem with a CSS class

v0.6.0

Compare Source

Changes since last release:

  • Deprecate --email-from flag and clean up email config options (#​487)
  • Add "groups" scope to return list of groups in claims, LDAP only supported implementation (#​510)
  • Dex can no be used at a relative path (#​520, #​521, #​522, #​558)
  • Fix API for bearer tokens with multiple audiences (#​531)
  • Set display name when registering a user (#​537)
  • Added UAA connector (#​542)
  • Added refresh token rotation, aka refresh tokens can only be used once (#​540)
  • Added option to use client credentials against worker API (#​529)
  • Token response now includes mandatory "expires_in" field (#​575)

v0.5.1

Compare Source

This is a minor point release

Features since v0.5.0

  • Reduced ID Token size by using smaller JWK Key IDs (#​490)
  • Cleaned up LDAP connector (#​483)
  • Return 409 status code in API when resources already exist (#​494, #​496)

v0.5.0

Compare Source

Features:

  • Enable automatic registration for non-local login (#​463)
  • Cross-client refresh tokens through the "authorized party" claim (#​465, #​426)
  • "public" clients which can use oob flows (#​471)
  • Clients ID and secrets may now be specified in the bootstrapping API (#​479)

Bug fixes:

  • Dex now works when backed by Azure AD (#​466)

Deprecated:

  • Removed APIs which only use client_id and client_secret. Use admin API for this functionality. (#​468)

v0.4.0

Compare Source

This release consists of a bunch of minor bug fixes, and example and doc tweaks.

Features

  • None!

Bugs Fixed

  • remove outdated godep hack, since we use glide now (#​417)
  • example app uses passed redirect instead of hard-coded one (#​420)
  • Fix examples/README.md doc (#​421)
  • Fix kubernetes example (#​422)
  • git-version creates valid docker tags if dirty (#​425)
  • Update to latest go-oidc to fix JWT parse issues (#​430)

Misc

  • Better testing for Token end point (#​409)
  • Update Kubernetes examples to use 1.2 features (#​414, #​424)
  • Refactoring of client repo to allow for custom Client fields (#​411)
  • Split up build-docker-push into build, push (#​434)
  • Use go 1.6.2 for docker build. (#​433)

v0.3.0

Compare Source

Features

  • LDAP connector added (#​178)
  • Dynamic client registration (#​267)
  • dexctl can read connectors from stdin (#​277)
  • Generated API docs added to repo (#​285)
  • dex now uses sqlite for --no-db mode and tests (does not add general sqlite support) (#​304)
  • New API endpoint for resending an invite email (#​331)
  • example app's default flags now work with --no-db mode (#​333)

Bugs Fixed

  • API status codes now differentiate between unauthenticated and unauthorized requests (#​280)
  • dex now uses 302 for redirects rather than 307 (#​288)
  • Emails now use case insensitive comparison (#​339)
  • When consuming OAuth2 credentials through basic auth, dex now correctly expects URL escaped values (#​357)

Migration Note:

Duplicate Emails

The former use of case insensitive comparison for emails may have resulted in duplicate emails in the dex database for some instances.

For this release, dex will refuse to migrate the database if it detects duplicated emails in the authd_user table. In this case admins must resolve this by editing the table manually, dropping the rows they feel appropriate.

Admins who wish to delete duplicate emails in their database but don’t care which row is preserved can run the following SQL command:

DELETE FROM authd_user
WHERE id IN (SELECT id
    FROM (SELECT id,
        ROW_NUMBER() OVER (partition BY LOWER(email) ORDER BY id) AS rnum
        FROM authd_user) t
    WHERE t.rnum > 1);

v0.2.3

Compare Source

This is a minor point release to update dex's automated build process from Go version 1.5.2 to 1.5.3 which fixes a bug that impacts RSA private keys. See the write up by the Go team here.

This release is primarily for users who pull dex from quay.io and updates that image to use dex binaries built with Go 1.5.3.

Features

  • Better command line error message when secrets have bad length (#​259)

Security fixes

  • Update Go version in TravisCI from 1.5.2 to 1.5.3 for tests and Docker image builds (#​269).

v0.2.2

Compare Source

This is a minor point release to include a critical bug fix to 0.2.1

Features

  • Better help messages for dexctl (#​249)
  • Better error messages when remote ID already exists (#​246)

Bugs Fixed

  • Add DB migration to allow storing 2048 bit RSA keys (CRITICAL FIX) (#​250)
  • Fix redirect when user logs in through a different connector (#​242)

v0.2.1

Compare Source

This is a minor point release to include a handful of bug fixes merged since v0.2.0.

Features

  • Continuous integration through Travis CI (#​231, #​234, #​236)
  • Don't rebuild database migration assets on every build (#​233)
  • HTML page titles use --issuer-name (#​216)

Bugs Fixed

  • Updated go-oidc for race condition fixes (#​235)
  • Prevent panics created by empty --key-secrets flag (#​215)
  • Fixed field name in OIDC provider config (#​213)

v0.2.0

Compare Source

Features

  • Added GitHub and Bitbucket connectors (#​190)
  • Added ability to invite users (#​168, #​179)
  • Stronger encryption of token-signing keys (AES-GCM replaces AES-CBC) (#​167)
  • Added ability to disable users (#​140)
  • Admin API now requires client authorization (#​145)
  • Added ability to disable user registration (#​144)
  • Added SMTP support for email configuration (#​129)

Bugs Fixed

  • Fixed race condition in OIDC client (#​210)
  • Can't create a user with a connector that doesn't exist (#​199)
  • Corrected email validation during registration (#​190, #​188)
  • Fixed registration failures when scope was provided (#​183)
  • Block until connectors are available (#​128)
  • Lots of documentation fixes
go-logr/logr (github.com/go-logr/logr)

v1.4.2

Compare Source

What's Changed

Dependencies:

Full Changelog: go-logr/logr@v1.4.1...v1.4.2

v1.4.1

Compare Source

What's Changed

Full Changelog: go-logr/logr@v1.4.0...v1.4.1

v1.4.0

Compare Source

This release dramatically improves interoperability with Go's log/slog package. In particular, logr.NewContext and logr.NewContextWithSlogLogger use the same context key, which allows logr.FromContext and logr.FromContextAsSlogLogger to return logr.Logger or *slog.Logger respectively, including transparently converting each to the other as needed.

Functions logr/slogr.NewLogr and logr/slogr.ToSlogHandler have been superceded by logr.FromSlogHandler and logr.ToSlogHandler respectively, and type logr/slogr.SlogSink has been superceded by logr.SlogSink. All of the old names in logr/slogr remain, for compatibility.

Package logr/funcr now supports logr.SlogSink, meaning that it's output passes all but one of the Slog conformance tests (that exception being that funcr handles the timestamp itself).

Users who have a logr.Logger and need a *slog.Logger can call slog.New(logr.ToSlogHandler(...)) and all output will go through the same stack.

Users who have a *slog.Logger or slog.Handler can call logr.FromSlogHandler(...) and all output will go through the same stack.

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.3.0...v1.4.0

google/uuid (github.com/google/uuid)

v1.6.0

Compare Source

Features
Bug Fixes

v1.5.0

Compare Source

Features
microsoftgraph/msgraph-sdk-go (github.com/microsoftgraph/msgraph-sdk-go)

v0.64.0

Compare Source

Changed
  • Weekly generation.

v0.63.0

Compare Source

Changed
  • BREAKING: client.UsersById("id").MessagesById("id").Get(context.Background()) now becomes client.Users().ByUserId("id").Messages().ByMessageId("id").Get(context.Background())
  • Weekly generation.

v0.61.0

Compare Source

Changed
  • Weekly generation.
  • Restored support for APIs under /education/me.

v0.60.0

Compare Source

Changed
  • Weekly generation

v0.59.0

Compare Source

Changed
  • Weekly generation

v0.58.0

Compare Source

Changed
  • Weekly generation
onsi/ginkgo (github.com/onsi/ginkgo/v2)

v2.19.1

Compare Source

2.19.1

Fixes
  • update supported platforms for race conditions [63c8c30]
  • [build] Allow custom name for binaries. [ff41e27]
Maintenance

v2.19.0

Compare Source

2.19.0

Features

Label Sets allow for more expressive and flexible label filtering.

v2.18.0

Compare Source

2.18.0

Features
  • Add --slience-skips and --force-newlines [f010b65]
  • fail when no tests were run and --fail-on-empty was set [d80eebe]
Fixes
  • Fix table entry context edge case [42013d6]
Maintenance

v2.17.3

Compare Source

2.17.3

Fixes

ginkgo watch now ignores hidden files [bde6e00]

v2.17.2

Compare Source

2.17.2

Fixes
  • fix: close files [32259c8]
  • fix github output log level for skipped specs [780e7a3]
Maintenance

v2.17.1

Compare Source

2.17.1

Fixes
  • If the user sets --seed=0, make sure all parallel nodes get the same seed [af0330d]

v2.17.0

Compare Source

2.17.0

Features
  • add --github-output for nicer output in github actions [e8a2056]
Maintenance

v2.16.0

Compare Source

2.16.0

Features
  • add SpecContext to reporting nodes
Fixes
Maintenance

v2.15.0

Compare Source

2.15.0

Features
  • JUnit reports now interpret Label(owner:X) and set owner to X. [8f3bd70]
  • include cancellation reason when cancelling spec context [96e915c]
Fixes
  • emit output of failed go tool cover invocation so users can try to debug things for themselves [c245d09]
  • fix outline when using nodot in ginkgo v2 [dca77c8]
  • Document areas where GinkgoT() behaves differently from testing.T [dbaf18f]
  • bugfix(docs): use Unsetenv instead of Clearenv (#​1337) [6f67a14]
Maintenance

v2.14.0

Compare Source

2.14.0

Features

You can now use GinkgoTB() when you need an instance of testing.TB to pass to a library.

Prior to this release table testing only supported generating individual Its for each test entry. DescribeTableSubtree extends table testing support to entire testing subtrees - under the hood DescrieTableSubtree generates a new container for each entry and invokes your function to fill our the container. See the docs to learn more.

Fixes
Maintenance
onsi/gomega (github.com/onsi/gomega)

v1.34.1

Compare Source

1.34.1

Maintenance
  • Use slices from exp/slices to keep golang 1.20 compat [5e71dcd]

v1.34.0

Compare Source

1.34.0

Features
  • Add RoundTripper method to ghttp.Server [c549e0d]
Fixes
  • fix incorrect handling of nil slices in HaveExactElements (fixes #​771) [878940c]
  • issue_765 - fixed bug in Hopcroft-Karp algorithm [ebadb67]
Maintenance

v1.33.1

Compare Source

1.33.1

Fixes
  • fix confusing eventually docs [3a66379]
Maintenance
  • Bump github.com/onsi/ginkgo/v2 from 2.17.1 to 2.17.2 [e9bc35a]

v1.33.0

Compare Source

1.33.0

Features

Receive not accepts Receive(<POINTER>, MATCHER>), allowing you to pick out a specific value on the channel that satisfies the provided matcher and is stored in the provided pointer.

Maintenance

v1.32.0

Compare Source

1.32.0

Maintenance
  • Migrate github.com/golang/protobuf to google.golang.org/protobuf [436a197]

    This release drops the deprecated github.com/golang/protobuf and adopts google.golang.org/protobuf. Care was taken to ensure the release is backwards compatible (thanks @​jbduncan !). Please open an issue if you run into one.

  • chore: test with Go 1.22 (#​733) [32ef35e]

  • Bump golang.org/x/net from 0.19.0 to 0.20.0 (#​717) [a0d0387]

  • Bump github-pages and jekyll-feed in /docs (#​732) [b71e477]

  • docs: fix typo and broken anchor link to gstruct [f460154]

  • docs: fix HaveEach matcher signature [a2862e4]

v1.31.1

Compare Source

1.31.1

Fixes
  • Inverted arguments order of FailureMessage of BeComparableToMatcher [e0dd999]
  • Update test in case keeping msg is desired [ad1a367]
Maintenance
  • Show how to import the format sub package [24e958d]
  • tidy up go.sum [26661b8]
  • bump dependencies [bde8f7a]

v1.31.0

Compare Source

1.31.0

Features
  • Async assertions include context cancellation cause if present [121c37f]
Maintenance
  • Bump minimum go version [dee1e3c]
  • docs: fix typo in example usage "occured" -> "occurred" [49005fe]
  • Bump actions/setup-go from 4 to 5 (#​714) [f1c8757]
  • Bump github/codeql-action from 2 to 3 (#​715) [9836e76]
  • Bump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.2 (#​713) [[`54726

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner December 8, 2023 12:29
@renovate renovate bot added dependencies renovate This is an automated PR by RenovateBot labels Dec 8, 2023
@renovate renovate bot changed the title Update module github.com/microsoftgraph/msgraph-sdk-go to v0.64.0 Update misc modules Dec 12, 2023
Copy link
Contributor

@ssyno ssyno left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Either we update azure.go or ignore this libraries update

github.com/microsoft/kiota-abstractions-go v0.20.0
github.com/microsoft/kiota-authentication-azure-go v0.6.0
github.com/microsoftgraph/msgraph-sdk-go v0.57.0
github.com/microsoftgraph/msgraph-sdk-go v0.64.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

failing cause of this

@renovate renovate bot force-pushed the renovate/misc-modules branch 4 times, most recently from 01be842 to 638abd6 Compare December 22, 2023 10:08
@renovate renovate bot force-pushed the renovate/misc-modules branch 2 times, most recently from a717bc0 to d76486c Compare January 2, 2024 10:51
@renovate renovate bot force-pushed the renovate/misc-modules branch 3 times, most recently from 1bf3d4d to 50773f1 Compare January 11, 2024 21:54
@renovate renovate bot force-pushed the renovate/misc-modules branch 7 times, most recently from fe5ebe0 to 69204ae Compare January 23, 2024 22:47
@renovate renovate bot force-pushed the renovate/misc-modules branch 3 times, most recently from 9bc48c4 to 15f86fc Compare January 27, 2024 03:00
@renovate renovate bot force-pushed the renovate/misc-modules branch 2 times, most recently from ad1b017 to 0a53d5a Compare February 8, 2024 01:12
@renovate renovate bot force-pushed the renovate/misc-modules branch 2 times, most recently from d9b4ecf to bcdf265 Compare February 20, 2024 22:27
@renovate renovate bot force-pushed the renovate/misc-modules branch 2 times, most recently from b1ed665 to 10029df Compare April 24, 2024 19:50
@renovate renovate bot force-pushed the renovate/misc-modules branch 3 times, most recently from c7227ed to 7234346 Compare April 30, 2024 08:47
@renovate renovate bot force-pushed the renovate/misc-modules branch 4 times, most recently from 8abe99d to e564d99 Compare May 9, 2024 13:59
@renovate renovate bot force-pushed the renovate/misc-modules branch 2 times, most recently from 5ee907c to d46165a Compare May 21, 2024 23:25
@renovate renovate bot force-pushed the renovate/misc-modules branch 2 times, most recently from 2f9ebbe to bf1939c Compare May 24, 2024 18:59
Copy link
Contributor Author

renovate bot commented Jun 4, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 15 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.19 -> 1.22.5
github.com/cespare/xxhash/v2 v2.2.0 -> v2.3.0
github.com/golang-jwt/jwt/v5 v5.0.0 -> v5.2.1
github.com/golang/protobuf v1.5.3 -> v1.5.4
github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 -> v0.0.0-20240424215950-a892ee059fd6
github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 -> v0.5.0
github.com/prometheus/common v0.44.0 -> v0.48.0
github.com/prometheus/procfs v0.11.1 -> v0.12.0
github.com/stretchr/testify v1.8.4 -> v1.9.0
golang.org/x/crypto v0.16.0 -> v0.25.0
golang.org/x/oauth2 v0.11.0 -> v0.20.0
golang.org/x/sys v0.15.0 -> v0.22.0
golang.org/x/term v0.15.0 -> v0.22.0
golang.org/x/text v0.14.0 -> v0.16.0
golang.org/x/tools v0.14.0 -> v0.23.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d -> v0.0.0-20240528184218-531527333157

@renovate renovate bot force-pushed the renovate/misc-modules branch 3 times, most recently from 2d3fe6f to 01ab394 Compare June 11, 2024 10:45
@renovate renovate bot force-pushed the renovate/misc-modules branch 3 times, most recently from 3367c62 to e769ee8 Compare July 5, 2024 14:12
@renovate renovate bot force-pushed the renovate/misc-modules branch 6 times, most recently from 482c348 to b27d4db Compare July 29, 2024 21:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies renovate This is an automated PR by RenovateBot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant