| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
ℹ️ Artifact update noticeFile name: go.modIn 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):
Details:
|
Sorry, something went wrong.
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠️ Warning: custom changes will be lost. |
Sorry, something went wrong.
k8s.io/apimachinery v0.36.2 raised the go.mod go directive to 1.26.0, but CI pinned GO_VERSION=1.25.10 with GOTOOLCHAIN=local, causing lint, unit-test and build jobs to fail with: go: go.mod requires go >= 1.26.0 (running go 1.25.10; GOTOOLCHAIN=local)
golangci-lint v2.8.0 is built with Go 1.25 and refuses to lint a module targeting Go 1.26: can't load config: the Go language version (go1.25) used to build golangci-lint is lower than the targeted Go version (1.26.0) v2.12.2 is built with Go 1.26.
The golangci-lint v2.12.2 bump (needed for Go 1.26) surfaced goconst findings that v2.8.0 did not report: - fn.go: extract repeated Microsoft Graph field-name literals (displayName, appId, description) into named constants. - .golangci.yml: set goconst.ignore-tests to skip repeated string literals in test fixtures, where extracting constants would only reduce readability. No behavior change. Verified locally with golangci-lint v2.11.4 (built with go1.26.1): 0 issues, all unit tests pass.
Reverts goconst.ignore-tests so test code is linted too, and instead resolves the goconst findings by extracting the repeated string literals in fn_test.go into named constants: - fn.go: add fieldMail, fieldUserPrincipalName, fieldType field-name constants (alongside the existing displayName/appId/description) and use them in production map keys and $select projections. - fn_test.go: add a fixture const block (testRequestTag, testAzureCredsName, condTypeFunctionSuccess, the per-query-type messages, etc.) and reuse the field-name constants across the table-driven cases. Literals inside raw-string JSON fixtures are left untouched (they are single string literals, not separate tokens). No behavior change; verified locally with golangci-lint: 0 issues, all unit tests pass.
Two goconst findings surfaced only under golangci-lint v2.12.2 (local v2.11.4 did not report them): - Promote userType/servicePrincipalType/unknownType from function-local constants in processMember to package level, and reuse them for the repeated "user"/"servicePrincipal" literals in fn_test.go. - Add testUser1Email for the repeated "user1@example.com" fixture. Verified with golangci-lint v2.12.2 (CI parity): 0 issues, tests pass.
| Back | FazBrowse Home | New Git URL |
This PR contains the following updates:
Release Notes
kubernetes/apimachinery (k8s.io/apimachinery)v0.36.2
Compare Source
v0.36.1
Compare Source
v0.36.0
Compare Source
v0.35.6
Compare Source
v0.35.5
Compare Source
v0.35.4
Compare Source
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.