Bump reva
This commit is contained in:
committed by
Ralf Haferkamp
parent
366296eba6
commit
56a6b0c5d0
@@ -65,7 +65,7 @@ require (
|
||||
github.com/open-policy-agent/opa v1.15.1
|
||||
github.com/opencloud-eu/icap-client v0.0.0-20250930132611-28a2afe62d89
|
||||
github.com/opencloud-eu/libre-graph-api-go v1.0.8-0.20260310090739-853d972b282d
|
||||
github.com/opencloud-eu/reva/v2 v2.42.7-0.20260409144540-a3009b33f38b
|
||||
github.com/opencloud-eu/reva/v2 v2.42.7-0.20260413125349-61dfc72a7d60
|
||||
github.com/opensearch-project/opensearch-go/v4 v4.6.0
|
||||
github.com/orcaman/concurrent-map v1.0.0
|
||||
github.com/pkg/errors v0.9.1
|
||||
|
||||
@@ -954,8 +954,8 @@ github.com/opencloud-eu/inotifywaitgo v0.0.0-20251111171128-a390bae3c5e9 h1:dIft
|
||||
github.com/opencloud-eu/inotifywaitgo v0.0.0-20251111171128-a390bae3c5e9/go.mod h1:JWyDC6H+5oZRdUJUgKuaye+8Ph5hEs6HVzVoPKzWSGI=
|
||||
github.com/opencloud-eu/libre-graph-api-go v1.0.8-0.20260310090739-853d972b282d h1:JcqGDiyrcaQwVyV861TUyQgO7uEmsjkhfm7aQd84dOw=
|
||||
github.com/opencloud-eu/libre-graph-api-go v1.0.8-0.20260310090739-853d972b282d/go.mod h1:pzatilMEHZFT3qV7C/X3MqOa3NlRQuYhlRhZTL+hN6Q=
|
||||
github.com/opencloud-eu/reva/v2 v2.42.7-0.20260409144540-a3009b33f38b h1:lLTcDZUErhKa88ho+bAecGDcnuIccVZVPoFKfWpLB28=
|
||||
github.com/opencloud-eu/reva/v2 v2.42.7-0.20260409144540-a3009b33f38b/go.mod h1:45YSzBU2klnEfdb6dlo6DMNr9ttE/7C9gd8n3g8Co3Y=
|
||||
github.com/opencloud-eu/reva/v2 v2.42.7-0.20260413125349-61dfc72a7d60 h1:XzEgzKHK1uj/Y5dLq3jvj+bqoD91L3JPyN8AhVUXPxs=
|
||||
github.com/opencloud-eu/reva/v2 v2.42.7-0.20260413125349-61dfc72a7d60/go.mod h1:kLxe5tA2IfxRPHSHRN2KbrQ10C/I3O+WnPqUg6yD9cA=
|
||||
github.com/opencloud-eu/secure v0.0.0-20260312082735-b6f5cb2244e4 h1:l2oB/RctH+t8r7QBj5p8thfEHCM/jF35aAY3WQ3hADI=
|
||||
github.com/opencloud-eu/secure v0.0.0-20260312082735-b6f5cb2244e4/go.mod h1:BmF5hyM6tXczk3MpQkFf1hpKSRqCyhqcbiQtiAF7+40=
|
||||
github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
|
||||
|
||||
Generated
Vendored
+2
@@ -48,6 +48,8 @@ const (
|
||||
|
||||
// PropQuotaUnknown is the quota unknown property
|
||||
PropQuotaUnknown = "-2"
|
||||
// PropQuotaUnlimited is the quota unlimited property
|
||||
PropQuotaUnlimited = "-3"
|
||||
// PropOcFavorite is the favorite ns property
|
||||
PropOcFavorite = "http://owncloud.org/ns/favorite"
|
||||
// PropOcMetaPathForUser is the meta-path-for-user ns property
|
||||
|
||||
Generated
Vendored
+4
-1
@@ -1105,8 +1105,11 @@ func mdToPropResponse(ctx context.Context, pf *XML, md *provider.ResourceInfo, p
|
||||
sublog.Error().Err(err).Msg("could not unmarshal link json")
|
||||
}
|
||||
}
|
||||
if quota = utils.ReadPlainFromOpaque(md.Opaque, "quota"); quota == "" {
|
||||
switch quota = utils.ReadPlainFromOpaque(md.Opaque, "quota"); quota {
|
||||
case "":
|
||||
quota = net.PropQuotaUnknown
|
||||
case "0":
|
||||
quota = net.PropQuotaUnlimited
|
||||
}
|
||||
if md.Opaque.Map["lock"] != nil && md.Opaque.Map["lock"].Decoder == "json" {
|
||||
lock = &provider.Lock{}
|
||||
|
||||
Vendored
+1
-1
@@ -1372,7 +1372,7 @@ github.com/opencloud-eu/icap-client
|
||||
# github.com/opencloud-eu/libre-graph-api-go v1.0.8-0.20260310090739-853d972b282d
|
||||
## explicit; go 1.18
|
||||
github.com/opencloud-eu/libre-graph-api-go
|
||||
# github.com/opencloud-eu/reva/v2 v2.42.7-0.20260409144540-a3009b33f38b
|
||||
# github.com/opencloud-eu/reva/v2 v2.42.7-0.20260413125349-61dfc72a7d60
|
||||
## explicit; go 1.25.0
|
||||
github.com/opencloud-eu/reva/v2/cmd/revad/internal/grace
|
||||
github.com/opencloud-eu/reva/v2/cmd/revad/runtime
|
||||
|
||||
Reference in New Issue
Block a user