Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

Merge for update to 2.1.15 #106

Merged
58 commits merged into from
May 21, 2019
Merged

Merge for update to 2.1.15 #106

58 commits merged into from
May 21, 2019

Conversation

GiantTreeLP
Copy link
Member

@GiantTreeLP GiantTreeLP commented Mar 1, 2019

Noteworthy changes:

  • Update the API-Bridge to Minecraft 1.14
  • Properly fixed plugins that use the effective permission set (e.g. PlotSquared)
  • Fixed issues with the CloudFlare DNS module
  • Add /cloud debug, /cloudserver debug commands
  • Add more debugging output to the proxy and server log
  • Sort the highest group by the lowest tagId to allow for more intuitive understanding
  • Allow negative wildcard permissions for global permissions (note: not for servergroup permissions)

Tarek and others added 10 commits January 26, 2019 20:09
Bumps `dependency.netty.version` from 4.1.32.Final to 4.1.33.Final.

Updates `netty-transport-native-epoll` from 4.1.32.Final to 4.1.33.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.32.Final...netty-4.1.33.Final)

Updates `netty-transport-native-kqueue` from 4.1.32.Final to 4.1.33.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.32.Final...netty-4.1.33.Final)

Updates `netty-codec` from 4.1.32.Final to 4.1.33.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.32.Final...netty-4.1.33.Final)

Updates `netty-handler` from 4.1.32.Final to 4.1.33.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.32.Final...netty-4.1.33.Final)

Updates `netty-codec-http` from 4.1.32.Final to 4.1.33.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.32.Final...netty-4.1.33.Final)

Signed-off-by: dependabot[bot] <support@dependabot.com>
Closes #104

Signed-off-by: Marvin <marv.1997@live.de>
…ive permission set.

Closes #104

Signed-off-by: Marvin <marv.1997@live.de>
@@ -105,6 +105,8 @@ public boolean shutdown(CloudFlareDatabase cloudFlareDatabase)

for (MultiValue<PostResponse, String> id : cloudFlareDatabase.getAndRemove().values())
{
if (id.getFirst() == null) continue;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'if' construct must use '{}'s.

System.out.println(prefix + " DNSRecord [" + postResponse.getId() + "] was removed");
}
System.out.println(prefix + "DNSRecord [" + postResponse.getId() + "] was removed");
} else
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'else' construct must use '{}'s.

Bumps [snakeyaml](https://bitbucket.org/asomov/snakeyaml) from 1.23 to 1.24.
- [Commits](https://bitbucket.org/asomov/snakeyaml/commits)

Signed-off-by: dependabot[bot] <support@dependabot.com>
{
stringBuilder.append(input);
}
while ((input = bufferedReader.readLine()) != null) stringBuilder.append(input);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'while' construct must use '{}'s.

CloudFlareService.getInstance().shutdown(cloudFlareDatabase);
} catch (Exception ex)
} catch (Exception ignored)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Empty catch block.

add debug subcommand to /cloud and /cloudserver

Signed-off-by: Marvin <marv.1997@live.de>
…roupHas)

Signed-off-by: Marvin <marv.1997@live.de>
Signed-off-by: Marvin <marv.1997@live.de>
Signed-off-by: Marvin <marv.1997@live.de>
@codeclimate
Copy link

codeclimate bot commented Mar 15, 2019

Code Climate has analyzed commit 48eaf6a and detected 70 issues on this pull request.

Here's the issue category breakdown:

Category Count
Complexity 4
Duplication 13
Style 47
Clarity 3
Bug Risk 3

Note: there are 2 critical issues.

View more on Code Climate.

dependabot-support and others added 12 commits April 22, 2019 13:24
Bumps `dependency.netty.version` from 4.1.34.Final to 4.1.35.Final.

Updates `netty-transport-native-epoll` from 4.1.34.Final to 4.1.35.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.34.Final...netty-4.1.35.Final)

Updates `netty-transport-native-kqueue` from 4.1.34.Final to 4.1.35.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.34.Final...netty-4.1.35.Final)

Updates `netty-codec` from 4.1.34.Final to 4.1.35.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.34.Final...netty-4.1.35.Final)

Updates `netty-handler` from 4.1.34.Final to 4.1.35.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.34.Final...netty-4.1.35.Final)

Updates `netty-codec-http` from 4.1.34.Final to 4.1.35.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.34.Final...netty-4.1.35.Final)

Signed-off-by: dependabot[bot] <support@dependabot.com>
Fix BukkitCloudEvent
Add materialNames to config-objects containing materialIds
Use 1.13+ material names with original defaults
Add team color
- new config parameter
- new command parameter(perms group <group> setColor <colorcode(&c)>)
  * Bungee
  * Master
 - Fallback color from 2.1.14.3 if color not set
  * Get last color of prefix and set as team color
@GiantTreeLP
Copy link
Member Author

Fixes #41

GiantTreeLP and others added 5 commits April 28, 2019 01:39
Signed-off-by: Marvin <marv.1997@live.de>
…and configuration. This only affects the log file

Signed-off-by: Marvin <marv.1997@live.de>
Bumps `dependency.netty.version` from 4.1.35.Final to 4.1.36.Final.

Updates `netty-transport-native-epoll` from 4.1.35.Final to 4.1.36.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.35.Final...netty-4.1.36.Final)

Updates `netty-transport-native-kqueue` from 4.1.35.Final to 4.1.36.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.35.Final...netty-4.1.36.Final)

Updates `netty-codec` from 4.1.35.Final to 4.1.36.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.35.Final...netty-4.1.36.Final)

Updates `netty-handler` from 4.1.35.Final to 4.1.36.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.35.Final...netty-4.1.36.Final)

Updates `netty-codec-http` from 4.1.35.Final to 4.1.36.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.1.35.Final...netty-4.1.36.Final)

Signed-off-by: dependabot[bot] <support@dependabot.com>
…ssions.

This fixes negative wildcard permissions

Signed-off-by: Marvin <marv.1997@live.de>
@GiantTreeLP
Copy link
Member Author

GiantTreeLP commented May 3, 2019

I have added a proper changelog.

Feel free to merge as soon as possible @byRoadrunner .
This version has been tested on Minecraft 1.8.8 and 1.13.2, as well as 1.14 and works as advertised.

GiantTreeLP and others added 5 commits May 3, 2019 22:30
Simplify getting of permissionGroup
Remove useless Optional
Remove useless method
Bumps [maven-jar-plugin](https://github.com/apache/maven-jar-plugin) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/apache/maven-jar-plugin/releases)
- [Commits](apache/maven-jar-plugin@maven-jar-plugin-3.1.1...maven-jar-plugin-3.1.2)

Signed-off-by: dependabot[bot] <support@dependabot.com>
Downgraded javadoc plugin due to issues with the Javadocs
@ghost ghost merged commit 092deed into master May 21, 2019
@GiantTreeLP GiantTreeLP mentioned this pull request May 21, 2019
This pull request was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants