tesshucom and François-Xavier Thomas
e635055bf6
Fix not to perform clean up during scan
...
(#1550 )
2020-03-15 18:58:43 +01:00
François-Xavier Thomas
74b281a078
Rename misleading var names in PlayQueueService
...
This changes "index" to either "startIndex" or "addAtIndex" depending on
the use case, to make it more clear that these are different.
2020-03-15 17:55:38 +01:00
François-Xavier Thomas
90e63817d0
Remove unused 'index' parameter from DWR addPlaylist method
2020-03-15 17:55:38 +01:00
dependabot-preview[bot] and François-Xavier Thomas
d6f116d2a8
Bump liquibase-core from 3.8.6 to 3.8.7
...
Bumps [liquibase-core](https://github.com/liquibase/liquibase ) from 3.8.6 to 3.8.7.
- [Release notes](https://github.com/liquibase/liquibase/releases )
- [Changelog](https://github.com/liquibase/liquibase/blob/v3.8.7/changelog.txt )
- [Commits](https://github.com/liquibase/liquibase/compare/v3.8.6...v3.8.7 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-03-15 17:55:22 +01:00
tesshucom and François-Xavier Thomas
47aea55077
Avoid NPE
...
Because there is a case where IndexSearcher is null before the scan is
executed.
2020-03-15 17:54:19 +01:00
tesshu.com and GitHub
06bfbf1d7f
A small fix for the message
2020-03-11 18:00:33 +00:00
Evan Harris and GitHub
2022e98df9
Disable now defunct chartlyrics lookups
2020-03-08 13:35:51 +00:00
jvoisin and GitHub
7bafdd1027
Bump jackson version
...
This also factorise all the jackson things into a variable for the versions.
2020-03-08 12:57:02 +00:00
François-Xavier Thomas and GitHub
38b56e2261
Update tomcat to 8.5.51
2020-03-08 12:11:23 +00:00
jvoisin and GitHub
135886374a
Use codecov for coverage visualisation
2020-02-21 09:43:01 +00:00
dependabot-preview[bot] and GitHub
80ccd8234e
Bump java-jwt from 3.9.0 to 3.10.0 ( #1546 )
...
Bumps [java-jwt](https://github.com/auth0/java-jwt ) from 3.9.0 to 3.10.0.
- [Release notes](https://github.com/auth0/java-jwt/releases )
- [Changelog](https://github.com/auth0/java-jwt/blob/master/CHANGELOG.md )
- [Commits](https://github.com/auth0/java-jwt/compare/3.9.0...3.10.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-19 20:40:46 +00:00
jvoisin and GitHub
e702612a03
Bump checker and guava
2020-02-17 20:38:14 +00:00
dependabot-preview[bot] and François-Xavier Thomas
3134f70757
Bump commons-dbcp2 from 2.5.0 to 2.7.0
...
Bumps commons-dbcp2 from 2.5.0 to 2.7.0.
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-16 22:20:09 +01:00
François-Xavier Thomas and GitHub
8651a405ee
Update mysql-java-connector to 8.0.19 ( #1511 )
2020-02-16 13:40:37 +00:00
jvoisin and GitHub
6599e6a689
Minor cleanup of InternalHelpController.java ( #1525 )
...
- Access static methods explicitly
- Remove useless String.format calls
2020-02-15 10:33:48 +00:00
dependabot-preview[bot] and GitHub
4d33d72730
Bump maven-surefire-plugin from 2.22.0 to 2.22.2 ( #1534 )
...
Bumps [maven-surefire-plugin](https://github.com/apache/maven-surefire ) from 2.22.0 to 2.22.2.
- [Release notes](https://github.com/apache/maven-surefire/releases )
- [Commits](https://github.com/apache/maven-surefire/compare/surefire-2.22.0...surefire-2.22.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-15 10:31:07 +00:00
dependabot-preview[bot] and jvoisin
478d316bb4
Bump jackson-annotations from 2.10.0 to 2.10.2
...
Bumps [jackson-annotations](https://github.com/FasterXML/jackson ) from 2.10.0 to 2.10.2.
- [Release notes](https://github.com/FasterXML/jackson/releases )
- [Commits](https://github.com/FasterXML/jackson/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-15 10:30:51 +00:00
François-Xavier Thomas
b2d2590cfa
Revert "Bump cling-* from 2.0.1 to 2.1.2"
...
Following comment in #1505 , this reverts the following commits:
* 0a231a6575
* 73747db980
* 77a95b0e86
2020-02-14 21:10:05 +01:00
François-Xavier Thomas and GitHub
ed15920306
Merge pull request #1526 from fxthomas/bump-lucene-index-for-8.4.1
...
Update index version following Lucene upgrade to 8.4.1
2020-02-14 00:23:31 +01:00
François-Xavier Thomas
6a14c256a5
Update index version following Lucene upgrade to 8.4.1
...
When upgrading from an existing index built with Lucene 8.2.0, Airsonic
fails to start with the following error:
java.lang.IllegalArgumentException: Could not load codec 'Lucene80'. Did you forget to add lucene-backward-codecs.jar?
at org.apache.lucene.index.SegmentInfos.readCodec(SegmentInfos.java:420) ~[lucene-core-8.4.1.jar!/:8.4.1 832bf13dd9187095831caf69783179d41059d013 - ishan - 2020-01-10 13:35:00]
...
at org.apache.lucene.search.SearcherManager.<init>(SearcherManager.java:125) ~[lucene-core-8.4.1.jar!/:8.4.1 832bf13dd9187095831caf69783179d41059d013 - ishan - 2020-01-10 13:35:00]
at org.airsonic.player.service.search.IndexManager.getSearcher(IndexManager.java:309) ~[classes!/:10.6.0-SNAPSHOT]
at org.airsonic.player.service.search.IndexManager.getStatistics(IndexManager.java:269) ~[classes!/:10.6.0-SNAPSHOT]
at org.airsonic.player.service.MediaScannerService.neverScanned(MediaScannerService.java:121) ~[classes!/:10.6.0-SNAPSHOT]
at org.airsonic.player.service.MediaScannerService.schedule(MediaScannerService.java:114) ~[classes!/:10.6.0-SNAPSHOT]
at org.airsonic.player.service.MediaScannerService.init(MediaScannerService.java:77) ~[classes!/:10.6.0-SNAPSHOT]
2020-02-13 22:23:03 +01:00
jvoisin and jvoisin
04c1ed98f2
Move the style into a css file
2020-02-13 20:39:43 +00:00
jvoisin and jvoisin
584ee96f61
Replace wz_toolip with jquery-ui
2020-02-13 20:39:43 +00:00
dependabot-preview[bot] and jvoisin
f9d68b15e4
Bump maven-compiler-plugin from 3.8.0 to 3.8.1
...
Bumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin ) from 3.8.0 to 3.8.1.
- [Release notes](https://github.com/apache/maven-compiler-plugin/releases )
- [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.8.0...maven-compiler-plugin-3.8.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-13 20:36:40 +00:00
dependabot-preview[bot] and jvoisin
331467cb6f
Bump maven-pmd-plugin from 3.12.0 to 3.13.0
...
Bumps [maven-pmd-plugin](https://github.com/apache/maven-pmd-plugin ) from 3.12.0 to 3.13.0.
- [Release notes](https://github.com/apache/maven-pmd-plugin/releases )
- [Commits](https://github.com/apache/maven-pmd-plugin/compare/maven-pmd-plugin-3.12.0...maven-pmd-plugin-3.13.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-13 20:36:31 +00:00
dependabot-preview[bot] and jvoisin
6d74e28e61
Bump recaptchav2-java from 1.0.2 to 1.0.3
...
Bumps [recaptchav2-java](https://github.com/triologygmbh/reCAPTCHA-V2-java ) from 1.0.2 to 1.0.3.
- [Release notes](https://github.com/triologygmbh/reCAPTCHA-V2-java/releases )
- [Commits](https://github.com/triologygmbh/reCAPTCHA-V2-java/compare/1.0.2...1.0.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-13 20:36:14 +00:00
dependabot-preview[bot] and jvoisin
6cde9238ca
Bump maven-enforcer-plugin from 3.0.0-M2 to 3.0.0-M3
...
Bumps [maven-enforcer-plugin](https://github.com/apache/maven-enforcer ) from 3.0.0-M2 to 3.0.0-M3.
- [Release notes](https://github.com/apache/maven-enforcer/releases )
- [Commits](https://github.com/apache/maven-enforcer/compare/enforcer-3.0.0-M2...enforcer-3.0.0-M3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-13 20:36:02 +00:00
dependabot-preview[bot] and jvoisin
2315df7b57
Bump docker-client from 8.14.5 to 8.16.0
...
Bumps [docker-client](https://github.com/spotify/docker-client ) from 8.14.5 to 8.16.0.
- [Release notes](https://github.com/spotify/docker-client/releases )
- [Changelog](https://github.com/spotify/docker-client/blob/master/CHANGELOG.md )
- [Commits](https://github.com/spotify/docker-client/compare/v8.14.5...v8.16.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-13 20:35:45 +00:00
dependabot-preview[bot] and jvoisin
6bfb602ec9
Bump maven-war-plugin from 3.2.2 to 3.2.3
...
Bumps [maven-war-plugin](https://github.com/apache/maven-war-plugin ) from 3.2.2 to 3.2.3.
- [Release notes](https://github.com/apache/maven-war-plugin/releases )
- [Commits](https://github.com/apache/maven-war-plugin/compare/maven-war-plugin-3.2.2...maven-war-plugin-3.2.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-13 20:35:21 +00:00
François-Xavier Thomas and GitHub
df668d8a28
Merge pull request #1505 from airsonic/dependabot/maven/org.fourthline.cling-cling-support-2.1.2
...
Bump cling-support from 2.0.1 to 2.1.2
2020-02-13 08:49:32 +01:00
François-Xavier Thomas and jvoisin
87c414dfc7
Also bump lucene-analyzers-common to 8.4.1
2020-02-13 07:23:41 +00:00
dependabot-preview[bot] and jvoisin
15b03573f4
Bump lucene-core from 8.2.0 to 8.4.1
...
Bumps lucene-core from 8.2.0 to 8.4.1.
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-13 07:23:41 +00:00
François-Xavier Thomas and GitHub
e738fbc25f
Merge pull request #1515 from airsonic/dependabot/maven/org.xmlunit-xmlunit-core-2.6.3
...
Bump xmlunit-core from 2.6.2 to 2.6.3
2020-02-12 23:11:29 +01:00
François-Xavier Thomas and jvoisin
73a06879b5
Internal help: Fix crash when no transcoders are installed
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
6a3d301517
Internal help: Add basic controller tests
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
bd4153962f
Internal help: Add database server version
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
3acd06e91b
Internal help: Fix crash with MariaDB and uppercase table names
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
09fa486bb0
Internal help: Only show db filesystem size for legacy profile
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
50b6da075e
Internal help: Add 'more rows' indicator for inconsistent rows
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
6c54f1f7c8
Internal help: Refactor detailed db/index stats
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
9d3ec88796
Internal help: Support table stats for external dbs
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
1cde8accc7
Internal help: Add internationalization
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
6df42736e6
Internal help: Only show link if user is admin
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
55f9a41673
Internal help: Warn for potential db corruption issues
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
768968d075
Internal help: Add transcoding info
2020-02-12 21:41:47 +00:00
François-Xavier Thomas and jvoisin
7a27e08106
Add "internal help" page with diagnostic information
2020-02-12 21:41:47 +00:00
dependabot-preview[bot] and jvoisin
cf44bf1743
Bump dockerfile-maven-plugin from 1.4.9 to 1.4.13
...
Bumps [dockerfile-maven-plugin](https://github.com/spotify/dockerfile-maven ) from 1.4.9 to 1.4.13.
- [Release notes](https://github.com/spotify/dockerfile-maven/releases )
- [Changelog](https://github.com/spotify/dockerfile-maven/blob/master/CHANGELOG.md )
- [Commits](https://github.com/spotify/dockerfile-maven/compare/v1.4.9...v1.4.13 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-12 21:06:12 +00:00
dependabot-preview[bot] and jvoisin
e303fe388e
Bump commons-fileupload from 1.3.3 to 1.4
...
Bumps commons-fileupload from 1.3.3 to 1.4.
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-12 21:06:01 +00:00
dependabot-preview[bot] and jvoisin
bb366fc116
Bump jetty-jspc-maven-plugin from 9.4.19.v20190610 to 9.4.26.v20200117
...
Bumps [jetty-jspc-maven-plugin](https://github.com/eclipse/jetty.project ) from 9.4.19.v20190610 to 9.4.26.v20200117.
- [Release notes](https://github.com/eclipse/jetty.project/releases )
- [Commits](https://github.com/eclipse/jetty.project/compare/jetty-9.4.19.v20190610...jetty-9.4.26.v20200117 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-12 21:04:59 +00:00
dependabot-preview[bot] and jvoisin
1189a10c5a
Bump jackson-core from 2.10.0 to 2.10.2
...
Bumps [jackson-core](https://github.com/FasterXML/jackson-core ) from 2.10.0 to 2.10.2.
- [Release notes](https://github.com/FasterXML/jackson-core/releases )
- [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.10.0...jackson-core-2.10.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-02-12 21:04:51 +00:00
François-Xavier Thomas
77a95b0e86
Also bump seamless-util to 1.1.2
2020-02-12 21:56:24 +01:00