-
Notifications
You must be signed in to change notification settings - Fork 68
Comparing changes
Open a pull request
base repository: containerd/continuity
base: v0.4.4
head repository: containerd/continuity
compare: v0.4.5
- 17 commits
- 11 files changed
- 2 contributors
Commits on Oct 28, 2024
-
golangci-lint: don't use deprecated name for "govet" linter
WARN [lintersdb] The name "vet" is deprecated. The linter has been renamed to: govet. Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a8c7143 - Browse repository at this point
Copy the full SHA a8c7143View commit details -
Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5158c3f - Browse repository at this point
Copy the full SHA 5158c3fView commit details -
commands/mount_unsupported: drop nil-assignment (revive)
commands/mount_unsupported.go:26:31: var-declaration: should drop = nil from declaration of var MountCmd; it is the zero value (revive) var MountCmd *cobra.Command = nil ^ Signed-off-by: Sebastiaan van Stijn <[email protected]>Configuration menu - View commit details
-
Copy full SHA for 583d7ed - Browse repository at this point
Copy the full SHA 583d7edView commit details -
don't use "ctx" for continuity.Context arguments
ctx is commonly used for context.Context. Using it for any other purpose should be avoided to prevent confusion. Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2200bb4 - Browse repository at this point
Copy the full SHA 2200bb4View commit details -
rename variables that shadowed package-level type
Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 94c0490 - Browse repository at this point
Copy the full SHA 94c0490View commit details -
TestWalkFS: fix unhandled error
Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 38f66a6 - Browse repository at this point
Copy the full SHA 38f66a6View commit details -
cmd/continuity: switch to google.golang.org/protobuf/proto
The github.com/golang/protobuf/proto module is deprecated, and the main module already switched to google.golang.org/protobuf/proto in commit 74a0169. This patch updates the cmd/continuity module to use the new module as well. Before this patch: $ cd cmd/continuity $ go install $ continuity build ./continuityfs > manifest.pb $ continuity dump ./manifest.pb resource: < path: "/fuse.go" uid: 501 gid: 20 mode: 420 size: 7464 digest: "sha256:3d86240dcc3ea8ec7ae85d6c4e0bf0be1385b5d1e38564dcec72a69b51fcf919" > resource: < path: "/provider.go" uid: 501 gid: 20 mode: 420 size: 1728 digest: "sha256:8e3da0fd4a8d5e454ff027d4948d4b116ddaeb5ccdd0e10af806a2ecf2599710" > With this patch: $ cd cmd/continuity $ go install $ continuity build ./continuityfs > manifest.pb $ continuity dump ./manifest.pb resource: { path: "/fuse.go" uid: 501 gid: 20 mode: 420 size: 7464 digest: "sha256:3d86240dcc3ea8ec7ae85d6c4e0bf0be1385b5d1e38564dcec72a69b51fcf919" } resource: { path: "/provider.go" uid: 501 gid: 20 mode: 420 size: 1728 digest: "sha256:8e3da0fd4a8d5e454ff027d4948d4b116ddaeb5ccdd0e10af806a2ecf2599710" } Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fd64705 - Browse repository at this point
Copy the full SHA fd64705View commit details -
Merge pull request #260 from thaJeztah/switch_proto
cmd/continuity: switch to google.golang.org/protobuf/proto
Configuration menu - View commit details
-
Copy full SHA for c156753 - Browse repository at this point
Copy the full SHA c156753View commit details -
Merge pull request #259 from thaJeztah/fix_lint_step1
assorted linting fixes and minor cleanups
Configuration menu - View commit details
-
Copy full SHA for 0e83ada - Browse repository at this point
Copy the full SHA 0e83adaView commit details -
cmd/continuity: fix SA1019: entry.User/entry.Group is deprecated
Add nolint-comments, and a small utility to show either the user/group name (if present), otherwise fall back to use Uid/Gid. Before this patch: cd cmd/continuity go install continuity build ./continuityfs/ > manifest.pb continuity ls ./manifest.pb -rw-r--r-- 7.5 kB /fuse.go -rw-r--r-- 1.7 kB /provider.go With this patch: cd cmd/continuity go install continuity build ./continuityfs/ > manifest.pb continuity ls ./manifest.pb -rw-r--r-- 501 20 7.5 kB /fuse.go -rw-r--r-- 501 20 1.7 kB /provider.go Signed-off-by: Sebastiaan van Stijn <[email protected]>Configuration menu - View commit details
-
Copy full SHA for 38fcdae - Browse repository at this point
Copy the full SHA 38fcdaeView commit details -
cmd/continuity/continuityfs: SA1019: fuse.ENOENT is deprecated
Error: continuityfs/fuse.go:200:15: SA1019: fuse.ENOENT is deprecated: Return a syscall.Errno directly. See ToErrno for exact rules. (staticcheck) return nil, fuse.ENOENT ^ Signed-off-by: Sebastiaan van Stijn <[email protected]>Configuration menu - View commit details
-
Copy full SHA for cadd3a2 - Browse repository at this point
Copy the full SHA cadd3a2View commit details -
Makefile: make "lint" target also lint cmd/continuity module
cmd/continuity is a separate module, and therefore was not linted. Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4c00ab7 - Browse repository at this point
Copy the full SHA 4c00ab7View commit details
Commits on Oct 29, 2024
-
Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f4f4fb5 - Browse repository at this point
Copy the full SHA f4f4fb5View commit details
Commits on Oct 30, 2024
-
fs: implement Atime, Ctime, Mtime for bsd and darwin
Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dbe44eb - Browse repository at this point
Copy the full SHA dbe44ebView commit details -
Merge pull request #255 from thaJeztah/fix_lint
Makefile: make "lint" target also lint cmd/continuity module and fix linting issues
Configuration menu - View commit details
-
Copy full SHA for 163414b - Browse repository at this point
Copy the full SHA 163414bView commit details -
Merge pull request #262 from thaJeztah/fix_freebsd
fs: implement Atime, Ctime, Mtime for bsd and darwin
Configuration menu - View commit details
-
Copy full SHA for 3f84e3e - Browse repository at this point
Copy the full SHA 3f84e3eView commit details -
Merge pull request #261 from thaJeztah/fix_mtime
fs: fix Ctime returning Mtime
Configuration menu - View commit details
-
Copy full SHA for 44e2adf - Browse repository at this point
Copy the full SHA 44e2adfView 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 v0.4.4...v0.4.5