Skip to content

Commit 912b060

Browse files
committed
chore: prepare release, bump version
1 parent 5f76e95 commit 912b060

23 files changed

+443
-106
lines changed

CHANGELOG.md

+163-28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,138 @@
1+
Changelog for reva 2.26.0 (2024-10-21)
2+
=======================================
3+
4+
The following sections list the changes in reva 2.26.0 relevant to
5+
reva users. The changes are ordered by importance.
6+
7+
Summary
8+
-------
9+
10+
* Fix #4880: Kept historical resource naming in activity
11+
* Fix #4874: Fix rename activity
12+
* Fix #4881: Log levels
13+
* Fix #4884: Fix OCM upload crush
14+
* Fix #4872: Return 409 conflict when a file was already created
15+
* Fix #4887: Fix ShareCache concurrency panic
16+
* Fix #4876: Fix share jail mountpoint parent id
17+
* Fix #4879: Fix trash-bin propfind panic
18+
* Fix #4888: Fix upload session bugs
19+
* Fix #4560: Always select next before making CS3 calls for propfinds
20+
* Enh #4893: Bump dependencies and go to 1.22.8
21+
* Enh #4890: Bump golangci-lint to 1.61.0
22+
* Enh #4886: Add new Mimetype ggp
23+
* Enh #4809: Implement OCM well-known endpoint
24+
* Enh #4889: Improve posixfs stability and performance
25+
* Enh #4882: Indicate template conversion capabilties on apps
26+
27+
Details
28+
-------
29+
30+
* Bugfix #4880: Kept historical resource naming in activity
31+
32+
Kept historical resource naming after renaming in activity for shares and public links.
33+
34+
https://github.com/owncloud/ocis/issues/10210
35+
https://github.com/cs3org/reva/pull/4880
36+
37+
* Bugfix #4874: Fix rename activity
38+
39+
We fixed the activity when file with file-id gives move activity instead of rename.
40+
41+
https://github.com/owncloud/ocis/issues/9744
42+
https://github.com/cs3org/reva/pull/4874
43+
44+
* Bugfix #4881: Log levels
45+
46+
We changed the following log levels:
47+
48+
- `ERROR` to `DEBUG` in `internal/grpc/services/usershareprovider` when getting received
49+
shares
50+
51+
https://github.com/cs3org/reva/pull/4881
52+
53+
* Bugfix #4884: Fix OCM upload crush
54+
55+
We fixed an issue where a federated instance crashed when uploading a file to a remote folder.
56+
Fixed the cleanup blob and meta of the uploaded files.
57+
58+
https://github.com/cs3org/reva/pull/4884
59+
60+
* Bugfix #4872: Return 409 conflict when a file was already created
61+
62+
We now return the correct 409 conflict status code when a file was already created by another
63+
upload.
64+
65+
https://github.com/cs3org/reva/pull/4872
66+
67+
* Bugfix #4887: Fix ShareCache concurrency panic
68+
69+
We fixed an issue where concurrently read and write operations led to a panic in the ShareCache.
70+
71+
https://github.com/cs3org/reva/pull/4887
72+
73+
* Bugfix #4876: Fix share jail mountpoint parent id
74+
75+
Stating a share jail mountpoint now returns the share jail root as the parent id.
76+
77+
https://github.com/owncloud/ocis/issues/9933
78+
https://github.com/cs3org/reva/pull/4876
79+
80+
* Bugfix #4879: Fix trash-bin propfind panic
81+
82+
We fixed an issue where a trash-bin `propfind` request panicked due to a failed and therefore
83+
`nil` resource reference lookup.
84+
85+
https://github.com/cs3org/reva/pull/4879
86+
87+
* Bugfix #4888: Fix upload session bugs
88+
89+
We fixed an issue that caused a panic when we could not open a file to calculate checksums.
90+
Furthermore, we now delete the upload session .lock file on cleanup.
91+
92+
https://github.com/cs3org/reva/pull/4888
93+
94+
* Bugfix #4560: Always select next before making CS3 calls for propfinds
95+
96+
We now select the next client more often to spread out load
97+
98+
https://github.com/cs3org/reva/pull/4560
99+
100+
* Enhancement #4893: Bump dependencies and go to 1.22.8
101+
102+
https://github.com/cs3org/reva/pull/4893
103+
104+
* Enhancement #4890: Bump golangci-lint to 1.61.0
105+
106+
https://github.com/cs3org/reva/pull/4890
107+
108+
* Enhancement #4886: Add new Mimetype ggp
109+
110+
Adds a new mimetype application/vnd.geogebra.pinboard (ggp) to the app-registry
111+
112+
https://github.com/cs3org/reva/pull/4886
113+
114+
* Enhancement #4809: Implement OCM well-known endpoint
115+
116+
The `wellknown` service now implements the `/.well-known/ocm` endpoint for OCM discovery.
117+
The unused endpoints for openid connect and webfinger have been removed. This aligns the
118+
wellknown implementation with the master branch.
119+
120+
https://github.com/cs3org/reva/pull/4809
121+
122+
* Enhancement #4889: Improve posixfs stability and performance
123+
124+
The posixfs storage driver saw a number of bugfixes and optimizations.
125+
126+
https://github.com/cs3org/reva/pull/4889
127+
https://github.com/cs3org/reva/pull/4877
128+
129+
* Enhancement #4882: Indicate template conversion capabilties on apps
130+
131+
We added information to the available app providers to indicate which mimetypes can be used for
132+
template conversion.
133+
134+
https://github.com/cs3org/reva/pull/4882
135+
1136
Changelog for reva 2.25.0 (2024-09-30)
2137
=======================================
3138

@@ -4779,6 +4914,34 @@ Details
47794914

47804915
https://github.com/cs3org/reva/pull/3083
47814916

4917+
Changelog for reva 2.7.1 (2022-07-15)
4918+
=======================================
4919+
4920+
The following sections list the changes in reva 2.7.1 relevant to
4921+
reva users. The changes are ordered by importance.
4922+
4923+
Summary
4924+
-------
4925+
4926+
* Fix #3080: Make dataproviders return more headers
4927+
* Enh #3046: Add user filter
4928+
4929+
Details
4930+
-------
4931+
4932+
* Bugfix #3080: Make dataproviders return more headers
4933+
4934+
Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the
4935+
necessary metadata information as headers.
4936+
4937+
https://github.com/owncloud/reva/issues/3080
4938+
4939+
* Enhancement #3046: Add user filter
4940+
4941+
This PR adds the ability to filter spaces by user-id
4942+
4943+
https://github.com/cs3org/reva/pull/3046
4944+
47824945
Changelog for reva 2.7.0 (2022-07-15)
47834946
=======================================
47844947

@@ -4911,34 +5074,6 @@ Details
49115074
https://github.com/owncloud/ocis/issues/3073
49125075
https://github.com/cs3org/reva/pull/2977
49135076

4914-
Changelog for reva 2.7.1 (2022-07-15)
4915-
=======================================
4916-
4917-
The following sections list the changes in reva 2.7.1 relevant to
4918-
reva users. The changes are ordered by importance.
4919-
4920-
Summary
4921-
-------
4922-
4923-
* Fix #3080: Make dataproviders return more headers
4924-
* Enh #3046: Add user filter
4925-
4926-
Details
4927-
-------
4928-
4929-
* Bugfix #3080: Make dataproviders return more headers
4930-
4931-
Instead of ocdav doing an additional Stat request we now rely on the dataprovider to return the
4932-
necessary metadata information as headers.
4933-
4934-
https://github.com/owncloud/reva/issues/3080
4935-
4936-
* Enhancement #3046: Add user filter
4937-
4938-
This PR adds the ability to filter spaces by user-id
4939-
4940-
https://github.com/cs3org/reva/pull/3046
4941-
49425077
Changelog for reva 2.6.1 (2022-06-27)
49435078
=======================================
49445079

RELEASE_DATE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-09-30
1+
2024-10-21

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.25.0
1+
2.26.0

0 commit comments

Comments
 (0)