-
Notifications
You must be signed in to change notification settings - Fork 243
Comparing changes
Open a pull request
base repository: godbus/dbus
base: v5.2.0
head repository: godbus/dbus
compare: v5.2.1
- 17 commits
- 19 files changed
- 2 contributors
Commits on Dec 2, 2025
-
This should fix the following error: > The resource 'projects/freebsd-org-cloud-dev/global/images/family/freebsd-14-2' was not found Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 9231ecb - Browse repository at this point
Copy the full SHA 9231ecbView commit details
Commits on Dec 3, 2025
-
This is the latest supported Go version Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7f5da1d - Browse repository at this point
Copy the full SHA 7f5da1dView commit details
Commits on Dec 19, 2025
-
Merge pull request #421 from kolyshkin/fix-freebsd
ci: bump freebsd to 14.3
Configuration menu - View commit details
-
Copy full SHA for 501de98 - Browse repository at this point
Copy the full SHA 501de98View commit details -
Revert "Use pointer semantics in depthCounter"
This reverts commit 5942541. Pointer semantics on the caller are actually incorrect here: the returned depthCounter is passed on to a deeper validation function, but that shouldn't modify the original depthCounter from the caller. With pointer semantics, we don't count e.g. the depth of array nesting, but just how many arrays are present in the signature. For structs this is especially bad since EnterStruct is called for each struct field, so this unintentionally limited the number of struct fields that could be present in a signature to 32. Fixes #425.
Configuration menu - View commit details
-
Copy full SHA for 7cdb65f - Browse repository at this point
Copy the full SHA 7cdb65fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 81b5551 - Browse repository at this point
Copy the full SHA 81b5551View commit details -
Merge pull request #426 from godbus/fix/struct_member_32
Allow more than 32 containers / struct fields in a signature
Configuration menu - View commit details
-
Copy full SHA for f5f1150 - Browse repository at this point
Copy the full SHA f5f1150View commit details -
It is no longer needed since commit 33c352a changed go to 1.20 in go.mod. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 21130cc - Browse repository at this point
Copy the full SHA 21130ccView commit details -
Those are no longer needed as the package requires Go >= 1.20 since commit 33c352a. Generated by go fix ./... Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 68031f9 - Browse repository at this point
Copy the full SHA 68031f9View commit details -
Fix staticcheck ST1006 warnings
Like this: > object_test.go:71:7: ST1006: receiver name should not be an underscore, omit the name if it is unused (staticcheck) Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5245cc9 - Browse repository at this point
Copy the full SHA 5245cc9View commit details -
Use switch where it makes sense
As recommended by staticcheck linter, e.g. > conn.go:448:3: QF1003: could use tagged switch on member (staticcheck) Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d03c0be - Browse repository at this point
Copy the full SHA d03c0beView commit details -
variant_parser: simplify switch statement
As recommended by the staticcheck linter: > variant_parser.go:295:2: QF1002: could use tagged switch on sig.str (staticcheck) Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1b92cdc - Browse repository at this point
Copy the full SHA 1b92cdcView commit details -
As recommended by the staticcheck linter, e.g. > auth.go:60:14: QF1008: could remove embedded field "transport" from selector (staticcheck)
Configuration menu - View commit details
-
Copy full SHA for 135663e - Browse repository at this point
Copy the full SHA 135663eView commit details -
Ignore ST1008 warning for validSingle
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for c5ff039 - Browse repository at this point
Copy the full SHA c5ff039View commit details -
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for feb892a - Browse repository at this point
Copy the full SHA feb892aView commit details -
Merge pull request #419 from kolyshkin/golangci-v2
Bump golangci-lint to v2, fix some issues found
Configuration menu - View commit details
-
Copy full SHA for 88ce463 - Browse repository at this point
Copy the full SHA 88ce463View commit details -
Since commits 99fac80 and ec919d8 it's clear that getHomeDir is only used on Windows. Ironically, $HOME is not used on Windows (instead, it's %USERPROFILE%), so we always fallback to user.Current, which internally uses os.UserHomeDir to fill in HomeDir. So, let's just use os.UserHomeDir directly (and fall back to "/" in case of an error like the previous implementation did). Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d3fc3b5 - Browse repository at this point
Copy the full SHA d3fc3b5View commit details -
Merge pull request #422 from kolyshkin/homedir
Fix and simplify getHomeDir
Configuration menu - View commit details
-
Copy full SHA for 20d95a3 - Browse repository at this point
Copy the full SHA 20d95a3View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v5.2.0...v5.2.1