Skip to content

Commit 6590cb5

Browse files
Change trunk from 5.1 to 6.0
patch by Mick Semb Wever; reviewed by Dmitry Konstantinov for CASSANDRA-21243
1 parent 5c07c12 commit 6590cb5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+127
-127
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
5.1
1+
6.0
22
* Improve performance when calculating settled placements during range movements (CASSANDRA-21144)
33
* Make shadow gossip round parameters configurable for testing (CASSANDRA-21149)
44
* Avoid potential gossip thread deadlock during decommission (CASSANDRA-21143)

NEWS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ restore snapshots created with the previous major version using the
7575
using the provided 'sstableupgrade' tool.
7676

7777

78-
5.1
78+
6.0
7979
===
8080

8181
New features

README.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ be sitting in front of a prompt:
5252

5353
----
5454
Connected to Test Cluster at localhost:9160.
55-
[cqlsh 6.3.0 | Cassandra 5.0-SNAPSHOT | CQL spec 3.4.8 | Native protocol v5]
55+
[cqlsh 6.3.0 | Cassandra 6.0-SNAPSHOT | CQL spec 3.4.8 | Native protocol v5]
5656
Use HELP for help.
5757
cqlsh>
5858
----

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<property name="debuglevel" value="source,lines,vars"/>
3434

3535
<!-- default version and SCM information -->
36-
<property name="base.version" value="5.1"/>
36+
<property name="base.version" value="6.0"/>
3737
<property name="scm.connection" value="scm:https://gitbox.apache.org/repos/asf/cassandra.git"/>
3838
<property name="scm.developerConnection" value="scm:https://gitbox.apache.org/repos/asf/cassandra.git"/>
3939
<property name="scm.url" value="https://gitbox.apache.org/repos/asf?p=cassandra.git"/>

conf/cassandra.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1481,7 +1481,7 @@ slow_query_log_timeout: 500ms
14811481
# most users should never need to adjust this.
14821482
# phi_convict_threshold: 8
14831483

1484-
# IEndpointSnitch has been deprecated in Cassandra 5.1
1484+
# IEndpointSnitch has been deprecated in Cassandra 6.0
14851485
# Configuring a cluster with an IEndpointSnitch implementation using the endpoint_snitch setting remains supported,
14861486
# but is superceded by the new settings detailed below.
14871487
# endpoint_snitch -- Set this to a class that implements

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cassandra (5.1) UNRELEASED; urgency=medium
1+
cassandra (6.0) UNRELEASED; urgency=medium
22

33
* New release
44

doc/modules/cassandra/pages/managing/operating/virtualtables.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ Thread pool information includes active tasks, active tasks limit,
438438
blocked tasks, blocked tasks all time, completed tasks, and pending
439439
tasks. A query on the `thread_pools` returns following details:
440440

441-
From 5.1 (CASSANDRA-19289), this table also displays core pool size, max pool size and max queued tasks values (visible
441+
From 6.0 (CASSANDRA-19289), this table also displays core pool size, max pool size and max queued tasks values (visible
442442
from `nodetool tpstats --verbose` as well.)
443443

444444
[source, console]

doc/modules/cassandra/pages/new/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
= New Features
22
:navtitle: What's new
33

4-
== New Features in Apache Cassandra 5.1
4+
== New Features in Apache Cassandra 6.0
55

6-
This section covers the new features in Apache Cassandra 5.1.
6+
This section covers the new features in Apache Cassandra 6.0.
77

88
* https://cwiki.apache.org/confluence/x/FQRACw[ACID Transactions (Accord)]
99
* https://cwiki.apache.org/confluence/x/YyD1D[Transactional Cluster Metadata]

ide/nbproject/project.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/java/org/apache/cassandra/config/Config.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ public static Set<String> splitCommaDelimited(String src)
187187

188188
public volatile DurationSpec.LongMillisecondsBound cms_await_timeout = new DurationSpec.LongMillisecondsBound("120000ms");
189189
public volatile int cms_default_max_retries = 10;
190-
@Deprecated(since="5.1")
190+
@Deprecated(since="6.0")
191191
public volatile DurationSpec.IntMillisecondsBound cms_default_retry_backoff = null;
192-
@Deprecated(since="5.1")
192+
@Deprecated(since="6.0")
193193
public volatile DurationSpec.IntMillisecondsBound cms_default_max_retry_backoff = null;
194194
public String cms_retry_delay = "50ms*attempts <= 500ms ... 100ms*attempts <= 1s,retries=10";
195195

0 commit comments

Comments
 (0)