-
Notifications
You must be signed in to change notification settings - Fork 0
Update all non-major maven dependencies #53
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
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/all-maven-minor-patch
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71193c6 to
60a5af7
Compare
19404a5 to
d21cf1a
Compare
15dd0ff to
67fd3e5
Compare
420dea9 to
5d68020
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #53 +/- ##
============================================
- Coverage 74.42% 74.33% -0.09%
- Complexity 587 595 +8
============================================
Files 149 151 +2
Lines 2937 2954 +17
Branches 140 141 +1
============================================
+ Hits 2186 2196 +10
- Misses 636 642 +6
- Partials 115 116 +1 ☔ View full report in Codecov by Sentry. |
26a1230 to
b66a353
Compare
41d7510 to
73aed8c
Compare
73aed8c to
cc10a71
Compare
cc10a71 to
b2a56d7
Compare
9c20ddb to
4366ecd
Compare
4366ecd to
cd5d266
Compare
ac360e9 to
895c5db
Compare
895c5db to
0cd7c28
Compare
0cd7c28 to
98e5733
Compare
98e5733 to
cb9cf65
Compare
cb9cf65 to
d289534
Compare
d289534 to
d70b9b2
Compare
d70b9b2 to
00d7e09
Compare
00d7e09 to
4480844
Compare
4480844 to
549a059
Compare
549a059 to
4f175a0
Compare
7a37dd8 to
c1a3d02
Compare
3644e7a to
47f5ee3
Compare
47f5ee3 to
7cdc0e3
Compare
7cdc0e3 to
f8e087a
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.18.0→2.21.01.6.0→1.7.03.8.1→3.14.14.0.3→4.3.01.8→1.14.11.4.2.Final→1.6.31.4.2.Final→1.6.3Release Notes
awaitility/awaitility (org.awaitility:awaitility)
v4.3.0Support for kotlin.time.Duration in Kotlin DSL (thanks to Ivo Šmíd for PR)
Upgraded kotlin version in the awaitility-kotlin module to 2.1.10
Using a more descriptive error message when using VERY long wait conditions or poll durations (issue 290)
Added an overloaded method of untilAsserted(..) that takes a supplier and a consumer. For example, lets say you have a class like this:
public class MyClass {
public String myFunction() {
// Imagine stuff being executed in asynchronously here and the result of this
// operation is a string called "my value"
return "my value"
}
}
// Then in your test you can wait for the "myFunction" to be asserted by a "consumer" that uses
// assertj to make sure that "myFunction" returns ""my value"
await().untilAsserted(myClass::myFunction, value -> Assertions.assertThat(value).isEqualTo("my value"));
This has also been implemented for all atomic, adder, and accumulator methods.
v4.2.2v4.2.1Upgraded Kotlin to 1.9.22
Added extension properties forever, then, and, given to the Kotlin extension. This allows you to do e.g.:
await.forever until { .. }
Added shortcut for enabling logging. Before you had to do e.g.
await()
.with()
.conditionEvaluationListener(new ConditionEvaluationLogger(log::info))
.pollInterval(ONE_HUNDRED_MILLISECONDS)
.until(logs::size, is(4));
You can now instead use the "logging" shortcut:
await()
.with()
.logging(log::info)
.pollInterval(ONE_HUNDRED_MILLISECONDS)
.until(logs::size, is(4));
or simply ".logging()" for "System.out".
This shortcut has also been added globally:
Awaitility.setLogging(log::info);
or
Awaitility.setDefaultLogging();
Improved lambda detection for Java 17 and Java 21
Upgraded Groovy to 4.0.19
v4.2.0Fixed a bug in the shutdown behavior of a polling thread. The wrong time unit was used causing executor shutdown to take way more time than expected in cases where it's stuck. Thanks to Claus Näveke for spotting this and for the initial PR.
Fixed a bug in which condition was not evaluated correctly with small intervals, such as:
await().atMost(Duration.ofMillis(10)).pollInterval(Duration.ofMillis(5)).until(..);
(issue 224). Thanks to Robby Decosemaeker for PR.
Upgraded the awaitility-kotlin module to use kotlin 1.6.10
Fail fast conditions can now be specified with assertions. For example:
await().failFast(() -> assertThat(state).isNotEqualTo("Failed")).until(..);
(issue 238)
v4.1.1v4.1.0Upgraded to Scala from 2.13.3 to 2.13.5 (thanks to sullis for pull request)
Upgraded Kotlin from 1.3.72 to 1.5.0
Added support for fail-fast conditions. This is a special condition that, if fulfilled, will throw a "org.awaitility.core.TerminalFailureException" immediately, thus failing the test.
This is good when you have a condition that you know beforehand should never be fulfilled. So instead of waiting the full duration of a normal condition evaluation period, the test will fail
faster if this (fail fast) condition evaluates to true. For example:
await().timeout(Duration.ofSeconds(5)).failFast(() -> orders.findById(1234).state == PAID).until(() -> orders.findById(1234).state == CLOSED);
This will fail-fast if the state of order 1234 is ever equal to "PAID" during the 5 second evaluation of the condition specified in "until".
(Thanks to Antony Stubbs for initial pull request) (issue 178)
Upgraded Groovy from version 3.0.4 to 3.0.8
mapstruct/mapstruct (org.mapstruct:mapstruct-processor)
v1.6.3Compare Source
Bugs
RETURN_DEFAULTstrategy (#3747)java.time.LocalDatewhen mapping sourceLocalDateTimeto targetLocalDate(#3732)Documentation
v1.6.2Compare Source
Bugs
v1.6.1Compare Source
Enhancements
LinkedHashSetandLinkedHashMapnew factory method with known capacity when on Java 19 or later (#3113)Bugs
SubclassMapping: generic vs raw types (#3668)InheritInverseConfigurationwith nested target properties and reversingtarget = "."(#3670)@AfterMappingmethods are called twice when using target with builder (#3678)@AfterMappingmethod with Builder and TargetObject (#3703)Behaviour change
Inverse Inheritance Strategy not working for ignored mappings only with target
Prior to this fix
@Mapping(target = "myProperty", ignore = true)was being ignored when using@InheritInverseConfiguration.e.g.
In the example above prior 1.6.1 the
Model toModel(Entity entity)was going to map theidproperty. In order to keep that behavior you'll need to explicitly do the mapping for it.v1.6.0Compare Source
Previous Release Notes
v1.5.5.FinalCompare Source
Enhancements
Bugs
BeanMappingOptions#ignoreUnmappedSourcePropertiesare not inherited via@InheritConfiguration(#3248) - Regression from 1.5.3Documentation
v1.5.4.FinalCompare Source
Enhancements
@ApplicationScopedis missing (#2950)Bugs
throwsclauses when mapping enum with checked exceptions (#3110)Mappingannotations for nested objects (worked with 1.5.2) (#3057)BeanMapping#mappingControl(#3040)Documentation
<THROW_EXCEPTION>in the reference guide (#3112)v1.5.3.FinalCompare Source
Bugs
@AfterMappingdoes not consider@MappingTargetproperly in 1.5 (#3036)@AfterMappingis not called (#2955)SubclassMappingdoesn't honourmappingControl(#3018)BigDecimalto primitivedoublewrong with 1.5.2 (#2913)SubclassMappingstackoverflow exception (#2825)Optionalwrapping pattern broken in 1.5.2.Final (#2925)@Conditionaland collection (#2937)try-catchblock (#2839)@TargetTypeas a parameter for@Conditioncauses NPE during compiling (#2882)Documentation
BeanMapping#ignoreByDefault(#2929)Build
v1.5.2.FinalCompare Source
Enhancements
Bugs
SubclassExhaustiveStrategy.RUNTIME_EXCEPTIONoption does not work if the superclass has a non-empty constructor #2891Build
v1.5.1.FinalCompare Source
Bugs
NullPointerExceptionwhen reporting errors for non Mappers (#2867)v1.5.0.FinalCompare Source
Bugs
@Conditionon a presence check for a generic wrapper (#2795)conditionExpressionandexpressionare used together (#2794)@BeforeMappingon ausedmapper (#2807)Documentation
mapstruct-1.5.0.Final-dist.tar.gz
Build
Previous Release Notes
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.