Skip to content

Commit eb5ebb5

Browse files
Bump version 3.6.2-a.0+dev -> 3.7.1-a.0+dev
1 parent e8f69be commit eb5ebb5

30 files changed

+98
-65
lines changed

Cargo.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ publish = false
6969
repository = "https://github.com/Scille/parsec-cloud"
7070
# We use the same version for all crates.
7171
# This comment is used to prevent `taplo` from adding multiple spaces between the version and the comment.
72-
version = "3.6.2-a.0+dev" # __PARSEC_VERSION__
72+
version = "3.7.1-a.0+dev" # __PARSEC_VERSION__
7373

7474
[workspace.lints.clippy]
7575
undocumented_unsafe_blocks = "deny"

HISTORY.rst

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,43 @@ History
44
.. towncrier release notes start
55
66
7+
Parsec v3.7.0 (2025-11-28)
8+
--------------------------
9+
10+
Features
11+
~~~~~~~~
12+
13+
* Update component library (megashark-lib) and show/hide action bar buttons
14+
based on the screen size
15+
(`#11391 <https://github.com/Scille/parsec-cloud/issues/11391>`__)
16+
17+
* Remove support for server-side request rejection of web client based on `User-
18+
Agent` header (CORS configuration should be used instead).
19+
(`#11628 <https://github.com/Scille/parsec-cloud/issues/11628>`__)
20+
21+
* Added support for Single Sign-On authentication via ProConnect
22+
(`#10282 <https://github.com/Scille/parsec-cloud/issues/10282>`__)
23+
24+
25+
Bugfixes
26+
~~~~~~~~
27+
28+
* Fixed an issue where a folder could be open twice and prevent further
29+
navigation
30+
(`#11640 <https://github.com/Scille/parsec-cloud/issues/11640>`__)
31+
32+
* Fixed broken server CLI commands (export, inspect, sequester
33+
create/list/revoke)
34+
(`#11702 <https://github.com/Scille/parsec-cloud/issues/11702>`__)
35+
36+
* Fixed server error on stats route if organization does not exists
37+
(`#11477 <https://github.com/Scille/parsec-cloud/issues/11477>`__)
38+
39+
* Enhance CryptPad error management
40+
(`#11697 <https://github.com/Scille/parsec-cloud/issues/11697>`__)
41+
42+
43+
744
Parsec v3.6.1 (2025-11-14)
845
--------------------------
946

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PARSEC BUSINESS SOURCE LICENSE AGREEMENT
22

33
Business Source License 1.1
44
Licensor: Scille SAS
5-
Licensed Work: Parsec v3.6.2-a.0+dev
5+
Licensed Work: Parsec v3.7.1-a.0+dev
66
The Licensed Work is © 2016-2021 Scille SAS
77

88
Additional Use Grant: You may make production use of the Licensed Work, provided
@@ -19,7 +19,7 @@ Additional Use Grant: You may make production use of the Licensed Work, provided
1919
2) use the Licensed Work for use in a governmental or any
2020
for-profit entity with more than fifty (50) users.
2121

22-
Change Date: Nov 13, 2029
22+
Change Date: Nov 27, 2029
2323

2424

2525
Change License: GNU Affero General Public License, Version 3 (AGPLv3)

bindings/electron/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "libparsec_bindings_electron",
3-
"version": "3.6.2-a.0+dev",
3+
"version": "3.7.1-a.0+dev",
44
"description": "",
55
"main": "dist/libparsec.node",
66
"scripts": {

bindings/web/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "libparsec_bindings_web",
33
"private": true,
4-
"version": "3.6.2-a.0+dev",
4+
"version": "3.7.1-a.0+dev",
55
"license": "BUSL-1.1",
66
"scripts": {
77
"build": "node scripts/build.js",

cli/tests/integration/version.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
fn version() {
33
crate::assert_cmd_success!("--version").stdout(
44
// Using `concat!` simplify updating the version using `version-updater`
5-
concat!("parsec-cli 3.6.2-a.0+dev", "\n"),
5+
concat!("parsec-cli 3.7.1-a.0+dev", "\n"),
66
);
77
}

client/electron/assets/electron-publisher-custom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const { GitHubPublisher } = require('electron-publish/out/gitHubPublisher');
44

5-
const VERSION = '3.6.2-a.0+dev';
5+
const VERSION = '3.7.1-a.0+dev';
66

77
class CustomGitHubPublisher extends GitHubPublisher {
88
/**

0 commit comments

Comments
 (0)