-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade com.palantir.baseline:baseline-error-prone 4.145.0 -> 4.182.0 #172
Conversation
Suggested commit message:
|
da2f534
to
a1307d8
Compare
86c8b62
to
ae412ce
Compare
1bd89e5
to
9363123
Compare
Next to the build not (yet?) using this dependency, it turns out that it's also broken in the context of our build. I filed palantir/gradle-baseline#2362. Let's await their response to review whether we should pursue enabling this dependency, or simply drop it. |
19e69f7
to
e4c74a4
Compare
Should we add a |
Sure. (Before we open-source we might want to drop a number of the default labels.) |
e4c74a4
to
4b379c0
Compare
b6c997d
to
cabdc7c
Compare
9c2323c
to
ba6a3b0
Compare
13769be
to
efaa3da
Compare
776367c
to
78e82ae
Compare
e7d013e
to
564ced9
Compare
f4abd50
to
d38c523
Compare
d38c523
to
2ed5039
Compare
Ahh because of the keyword "close" in the other PR it is already closed :). Will delete the branch. |
This PR contains the following updates:
4.145.0
->4.182.0
Release Notes
palantir/gradle-baseline
v4.182.0
Compare Source
v4.181.0
Compare Source
v4.180.0
Compare Source
v4.179.0
Compare Source
build()
with the more descriptivebuildOrThrow()
, howeverbuildKeepingLast()
may be the original intent in some cases.v4.178.0
Compare Source
v4.177.0
Compare Source
v4.176.0
Compare Source
v4.175.0
Compare Source
v4.174.0
Compare Source
v4.173.0
Compare Source
v4.172.0
Compare Source
Automated release, no documented user facing changes
v4.171.0
Compare Source
com.palantir.baseline-null-away
no longer enables theCheckOptionalEmptiness
checker by default.v4.170.0
Compare Source
v4.169.0
Compare Source
v4.168.0
Compare Source
v4.167.0
Compare Source
Automated release, no documented user facing changes
v4.166.0
Compare Source
Automated release, no documented user facing changes
v4.165.0
Compare Source
com.palantir.baseline-null-away
which registers theNullAway
check atWARNING
. Projects which fail on warnings will require this to pass pre-merge.v4.164.0
Compare Source
CyclomaticComplexity
check is now configured withswitchBlockAsSingleDecisionPoint
.v4.163.0
Compare Source
v4.162.0
Compare Source
+ support setting preview on a project-by-project basis.
+ Fixes #2340
+ fails more elegantly if javaVersions is set on not-the-root.
v4.161.0
Compare Source
v4.160.0
Compare Source
v4.159.0
Compare Source
There is a certain class of very problematic cases whereby if you have
a method such as the following:
<br>myJerseyResource.register(/* this is of type Object */ object);<br>
Then if you supply a resource which includes any
javax.ws.rs
annotations on it, then those will not be registered if your Jersey
version is 3.x or later (and you'll only find this out at runtime).
The opposite is also true if you try to supply resources annotated
with
jakarta.ws.rs
to Jersey 2.x.To address this, this commit attempts to add an errorprone check
which lets implementors add an annotation
@ForbidJavax
to methodswhich have been knowingly migrated to Jakarta EE9 and cannot
accept legacy javax types.
v4.158.0
Compare Source
checkUnusedDependencies
tasks added bybaseline-exact-dependencies
compatible with Gradle's configure-on-demand feature.v4.157.0
Compare Source
junit-reports
plugin.v4.156.0
Compare Source
v4.155.0
Compare Source
Automated release, no documented user facing changes
v4.154.0
Compare Source
v4.153.0
Compare Source
v4.152.0
Compare Source
Related to google/error-prone issues 632
Adds a
DefaultLocale
check that replaces uses ofString.toLowerCase()
andString.toUpperCase()
with the overloads that take aLocale
, usingLocale.ROOT
.v4.151.0
Compare Source
--enable-preview
is usedv4.150.0
Compare Source
BaselineModuleJvmArgs
plugin to once again work as intended in multi-project buildsv4.149.0
Compare Source
com.palantir.baseline-java-versions
plugin can now setjavaVersions { distributionTarget = '17_PREVIEW' }
to opt-in to Java's--enable-preview
flag at compile time.v4.148.0
Compare Source
v4.147.0
Compare Source
Automated release, no documented user facing changes
v4.146.0
Compare Source
Automated release, no documented user facing changes