opencloudeu
1228c4ed20
[tx] updated from transifex
2025-08-20 00:02:32 +00:00
dependabot[bot]
84dcc3b7f2
build(deps): bump github.com/onsi/ginkgo/v2 from 2.23.4 to 2.24.0
...
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo ) from 2.23.4 to 2.24.0.
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md )
- [Commits](https://github.com/onsi/ginkgo/compare/v2.23.4...v2.24.0 )
---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo/v2
dependency-version: 2.24.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-08-19 22:17:27 +00:00
Jörn Friedrich Dreyer
2751cfee2c
directly connect to frontend
...
The STORAGE_USERS_DATA_GATEWAY_URL env var is used in the `tokens` `datagateway_endpoint` reva configuration. That `DataGatewayEndpoint` is used by the decomposedfs driver to create urls:
```go
// URL returns a url to download an upload
func (session *DecomposedFsSession) URL(_ context.Context) (string, error) {
// [ ... ]
return joinurl(session.store.tknopts.DataGatewayEndpoint, tkn), nil
}
```
As the comment points out this URL is internally used when emitting events. Either in:
```go
func (session *DecomposedFsSession) FinishUploadDecomposed(ctx context.Context) error {
// [ ... ]
s, err := session.URL(ctx)
if err != nil {
return err
}
var iu *userpb.User
if utils.ExistsInOpaque(u.Opaque, "impersonating-user") {
iu = &userpb.User{}
if err := utils.ReadJSONFromOpaque(u.Opaque, "impersonating-user", iu); err != nil {
return err
}
}
if err := events.Publish(ctx, session.store.pub, events.BytesReceived{
UploadID: session.ID(),
URL: s,
```
or in
```go
// Postprocessing starts the postprocessing result collector
func (fs *Decomposedfs) Postprocessing(ch <-chan events.Event) {
// [ ... ]
s, err := session.URL(ctx)
if err != nil {
sublog.Error().Err(err).Msg("could not create url")
continue
}
metrics.UploadSessionsRestarted.Inc()
// restart postprocessing
if err := events.Publish(ctx, fs.stream, events.BytesReceived{
UploadID: session.ID(),
URL: s,
```
So, we do not need to go throught the proxy here.
2025-08-19 14:58:30 +02:00
opencloudeu
20adc6754b
[tx] updated from transifex
2025-08-19 00:02:29 +00:00
Ralf Haferkamp
4fe87c25f8
Merge pull request #1359 from opencloud-eu/dependabot/go_modules/github.com/gookit/config/v2-2.2.7
...
build(deps): bump github.com/gookit/config/v2 from 2.2.6 to 2.2.7
2025-08-18 11:14:15 +02:00
Ralf Haferkamp
10f7ca721f
Merge pull request #1356 from opencloud-eu/dependabot/go_modules/golang.org/x/net-0.43.0
...
build(deps): bump golang.org/x/net from 0.42.0 to 0.43.0
2025-08-18 09:05:12 +02:00
Ralf Haferkamp
80ae9e4259
Merge pull request #1353 from rhafer/issue/1277
...
fix(proxy): First login fails in auto provision setups
2025-08-18 07:59:15 +02:00
dependabot[bot]
89a7d171ee
build(deps): bump github.com/gookit/config/v2 from 2.2.6 to 2.2.7
...
Bumps [github.com/gookit/config/v2](https://github.com/gookit/config ) from 2.2.6 to 2.2.7.
- [Release notes](https://github.com/gookit/config/releases )
- [Commits](https://github.com/gookit/config/compare/v2.2.6...v2.2.7 )
---
updated-dependencies:
- dependency-name: github.com/gookit/config/v2
dependency-version: 2.2.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-08-15 14:15:33 +00:00
Viktor Scharf
28770fe20d
run all tests with POSIX_WATCH_FS=true ( #1342 )
2025-08-15 13:44:35 +02:00
Ralf Haferkamp
69c0d21539
Dockerfile cleanup ( #1352 )
...
* Dockerfile.multiarch: use bind- and cache-mounts to speedup build
Use a cache mount for go build cache in the build container and mount
the sources as a bind mount as recommended in
https://docs.docker.com/build/cache/optimize/ this largely speeds up the
container build for subsequent builds.
* Use Dockerfile.multiarch for "dev-docker" target
Let's remove some redundancy. AFAICS the Docker.multiarch does
everything the Docker.linux.* files did. And with the build caches
enable it should be just as quick as building on the host.
* Dockerfile.multiarch: Align the alpine version of the base images
* Dockerfile: Reduce build context by adding more files to .dockerignore
2025-08-15 12:41:36 +02:00
Artur Neumann
2c1aa8585e
run CI on cron jobs ( #1350 )
2025-08-15 09:59:29 +05:45
dependabot[bot]
bd982dd55f
build(deps): bump golang.org/x/net from 0.42.0 to 0.43.0
...
Bumps [golang.org/x/net](https://github.com/golang/net ) from 0.42.0 to 0.43.0.
- [Commits](https://github.com/golang/net/compare/v0.42.0...v0.43.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/net
dependency-version: 0.43.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-08-14 16:40:32 +00:00
Florian Schade
1ea1322f14
Merge pull request #1357 from fschade/bump-reva-25-08-14
...
chore(dependencies): bump reva 19625996460b2e68da3bbaf539e554366c59e111
2025-08-14 18:38:29 +02:00
fschade
db5fbf4237
chore(dependencies): bump reva
2025-08-14 17:27:38 +02:00
Benedikt Kulmann
b2c87793b5
Merge pull request #1354 from opencloud-eu/add-default-app-id-option
...
feat: add defaultAppId option for the web config.json
2025-08-14 16:40:01 +02:00
Benedikt Kulmann
692de314b9
feat: add defaultAppId option for the web config.json
2025-08-14 16:02:01 +02:00
Ralf Haferkamp
3a8b370a08
fix(proxy): First login fails in auto provision setups
...
Redeclaring the `err` variable inside the if statement made the
later error check fail even when the user was successfully created.
Fixes : #1277
2025-08-14 15:36:23 +02:00
Artur Neumann
5de38d579f
run CI on cron jobs
2025-08-14 16:07:26 +05:45
Ralf Haferkamp
1de514dff5
Merge pull request #1323 from opencloud-eu/dependabot/go_modules/golang.org/x/image-0.30.0
...
build(deps): bump golang.org/x/image from 0.28.0 to 0.30.0
2025-08-14 08:52:35 +02:00
Ralf Haferkamp
0898bcbf22
Merge pull request #1339 from opencloud-eu/dependabot/go_modules/github.com/nats-io/nats-server/v2-2.11.7
...
build(deps): bump github.com/nats-io/nats-server/v2 from 2.11.6 to 2.11.7
2025-08-14 08:49:26 +02:00
Prashant Gurung
9462ad524f
Merge pull request #1249 from opencloud-eu/matrix-notifications
...
[full-ci] add pipeline to send CI notifications to matrix
2025-08-13 17:04:17 +05:45
prashant-gurung899
9e86482863
add pipeline to send matrix notification
...
Signed-off-by: prashant-gurung899 <prasantgrg777@gmail.com >
2025-08-13 12:24:45 +05:45
dependabot[bot]
a85e853365
build(deps): bump github.com/nats-io/nats-server/v2
...
Bumps [github.com/nats-io/nats-server/v2](https://github.com/nats-io/nats-server ) from 2.11.6 to 2.11.7.
- [Changelog](https://github.com/nats-io/nats-server/blob/main/.goreleaser.yml )
- [Commits](https://github.com/nats-io/nats-server/compare/v2.11.6...v2.11.7 )
---
updated-dependencies:
- dependency-name: github.com/nats-io/nats-server/v2
dependency-version: 2.11.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-08-12 19:53:59 +00:00
Ralf Haferkamp
b17deb0ebe
Merge pull request #1266 from opencloud-eu/dependabot/go_modules/github.com/onsi/gomega-1.38.0
...
build(deps): bump github.com/onsi/gomega from 1.37.0 to 1.38.0
2025-08-12 12:03:48 +02:00
dependabot[bot]
0e266ebc09
build(deps): bump golang.org/x/image from 0.28.0 to 0.30.0
...
Bumps [golang.org/x/image](https://github.com/golang/image ) from 0.28.0 to 0.30.0.
- [Commits](https://github.com/golang/image/compare/v0.28.0...v0.30.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/image
dependency-version: 0.30.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-08-12 10:01:23 +00:00
Florian Schade
b0b59af719
[full-ci] fix(star): full-ci failed due to wrong syntax ( #1331 )
...
* fix(star): full-ci failed due to wrong syntax
* add restore browser cashe to multiservicesE2e
* add browser path
---------
Co-authored-by: Viktor Scharf <v.scharf@opencloud.eu >
2025-08-12 11:29:55 +02:00
OpenCloud Devops
24210c7b3a
🎉 Release 3.3.0 ( #1296 )
...
* 🎉 Release 3.2.2
* 🎉 Release 3.2.2
* 🎉 Release 3.2.2
* 🎉 Release 3.2.2
* 🎉 Release 3.2.2
* 🎉 Release 3.2.2
* 🎉 Release 3.3.0
* 🎉 Release 3.3.0
* 🎉 Release 3.3.0
* 🎉 Release 3.3.0
* 🎉 Release 3.3.0
* 🎉 Release 3.3.0
* 🎉 Release 3.3.0
* 🎉 Release 3.3.0
v3.3.0
2025-08-12 09:05:23 +02:00
opencloudeu
8565ed9277
[tx] updated from transifex
2025-08-12 00:01:50 +00:00
Viktor Scharf
75b0cd9909
bump-version-v3.3.0 ( #1332 )
2025-08-11 17:29:13 +02:00
Viktor Scharf
b940b0c457
chore: bump web to v3.3.0 ( #1329 )
...
* chore: bump web to v3.3.0
* trigger ci
* exclude mobile-view tests
2025-08-11 16:44:05 +02:00
dependabot[bot]
150fe2b4d7
build(deps): bump github.com/onsi/gomega from 1.37.0 to 1.38.0
...
---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
dependency-version: 1.38.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2025-08-11 08:50:34 +00:00
Viktor Scharf
6e5e5a7e8a
Reva bump 2.36.0 ( #1328 )
2025-08-11 10:45:49 +02:00
Viktor Scharf
62a7f79f51
multiTenancyTests ( #1313 )
...
* multiTenancyTests
* fix linter issues
* fix after review
2025-08-08 10:16:57 +02:00
opencloudeu
b1968591b1
[tx] updated from transifex
2025-08-08 00:01:44 +00:00
Andre Duffeck
05b80b7f63
Bump reva ( #1315 )
2025-08-07 12:48:52 +02:00
Michael Stingl
9659e97056
Fix posix driver documentation in STORAGE_USERS_DRIVER description ( #1305 )
...
- Add 'posix' to the list of supported values
- Correct the default value from 'decomposed' to 'posix'
- Add brief description of the posix driver
Fixes : #1304
2025-08-06 17:46:44 +02:00
Christian Richter
8238a4091a
Merge pull request #1274 from aduffeck/tenant-id
...
Tenant
2025-08-06 13:47:43 +02:00
André Duffeck
0f09cdd8ec
bump reva
2025-08-05 17:12:58 +02:00
André Duffeck
b9f48edd87
Try to find users by username or id, just like the ldap backend does
2025-08-05 17:10:59 +02:00
André Duffeck
926a2c2080
Filter users by tenant, add tenant ids to demo users
2025-08-05 17:10:59 +02:00
opencloudeu
7b3e8444d1
[tx] updated from transifex
2025-08-05 00:01:44 +00:00
Andre Duffeck
13c3f42396
Merge pull request #1306 from aduffeck/search-batches
...
Improve indexing performance using batches
2025-08-04 17:06:33 +02:00
André Duffeck
7c59e57d43
Make batch size configurable
2025-08-04 16:14:56 +02:00
André Duffeck
7a7d148dcf
Fix tests
2025-08-04 15:39:27 +02:00
André Duffeck
3c8e2dacfd
Improve indexing performance using batches
2025-08-04 15:15:54 +02:00
opencloudeu
77ddcc2d6b
[tx] updated from transifex
2025-08-02 00:01:37 +00:00
Andre Duffeck
e255f81279
Merge pull request #1302 from aduffeck/debouncer
...
Do not run the timout func if the work func has run
2025-08-01 14:38:33 +02:00
André Duffeck
1afc1331af
Do not run the timout func if the work func has run
2025-08-01 10:03:56 +02:00
opencloudeu
6d86b35651
[tx] updated from transifex
2025-08-01 00:01:13 +00:00
Andre Duffeck
977d706a43
Merge pull request #1295 from aduffeck/promauto-fix
...
Make sure to register prometheus collectors only once
2025-07-31 09:28:49 +02:00