Skip to content

Commit 3d237aa

Browse files
authored
chore: prepare RC-1 (#783)
### Motivation RC-1 is on its way and we need to prepare everything for it. ### Modifications Added a new `beta` branch in the launcher.cnl which is the new default. ### Results We are getting closer to RC-1
1 parent aba0d87 commit 3d237aa

File tree

4 files changed

+6
-68
lines changed

4 files changed

+6
-68
lines changed

Jenkinsfile

Lines changed: 0 additions & 65 deletions
This file was deleted.

build-extensions/src/main/kotlin/Versions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
object Versions {
1818

1919
// internal versions
20-
const val cloudNet = "4.0.0-SNAPSHOT"
20+
const val cloudNet = "4.0.0-RC1"
2121
const val cloudNetCodeName = "Blizzard"
2222

2323
// external tools

launcher/java17/src/main/resources/launcher.cnl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,13 @@ var cloudnet.updateRepo CloudNetService/launchermeta
3434
# branches are:
3535
# - 'release': Always contains the latest release version. This is the best version you can choose for a network
3636
# running in production.
37+
# - 'beta': Contains the newest features of the system which are partly tested and out for community testing.
38+
# These features might still be broken but shouldn't break your network. Changes to these features are
39+
# still possible and your configuration you did might break when the feature gets out of testing.
3740
# - 'nightly': All bleeding edge but newest features of the system. DO NOT USE IN PRODUCTION. Your network is not
3841
# safe and something might break. Good for testing purposes or developers which want to use the latest
3942
# features available. (Use this branch at your own risk!)
40-
var cloudnet.updateBranch release
43+
var cloudnet.updateBranch beta
4144

4245
# available default log levels: OFF, SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST, ALL
4346
# each level includes all messages for levels lower than itself (in the above list: left to right) too

modules/rest/src/main/resources/documentation/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info" : {
44
"description" : "CloudNet's rest API version 2 is the next generation in CloudNet's rest history. It has\ndefinitely more opportunities than the previous version of it and provides\na lot of methods to manage and control the CloudNet node and cluster behaviour.\n\nThe API is based on http/https requests and mostly JSON responses. You need\nto send your session bearer token when you make a request. The token can be\nobtained by sending a request to the /auth route. Most of the routes require\nan authentication and a permission which must be set to access the endpoint.\n\nAll the responses contain a `success` boolean (if they are JSON responses) giving\ninformation whether or not the request was handled successfully. If that boolean is\n`false` an extra `reason` field is appended to the JSON entity defining the cause\nof the failure.\n\nEvery rest rout is fixed to a version number and every call must contain one.\nThe latest one is 2. The latest stable endpoint base URL is\n`http(s)://{host}:{port}/api/v2/`. Host and port is the one defined in your\nCloudNet's node config.json `httpListeners` section. If you want to use https\nyou have to configure the web SSL settings in the same file.\n",
55
"version" : "2",
6-
"title" : "CloudNet v3",
6+
"title" : "CloudNet",
77
"contact" : {
88
"url" : "https://cloudnetservice.eu",
99
"name" : "CloudNetService"

0 commit comments

Comments
 (0)