-
Notifications
You must be signed in to change notification settings - Fork 32
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
chore(deps): update gradle dependencies not major update #2592
Merged
IhsenBouallegue
merged 4 commits into
main
from
renovate/gradle-dependencies-not-major-update
Jan 10, 2022
Merged
chore(deps): update gradle dependencies not major update #2592
IhsenBouallegue
merged 4 commits into
main
from
renovate/gradle-dependencies-not-major-update
Jan 10, 2022
Conversation
This file contains 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
renovate
bot
force-pushed
the
renovate/gradle-dependencies-not-major-update
branch
5 times, most recently
from
January 10, 2022 10:12
e57cb46
to
3e28bed
Compare
renovate
bot
force-pushed
the
renovate/gradle-dependencies-not-major-update
branch
from
January 10, 2022 11:03
3e28bed
to
6bb7aa8
Compare
renovate
bot
force-pushed
the
renovate/gradle-dependencies-not-major-update
branch
from
January 10, 2022 11:36
6bb7aa8
to
c3850b4
Compare
…-major-update' into renovate/gradle-dependencies-not-major-update
[CodeCharta Analysis] Kudos, SonarCloud Quality Gate passed! |
[CodeCharta Visualization] Kudos, SonarCloud Quality Gate passed! |
IhsenBouallegue
approved these changes
Jan 10, 2022
IhsenBouallegue
deleted the
renovate/gradle-dependencies-not-major-update
branch
January 10, 2022 13:15
IhsenBouallegue
added a commit
that referenced
this pull request
Jan 10, 2022
IhsenBouallegue
added a commit
that referenced
this pull request
Jan 12, 2022
IhsenBouallegue
added a commit
that referenced
this pull request
Jan 12, 2022
IhsenBouallegue
added a commit
that referenced
this pull request
Jan 12, 2022
IhsenBouallegue
added a commit
that referenced
this pull request
Jan 12, 2022
IhsenBouallegue
added a commit
that referenced
this pull request
Jan 12, 2022
* chore(deps): update dependency gradle to v7 * remove deprecated functions #2592 * update kotlin logging package #2592 * add duplicatesStrategy #2592 * remove deprecated baseName #2592 * replace jCentral with mavenCentral #2592 Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: IhsenBouallegue <[email protected]> Co-authored-by: Ihsen Bouallegue <[email protected]>
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.27.2
->2.32.0
1.12.0
->1.12.2
1.8.1
->1.8.2
5.8.1
->5.8.2
5.8.1
->5.8.2
5.8.1
->5.8.2
5.8.1
->5.8.2
5.8.1
->5.8.2
3.21.0
->3.22.0
1.5.2
->1.6.0
1.6.0
->1.6.10
1.6.0
->1.6.10
1.6.0
->1.6.10
1.6.0
->1.6.10
2.0.10
->2.1.21
0.2.0
->0.3.0
2.11.2
->2.13.1
2.11.2
->2.13.1
Release Notes
tomakehurst/wiremock
v2.32.0
Compare Source
Enhancements
WireMock.jsonResponse
factory methods (#1428)Fixes
Code quality
mockk/mockk
v1.12.2
Compare Source
andThenJust
, thanks @NWuenschev1.12.1
unmockkAll
inside theMockKExtension
, thanks @gmazzoKotlin/kotlinx.coroutines
v1.6.0
Compare Source
Note that this is a full changelog relative to the 1.5.2 version. Changelog relative to 1.6.0-RC3 can be found at the end.
kotlinx-coroutines-test rework
kotlinx-coroutines-test
became a multiplatform library usable from K/JVM, K/JS, and K/N.).
Dispatchers
CoroutineDispatcher.limitedParallelism
that allows obtaining a view of the original dispatcher with limited parallelism (#2919).Dispatchers.IO.limitedParallelism
usages ignore the bound on the parallelism level ofDispatchers.IO
itself to avoid starvation (#2943).Dispatchers.shutdown
method for containerized environments (#2558).newSingleThreadContext
andnewFixedThreadPoolContext
are promoted to delicate API (#2919).Breaking changes
future
builder no longer reports unhandled exceptions into the globalCoroutineExceptionHandler
. Thanks @vadimsemenov! (#2774, #2791).Mutex.onLock
is deprecated for removal (#2794).Dispatchers.Main
is now used as the default source of time fordelay
andwithTimeout
when present(#2972).kotlinx.coroutines.main.delay
system property can be set tofalse
.collect
no longer resolves when used with a non-in-place argument of a functional type. This is a candidate for a fix, uncovered after 1.6.0, see #3107 for the additional details.Bug fixes and improvements
kotlin.native.binary.memoryModel
is enabled (#2914).CopyableThreadContextElement
for mutable context elements shared among multiple coroutines. Thanks @yorickhenning! (#2893).transformWhile
,awaitClose
,ProducerScope
,merge
,runningFold
,runingReduce
, andscan
are promoted to stable API (#2971).SharedFlow.subscriptionCount
no longer conflates incoming updates and gives all subscribers a chance to observe a short-lived subscription (#2488, #2863, #2871).Flow
exception transparency mechanism is improved to be more exception-friendly (#3017, #2860).flat*
operators that leverage multiple coroutines is no longer propagated upstream (#2964).SharedFlow.collect
now returnsNothing
(#2789, #2502).DisposableHandle
is nowfun interface
, and corresponding inline extension is removed (#2790).FlowCollector
is nowfun interface
, and corresponding inline extension is removed (#3047).processUnhandledException
(#2981).Task
callbacks inkotlinx-coroutines-play-services
(#2990).CoroutineExceptionHandler
is loaded eagerly and does not invokeServiceLoader
on its exception-handling path (#2552).ServiceLoader
optimization (#2880).SendChannel.trySendBlocking
is now available on Kotlin/Native (#3064).ClassValue
when available (#2997).Delay
interface is deprecated (#2979).CommonPool
is removed.@ExperimentalTime
is no longer needed for methods that useDuration
(#3041).Changelog relative to version 1.6.0-RC3
JetBrains/kotlin
v1.6.10
Android
KT-49798
[MPP] [Android] AGP 7.1.0+ android target publications leak 'AgpVersionAttr' attributeCompiler
Performance Improvements
KT-49821
Optimize LazyClassMemberScope#getContributedDescriptors: use nameFilterFixes
KT-49833
java.lang.NullPointerException caused by accidental newline in package directiveKT-49838
Type inference fails on 1.6.0: Cannot use 'CapturedType(*)' as reified type parameterKT-49752
Regression in method return type inference: "IllegalStateException: Expected some types"KT-49876
Kotlin/Native: cross-compilation of Linux static library is broken in Windows in 1.6.0KT-49792
Atomicfu: "standalone invocation of kotlinx.atomicfu.AtomicInt::compareAndSet that was not traced to previous field load" with suspend functionKT-49834
Coroutine method transformer generates invalid locals table.KT-49441
Support friend modules in Kotlin NativeKT-49248
K/N: Symbol withIrSimpleFunctionSymbolImpl
is unbound after 1.5.30KT-49651
Inconsistent compiler APIs for repeatable annotationsKT-49168
JVM IR: IndexOutOfBoundsException with fun interface + suspend function as SAM methodKT-49573
No annotated types, compiler emits "Annotated types are not supported in typeOf"KT-47192
Build Fake Overrides for internal members of classes from friend moduleKT-48673
IR: IllegalStateException for usage of internal member declared in a superclass in another moduleJavaScript
KT-47811
KJS / IR: "ClassCastException" when using suspend function inconsole.log
Language Design
KT-49868
Support language version 1.3 in Kotlin 1.6.10Libraries
KT-50173
Different behavior of Regex escapeReplacement function in JVM and JSTools. Android Extensions
KT-49799
NullPointerException when using kotlin-android-extensions synthetic after update to Kotlin 1.6.0Tools. Compiler Plugins
KT-50005
jvm-abi-gen plugin: do not change the declaration order in generated jarsKT-49726
JVM/IR: "IllegalArgumentException: Null argument in ExpressionCodegen for parameter VALUE_PARAMETER": Serialization with sealed class as type parameterTools. Gradle
KT-49835
Android consumers can't resolve Android debug variants of published MPP libraries published with Kotlin 1.6.0 & Gradle 7.0+KT-49910
Incremental compilation speed regression in 1.6.0 for Android projectsTools. Gradle. JS
KT-49109
KJS / Gradle: Configuration failed: Could not find node-14.17.0-darwin-arm64.tar.gz (org.nodejs:node:14.17.0)KT-50135
KJS: Problem with Yarn install with scripts on WindowsKT-34014
Gradle, JS: Ability to persist / reuse yarn.lockKT-49505
KJS / IR: Installation of NPM dependencies should be with ignore-scriptsTools. Gradle. Native
KT-49931
Kotlin Multiplatform Fails in Windows after 1.6.0 upgrade - Cannot run program "pod"KT-49771
podInstall task is not executed after adding a pod dependency to the shared moduleTools. Incremental Compile
KT-49822
Incremental compilation state is modified when the build fails in Kotlin 1.6KT-49340
"IllegalStateException:@NotNull
method org/jetbrains/kotlin/com/intellij/openapi/application/AsyncExecutionService.getService must not return null" with Anvil plugin and incremental compilationMicroUtils/kotlin-logging
v2.1.21
What's Changed
Full Changelog: oshai/kotlin-logging@2.1.17...2.1.21
v2.1.20
2.1.17
.v2.1.17
v2.1.15
Compare Source
v2.1.14
v2.0.12
v2.0.11
Compare Source
jjohannes/gradle-module-metadata-maven-plugin
v0.3.0
Compare Source
Improvements: #9 and #10
Configuration
📅 Schedule: "on the 2nd and 4th day instance on sunday after 9pm" in timezone Europe/Berlin.
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by WhiteSource Renovate. View repository job log here.