Skip to content

Commit 39399c1

Browse files
authored
Merge pull request #248 from ToxicMushroom/master
Update lp, lp rotator and kotlin
2 parents 7ff0450 + 336ca67 commit 39399c1

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
Each release usually includes various fixes and improvements.
44
The most noteworthy of these, as well as any features and breaking changes, are listed here.
55

6+
## v3.3
7+
8+
Officially limit Lavalink to JRE 11 and up. Magma has long been having issues with older versions.
9+
10+
## v3.2.2
11+
* IP rotation system for getting around certain ratelimits.
12+
* Update Lavaplayer to 1.3.32.
13+
* Docker container now uses a non-root user.
14+
15+
Contributors:
16+
[@Frederikam](https://github.com/Frederikam),
17+
[@ByteAlex](https://github.com/ByteAlex),
18+
[@duncte123](https://github.com/duncte123), and
19+
[@james7132](https://github.com/james7132)
20+
621
## v3.2.1.1
722
* Updated Lavaplayer to 1.3.19. This release includes a patch which fixes loading youtube URLs.
823
https://github.com/sedmelluq/lavaplayer/pull/199

IMPLEMENTATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ block
389389

390390
#### Unmark a failed address
391391
```
392-
GET /routeplanner/free/address
392+
POST /routeplanner/free/address
393393
Host: localhost:8080
394394
Authorization: youshallnotpass
395395
```
@@ -407,7 +407,7 @@ Response:
407407

408408
#### Unmark all failed address
409409
```
410-
GET /routeplanner/free/all
410+
POST /routeplanner/free/all
411411
Host: localhost:8080
412412
Authorization: youshallnotpass
413413
```

LavalinkServer/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bootJar {
1919
archiveName = "Lavalink.jar"
2020
}
2121

22-
sourceCompatibility = targetCompatibility = 1.8
22+
sourceCompatibility = targetCompatibility = 11
2323

2424
bootRun {
2525
//compiling tests during bootRun increases the likelihood of catching broken tests locally instead of on the CI

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ Being used in production by FredBoat, Dyno, Rythm, LewdBot, and more.
1919
* Prometheus metrics
2020
* Docker images
2121

22+
## Requirements
23+
24+
* Java 11 LTS or greater required.
25+
* OpenJDK or Zulu running on Linux AMD64 is officially supported.
26+
27+
Support for Darwin (Mac), Windows AMD64, and Linux ARM (Raspberry Pi) is provided on a best-effort basis. This is dependent on Lavaplayer's native libraries.
28+
29+
Support for other JVMs is also best-effort. Periodic CPU utilization stats are prone to not work everywhere.
30+
2231
## Changelog
2332

2433
Please see [here](CHANGELOG.md)

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
springBootVersion = '2.1.8.RELEASE'
44
gradleGitVersion = '1.5.2'
55
sonarqubeVersion = '2.6.2'
6-
kotlinVersion = '1.3.41'
6+
kotlinVersion = '1.3.61'
77
testLoggerVersion = '1.6.0'
88
}
99
repositories {
@@ -52,7 +52,7 @@ subprojects {
5252

5353
ext {
5454
//@formatter:off
55-
lavaplayerVersion = '1.3.32'
55+
lavaplayerVersion = '1.3.34'
5656
lavaplayerIpRotatorVersion = '0.1.7'
5757
magmaVersion = '0.12.4'
5858
jdaNasVersion = '1.1.0'

0 commit comments

Comments
 (0)