{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":18765044,"defaultBranch":"master","name":"oauth2","ownerLogin":"golang","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2014-04-14T15:07:35.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/4314092?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1712242977.0","currentOid":""},"activityList":{"items":[{"before":"4b7f0bdbc7c30d05383d2597847300fbb870608b","after":"84cb9f7f5c5a639955cd501bfdd54f0e63997e61","ref":"refs/heads/master","pushedAt":"2024-04-22T16:03:36.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"oauth2: fix typo in comment\n\nChange-Id: Ifc12ed36671d21e388c537c510a82be084e9ec99\nGitHub-Last-Rev: a4da759dd92626f746324862720b865308a5f09f\nGitHub-Pull-Request: golang/oauth2#720\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/580715\nTryBot-Bypass: Cody Oss \nReviewed-by: Cody Oss \nReviewed-by: Joedian Reid ","shortMessageHtmlLink":"oauth2: fix typo in comment"}},{"before":"e11eea88a89331c1fae3d38a37f484363a8d597d","after":"4b7f0bdbc7c30d05383d2597847300fbb870608b","ref":"refs/heads/master","pushedAt":"2024-04-17T16:09:57.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"go.mod: update cloud.google.com/go/compute/metadata dependency\n\nRelated #615\nRelated https://github.com/googleapis/google-cloud-go/pull/9545\n\nChange-Id: I762dc53c61204ec5103336dab6358b9b4d1337d4\nGitHub-Last-Rev: 439c3934d8fa48d60c7b254c86a1356e22993c8e\nGitHub-Pull-Request: golang/oauth2#719\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/579495\nReviewed-by: Cody Oss \nLUCI-TryBot-Result: Go LUCI \nTryBot-Result: Gopher Robot \nRun-TryBot: Cody Oss \nReviewed-by: Jordan Liggitt ","shortMessageHtmlLink":"go.mod: update cloud.google.com/go/compute/metadata dependency"}},{"before":"d0e617c58cf747cf27df9762003502f814dd524c","after":"e11eea88a89331c1fae3d38a37f484363a8d597d","ref":"refs/heads/master","pushedAt":"2024-04-05T22:25:17.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"microsoft: added DeviceAuthURL to AzureADEndpoint\n\nThe Microsoft identity platform supports the device authorization grant:\n\nhttps://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-device-code\n\nThis PR adds the \"https://login.microsoftonline.com/{tenant}/oauth2/v2.0/devicecode\" DeviceAuthURL to the AzureADEndpoint.\n\nFixes golang/oauth2#700\n\nChange-Id: I8ca571391e0e0f4d383e3f2f07a66b26edcb4679\nGitHub-Last-Rev: 2b953c3d57c3a03b68e1c118c7663d84c8f71116\nGitHub-Pull-Request: golang/oauth2#701\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/564315\nReviewed-by: Dmitri Shuralyov \nReviewed-by: Matt Hickford \nRun-TryBot: Matt Hickford \nTryBot-Result: Gopher Robot \nReviewed-by: Than McIntosh \nLUCI-TryBot-Result: Go LUCI ","shortMessageHtmlLink":"microsoft: added DeviceAuthURL to AzureADEndpoint"}},{"before":"3c9c1f6d00e8761389cd2c50bc4179459d6320b5","after":"d0e617c58cf747cf27df9762003502f814dd524c","ref":"refs/heads/master","pushedAt":"2024-04-03T22:39:55.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google: add Credentials.UniverseDomainProvider\n\n* move MDS universe retrieval within Compute credentials\n\nChange-Id: I847d2075ca11bde998a06220307626e902230c23\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/575936\nReviewed-by: Cody Oss \nAuto-Submit: Cody Oss \nRun-TryBot: Cody Oss \nTryBot-Result: Gopher Robot \nLUCI-TryBot-Result: Go LUCI ","shortMessageHtmlLink":"google: add Credentials.UniverseDomainProvider"}},{"before":"5a05c654f92c675eb6bfe782f61b601b0efb77ea","after":"3c9c1f6d00e8761389cd2c50bc4179459d6320b5","ref":"refs/heads/master","pushedAt":"2024-03-12T20:05:57.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"oauth2/google: fix the logic of sts 0 value of expires_in\n\nThe sts response contains an optional field of `expires_in` and the value can be any integer.\n\nhttps://github.com/golang/oauth2/blob/master/google/internal/externalaccount/basecredentials.go#L246-L248\n\nIn the case of less than `0`, we are going to throw an error. But in the case of equals to `0` practically it means \"never expire\" instead of \"instantly expire\" which doesn't make sense.\n\nSo we need to not set the expiration value for Token object. The current else if greater or equal is wrong.\n\nIt's never triggered only because we are sending positive `3600` in sts response.\n\nChange-Id: Id227ca71130855235572b65ab178681e80d0da3a\nGitHub-Last-Rev: a95c923d6a5d256fa92629a1fcb908495d7b1338\nGitHub-Pull-Request: golang/oauth2#687\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/545895\nReviewed-by: Shin Fan \nLUCI-TryBot-Result: Go LUCI \nAuto-Submit: Cody Oss \nReviewed-by: Cody Oss ","shortMessageHtmlLink":"oauth2/google: fix the logic of sts 0 value of expires_in"}},{"before":"3a6776ada799d857cee190d6f517c4afee7c3170","after":"5a05c654f92c675eb6bfe782f61b601b0efb77ea","ref":"refs/heads/master","pushedAt":"2024-03-12T14:54:45.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"oauth2/google: fix remove content-type header from idms get requests\n\nThis is a fix on the https://github.com/googleapis/google-cloud-go/pull/9508.\nThe aws provider in that library is a ported dependency from here.\n\nChange-Id: I28e1efa4fdb8292210b695a164a55060c83dae88\nGitHub-Last-Rev: c425f2d3b12082bdd477100648a9e46cab026da0\nGitHub-Pull-Request: golang/oauth2#711\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/570875\nReviewed-by: Cody Oss \nReviewed-by: Chris Smith \nLUCI-TryBot-Result: Go LUCI ","shortMessageHtmlLink":"oauth2/google: fix remove content-type header from idms get requests"}},{"before":"85231f99d65eedc833c8fccfec7fd7d8303c0d3e","after":"3a6776ada799d857cee190d6f517c4afee7c3170","ref":"refs/heads/master","pushedAt":"2024-03-11T19:47:45.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"appengine: drop obsolete code for AppEngine envs <=Go 1.11\n\nThis library no longer builds on Go versions prior to Go 1.17,\nso no longer needs to support compilation specific to AppEngine\nenvironments on Go versions prior to Go 1.11\n\nRelated to #615\n\nChange-Id: Ia9579ea2091cb86ee96065affb920370c4ba33ea\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/570595\nReviewed-by: Matt Hickford \nLUCI-TryBot-Result: Go LUCI \nReviewed-by: Cody Oss \nRun-TryBot: Matt Hickford \nTryBot-Result: Gopher Robot ","shortMessageHtmlLink":"appengine: drop obsolete code for AppEngine envs <=Go 1.11"}},{"before":"34a7afaa8571b555a177d9bf0360276cbb94f630","after":"85231f99d65eedc833c8fccfec7fd7d8303c0d3e","ref":"refs/heads/master","pushedAt":"2024-03-04T22:42:04.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I993c77edbea8426f558ab84c4ba769e0bdf6406d\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/568935\nReviewed-by: Than McIntosh \nLUCI-TryBot-Result: Go LUCI \nAuto-Submit: Gopher Robot \nReviewed-by: Michael Knyszek ","shortMessageHtmlLink":"go.mod: update golang.org/x dependencies"}},{"before":"95bec9538152e03de0cfbaf64cd3af163b8cef30","after":"34a7afaa8571b555a177d9bf0360276cbb94f630","ref":"refs/heads/master","pushedAt":"2024-03-04T19:42:17.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google/externalaccount: add Config.UniverseDomain\n\nChange-Id: Ia1caee246da68c01addd06e1367ed1e43645826b\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/568216\nReviewed-by: Alex Eitzman \nReviewed-by: Cody Oss \nLUCI-TryBot-Result: Go LUCI ","shortMessageHtmlLink":"google/externalaccount: add Config.UniverseDomain"}},{"before":"ebe81ad83719fe3426335b22e40a1e3a76fa45c0","after":"95bec9538152e03de0cfbaf64cd3af163b8cef30","ref":"refs/heads/master","pushedAt":"2024-02-28T20:55:38.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google/externalaccount: moves externalaccount package out of internal and exports it\n\ngo/programmable-auth-design for context. Adds support for user defined\n supplier methods to return subject tokens and AWS security credentials.\n\nChange-Id: I7bc41f8c5202ae933fce516632f5049bbeb3d378\nGitHub-Last-Rev: ac519b242f8315df572f1b205b0670f139bfc6c3\nGitHub-Pull-Request: golang/oauth2#690\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/550835\nLUCI-TryBot-Result: Go LUCI \nReviewed-by: Leo Siracusa \nReviewed-by: Chris Smith \nTryBot-Result: Gopher Robot \nReviewed-by: Cody Oss ","shortMessageHtmlLink":"google/externalaccount: moves externalaccount package out of internal…"}},{"before":"adffd94437cee5e033b67282039fc9c21708ffc7","after":"ebe81ad83719fe3426335b22e40a1e3a76fa45c0","ref":"refs/heads/master","pushedAt":"2024-02-08T13:19:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I8228a126b322fb14250bbb5933199ce45e8584d3\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/562496\nReviewed-by: Than McIntosh \nLUCI-TryBot-Result: Go LUCI \nReviewed-by: Dmitri Shuralyov \nAuto-Submit: Gopher Robot ","shortMessageHtmlLink":"go.mod: update golang.org/x dependencies"}},{"before":"deefa7e836e5aa043b2b8102b5b098da53a43903","after":"adffd94437cee5e033b67282039fc9c21708ffc7","ref":"refs/heads/master","pushedAt":"2024-01-19T20:50:39.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google/internal/externalaccount: update serviceAccountImpersonationRE to support universe domain\n\nChange-Id: Iafe35c293209bd88997c876341ebde7ac9ecda93\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/557195\nTryBot-Bypass: Cody Oss \nReviewed-by: Cody Oss \nAuto-Submit: Cody Oss ","shortMessageHtmlLink":"google/internal/externalaccount: update serviceAccountImpersonationRE…"}},{"before":"39adbb78078cc1cda488515a968b79fdb2ddb22c","after":"deefa7e836e5aa043b2b8102b5b098da53a43903","ref":"refs/heads/master","pushedAt":"2024-01-19T18:57:10.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google/downscope: add DownscopingConfig.UniverseDomain to support TPC\n\nChange-Id: I3669352b382414ea640ca176afa4071995fc5ff1\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/557135\nReviewed-by: Cody Oss \nTryBot-Bypass: Cody Oss \nAuto-Submit: Cody Oss ","shortMessageHtmlLink":"google/downscope: add DownscopingConfig.UniverseDomain to support TPC"}},{"before":"4ce7bbb2ffdc6daed06e2ec28916fd08d96bc3ea","after":"39adbb78078cc1cda488515a968b79fdb2ddb22c","ref":"refs/heads/master","pushedAt":"2024-01-08T18:34:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Icf68cb33585a13df206afacdb79832ea76f82346\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/554676\nLUCI-TryBot-Result: Go LUCI \nReviewed-by: Than McIntosh \nAuto-Submit: Gopher Robot \nReviewed-by: Dmitri Shuralyov ","shortMessageHtmlLink":"go.mod: update golang.org/x dependencies"}},{"before":"1e6999b1be5067eb130167a5dc35905ee5cd01aa","after":"4ce7bbb2ffdc6daed06e2ec28916fd08d96bc3ea","ref":"refs/heads/master","pushedAt":"2024-01-05T14:38:48.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google: add Credentials.GetUniverseDomain with GCE MDS support\n\n* Deprecate Credentials.UniverseDomain\n\nChange-Id: I1cbc842fbfce35540c8dff99fec09e036b9e2cdf\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/554215\nTryBot-Result: Gopher Robot \nRun-TryBot: Cody Oss \nAuto-Submit: Cody Oss \nReviewed-by: Cody Oss \nReviewed-by: Viacheslav Rostovtsev ","shortMessageHtmlLink":"google: add Credentials.GetUniverseDomain with GCE MDS support"}},{"before":"6e9ec9323da7adcd2cc6e62e4deb9fae4c309a1a","after":"1e6999b1be5067eb130167a5dc35905ee5cd01aa","ref":"refs/heads/master","pushedAt":"2024-01-04T15:11:57.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google: add UniverseDomain to CredentialsParams\n\nChange-Id: I7925b8341e1f047d0115acd7a01a34679a489ee0\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/552716\nReviewed-by: Cody Oss \nRun-TryBot: Cody Oss \nReviewed-by: Viacheslav Rostovtsev \nTryBot-Result: Gopher Robot ","shortMessageHtmlLink":"google: add UniverseDomain to CredentialsParams"}},{"before":"e067960af846b0c7189a5b5cbd12d12f5712703d","after":"6e9ec9323da7adcd2cc6e62e4deb9fae4c309a1a","ref":"refs/heads/master","pushedAt":"2023-11-27T17:51:02.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Iad79e50dacd89c4cd0a40d966a1a7ba4cdc3d1a4\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/545176\nLUCI-TryBot-Result: Go LUCI \nReviewed-by: Dmitri Shuralyov \nReviewed-by: Carlos Amedee \nAuto-Submit: Gopher Robot ","shortMessageHtmlLink":"go.mod: update golang.org/x dependencies"}},{"before":"4c91c17b32051e551fc27bdbdea4edc060b0aae5","after":"e067960af846b0c7189a5b5cbd12d12f5712703d","ref":"refs/heads/master","pushedAt":"2023-11-08T20:28:25.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Id1413f67816220ef8039fb933088f4b7f50d70e5\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/540817\nLUCI-TryBot-Result: Go LUCI \nReviewed-by: Dmitri Shuralyov \nAuto-Submit: Gopher Robot \nReviewed-by: Heschi Kreinick ","shortMessageHtmlLink":"go.mod: update golang.org/x dependencies"}},{"before":"45a4614e337ce6fcdce42220142bfb6b01558055","after":null,"ref":"refs/heads/upstream","pushedAt":"2023-11-04T19:15:43.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"hickford","name":"M Hickford","path":"/hickford","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/105314?s=80&v=4"}},{"before":null,"after":"45a4614e337ce6fcdce42220142bfb6b01558055","ref":"refs/heads/upstream","pushedAt":"2023-11-04T19:15:15.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"hickford","name":"M Hickford","path":"/hickford","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/105314?s=80&v=4"},"commit":{"message":"New upstream version 0.13.0","shortMessageHtmlLink":"New upstream version 0.13.0"}},{"before":"3c5dbf08cc9840ba292592ec6c68090ea315238c","after":"4c91c17b32051e551fc27bdbdea4edc060b0aae5","ref":"refs/heads/master","pushedAt":"2023-10-17T20:42:48.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google: adds header to security considerations section\n\nChange-Id: I29b93715876f233ae52687c8223fd8733a2a3b80\nGitHub-Last-Rev: f15c4cf1a5cb50f0266392c00dad6696949c4d6c\nGitHub-Pull-Request: golang/oauth2#677\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/535895\nReviewed-by: Cody Oss \nRun-TryBot: Cody Oss \nReviewed-by: Alex Eitzman \nAuto-Submit: Cody Oss \nTryBot-Result: Gopher Robot ","shortMessageHtmlLink":"google: adds header to security considerations section"}},{"before":"8844b8fc258f49b6621912eac7356a0a6a9fd0bc","after":null,"ref":"refs/heads/dependabot/go_modules/golang.org/x/net-0.17.0","pushedAt":"2023-10-11T23:18:54.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"}},{"before":null,"after":"8844b8fc258f49b6621912eac7356a0a6a9fd0bc","ref":"refs/heads/dependabot/go_modules/golang.org/x/net-0.17.0","pushedAt":"2023-10-11T23:18:42.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump golang.org/x/net from 0.16.0 to 0.17.0\n\nBumps [golang.org/x/net](https://github.com/golang/net) from 0.16.0 to 0.17.0.\n- [Commits](https://github.com/golang/net/compare/v0.16.0...v0.17.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/net\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump golang.org/x/net from 0.16.0 to 0.17.0"}},{"before":"11625ccb95ae1d99393185eb6eb10d6a5157e711","after":"3c5dbf08cc9840ba292592ec6c68090ea315238c","ref":"refs/heads/master","pushedAt":"2023-10-06T08:33:31.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I39a72a7dbb2205a6638a154892c69948ee2deb0d\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/533241\nReviewed-by: Matt Hickford \nReviewed-by: Benny Siegert \nReviewed-by: Dmitri Shuralyov \nAuto-Submit: Gopher Robot \nLUCI-TryBot-Result: Go LUCI ","shortMessageHtmlLink":"go.mod: update golang.org/x dependencies"}},{"before":"8d6d45b6cde73b704061a2914b49bae1a1d5366e","after":"11625ccb95ae1d99393185eb6eb10d6a5157e711","ref":"refs/heads/master","pushedAt":"2023-10-02T22:04:59.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google: add authorized_user conditional to Credentials.UniverseDomain\n\nReturn default universe domain if credentials type is authorized_user.\n\nChange-Id: I20a9b5fafa562fcec84717914a236d081f630591\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/532196\nRun-TryBot: Cody Oss \nReviewed-by: Cody Oss \nTryBot-Result: Gopher Robot ","shortMessageHtmlLink":"google: add authorized_user conditional to Credentials.UniverseDomain"}},{"before":"43b6a7ba1972152df70cd1e5ac7705e981df5f66","after":"8d6d45b6cde73b704061a2914b49bae1a1d5366e","ref":"refs/heads/master","pushedAt":"2023-09-29T14:33:36.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google: add Credentials.UniverseDomain to support TPC\n\nRead and expose universe_domain from service account JSON files in\nCredentialsFromJSONWithParams to support TPC in 1p clients.\n\nChange-Id: I3518a0ec8be5ff7235b946cffd88b26ac8d303cf\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/531715\nRun-TryBot: Cody Oss \nTryBot-Result: Gopher Robot \nReviewed-by: Cody Oss ","shortMessageHtmlLink":"google: add Credentials.UniverseDomain to support TPC"}},{"before":"14b275c918cfd6590f412031b27f6ff0d8fd17c5","after":"43b6a7ba1972152df70cd1e5ac7705e981df5f66","ref":"refs/heads/master","pushedAt":"2023-09-28T22:24:52.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"google: adding support for external account authorized user\n\nTo support a new type of credential: `ExternalAccountAuthorizedUser`\n\n* Refactor the common dependency STS to a separate package.\n* Adding the `externalaccountauthorizeduser` package.\n\nChange-Id: I9b9624f912d216b67a0d31945a50f057f747710b\nGitHub-Last-Rev: 6e2aaff345711d007f913a7c22dc6da750732938\nGitHub-Pull-Request: golang/oauth2#671\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/531095\nReviewed-by: Leo Siracusa \nReviewed-by: Alex Eitzman \nRun-TryBot: Cody Oss \nReviewed-by: Cody Oss \nTryBot-Result: Gopher Robot ","shortMessageHtmlLink":"google: adding support for external account authorized user"}},{"before":"9095a51613032fc4f54e91b3c67c0a922d990bfb","after":"14b275c918cfd6590f412031b27f6ff0d8fd17c5","ref":"refs/heads/master","pushedAt":"2023-09-23T11:58:06.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"oauth2: workaround misspelling of verification_uri\n\nSome servers misspell verification_uri as verification_url, contrary to spec RFC 8628\n\nExample server https://issuetracker.google.com/issues/151238144\n\nFixes #666\n\nChange-Id: I89e354368bbb0a4e3b979bb547b4cb37bbe1cc02\nGitHub-Last-Rev: bbf169b52d7e5c375da31c664adafc2423d22a8f\nGitHub-Pull-Request: golang/oauth2#667\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/527835\nTryBot-Result: Gopher Robot \nReviewed-by: Nikolay Turpitko \nAuto-Submit: Bryan Mills \nReviewed-by: Matthew Dempsky \nReviewed-by: Bryan Mills \nRun-TryBot: Matt Hickford ","shortMessageHtmlLink":"oauth2: workaround misspelling of verification_uri"}},{"before":"2d9e4a2adf33fc3ce68d77995fadda7234520e5c","after":"9095a51613032fc4f54e91b3c67c0a922d990bfb","ref":"refs/heads/master","pushedAt":"2023-09-22T16:24:36.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"oauth2: clarify error if endpoint missing DeviceAuthURL\n\nChange-Id: I36eb5eb66099161785160f4f39ea1c7f64ad6e74\nGitHub-Last-Rev: 31cfe8150fa630b67b8e0a75d5ebb8890f979a6d\nGitHub-Pull-Request: golang/oauth2#664\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/526302\nReviewed-by: Matthew Dempsky \nLUCI-TryBot-Result: Go LUCI \nAuto-Submit: Bryan Mills \nReviewed-by: Bryan Mills ","shortMessageHtmlLink":"oauth2: clarify error if endpoint missing DeviceAuthURL"}},{"before":"55cd552a36547be12b8a7a384c179b33120240ef","after":"2d9e4a2adf33fc3ce68d77995fadda7234520e5c","ref":"refs/heads/master","pushedAt":"2023-09-12T16:17:24.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"oauth2/google: remove meta validations for aws external credentials\n\nRemove the url validations to keep a consistency with other libraries.\n\nChange-Id: Icb1767edc000d9695db3f0c7ca271918fb2083f5\nGitHub-Last-Rev: af89ee0c72964e70d5fb5a87d4ad659c280ccebb\nGitHub-Pull-Request: golang/oauth2#660\nReviewed-on: https://go-review.googlesource.com/c/oauth2/+/522395\nReviewed-by: Leo Siracusa \nTryBot-Result: Gopher Robot \nReviewed-by: Cody Oss \nRun-TryBot: Cody Oss ","shortMessageHtmlLink":"oauth2/google: remove meta validations for aws external credentials"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAENzOP_QA","startCursor":null,"endCursor":null}},"title":"Activity · golang/oauth2"}