-
Notifications
You must be signed in to change notification settings - Fork 3
chore(deps): update zioversion to v2.1.20 #62
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
main
Choose a base branch
from
renovate/zioversion
base: main
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
18552f1
to
031a8e6
Compare
031a8e6
to
2c5cd8b
Compare
2c5cd8b
to
d1fa738
Compare
d1fa738
to
e73db0a
Compare
e73db0a
to
7729fe7
Compare
7729fe7
to
269ee55
Compare
269ee55
to
617a4db
Compare
617a4db
to
13fac7a
Compare
13fac7a
to
abf4826
Compare
abf4826
to
4d0501a
Compare
4d0501a
to
4ea8951
Compare
4ea8951
to
13cb1e4
Compare
13cb1e4
to
6c61d7f
Compare
6c61d7f
to
f5f6b12
Compare
f5f6b12
to
f433b43
Compare
129d5f8
to
e7a800f
Compare
e7a800f
to
4b4bd27
Compare
4b4bd27
to
df00021
Compare
df00021
to
64696b5
Compare
64696b5
to
5b7ac58
Compare
5b7ac58
to
d8b7305
Compare
d8b7305
to
bd4af7d
Compare
bd4af7d
to
cce3b38
Compare
cce3b38
to
86fc4a9
Compare
86fc4a9
to
6d0ca27
Compare
6d0ca27
to
815e6a2
Compare
815e6a2
to
184fb3e
Compare
184fb3e
to
890e45f
Compare
890e45f
to
f9854a5
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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.0.6
->2.1.20
2.0.6
->2.1.20
2.0.6
->2.1.20
Release Notes
zio/zio (dev.zio:zio)
v2.1.20
: 2.1.20Compare Source
Highlights
This release contains multiple under-the-hood optimizations particularly for async operations such as
race
andasyncInterrupt
.What's Changed
provide*
is missing layer(s) by @hearnadam in https://github.com/zio/zio/pull/9916IsFatal
for jvm Runtime by @hearnadam in https://github.com/zio/zio/pull/9899race
and synchronous interruption by @kyri-petrou in https://github.com/zio/zio/pull/9848TestAspect.fibers
by @kyri-petrou in https://github.com/zio/zio/pull/9955ZLayer
s to effects by @kyri-petrou in https://github.com/zio/zio/pull/9895ZStream.async
dropping elements on Scala Native by @Saturn225 in https://github.com/zio/zio/pull/9925ClockLive#currentTime
by @kyri-petrou in https://github.com/zio/zio/pull/9963sbt.testing.Event
s onScala.js
andScala Native
. by @dubinsky in https://github.com/zio/zio/pull/9979FiberRuntime
by @kyri-petrou in https://github.com/zio/zio/pull/9975ZIO.infinity
by @hearnadam in https://github.com/zio/zio/pull/9987ZIO#exitCode
by @hearnadam in https://github.com/zio/zio/pull/9978"... + x more"
feedback from zio-test outputs by @guizmaii in https://github.com/zio/zio/pull/9900ZIO.asyncInterrupt
by @kyri-petrou in https://github.com/zio/zio/pull/9945ZPipeline#encodeStringWith
by @kyri-petrou in https://github.com/zio/zio/pull/10011Other changes (CI, dependencies and documentation)
ZIOApp#gracefulShutdownTimeout
by @varshith257 in https://github.com/zio/zio/pull/9923sonatypeCentralSnapshots
by @kyri-petrou in https://github.com/zio/zio/pull/9952fork
andforkDaemon
inherit parent’s interruptibility by @Saturn225 in https://github.com/zio/zio/pull/9924testJvms
CI step by @kyri-petrou in https://github.com/zio/zio/pull/9969New Contributors
Full Changelog: zio/zio@v2.1.19...v2.1.20
v2.1.19
: 2.1.19Compare Source
This release fixes a regressions introduced in v2.1.18 where in some cases the finalizers of an application might not run to completion upon receiving an external interruption signal. We highly recommend users on v2.1.18 to update their zio version to v2.1.19 as soon as possible.
In addition, after some lengthy discussions we made the decision to make 2
RuntimeFlag
s package-private:Interrupt
andWindDown
. These 2 flags are not meant to be configurable by users and have the potential to break application code when used. This change is binary compatible but not source-compatible, so any users that get a compilation error after upgrading to v2.1.19 due to usage of these flags should simply remove their usages.What's Changed
VirtualMachineError
fatal by @hearnadam in https://github.com/zio/zio/pull/9867RuntimeFlags
as package private by @hearnadam in https://github.com/zio/zio/pull/9883Other changes (CI, dependencies and documentation)
sbt-ci-release
by @kyri-petrou in https://github.com/zio/zio/pull/9894New Contributors
Full Changelog: zio/zio@v2.1.18...v2.1.19
v2.1.18
: 2.1.18Compare Source
This release of ZIO brings several new features, performance optimizations and bug fixes!
Highlights
ZIO.fromFunction
andZIO.fromFunctionZIO
methods that allow extracting multiple values from the environment in a single effect (#9819 & #9782)provideSomeAuto
method forZIO
andSpec
, which works similarly toprovideSome
but without having to provide the environment remainder explicitly.mapChunksEither
andmapEitherChunked
methods onZPipeline
give users more options in short-cutting errors when processing streamsFor a full list of all things that have been added / fixed / improved make sure to check the PRs below.
What's Changed
addMetrics
optimization ofLinkedQueue
to improve performances ofQueue.unbounded
by @guizmaii in https://github.com/zio/zio/pull/9762Queue
instances instead of anonymous trait instances by @guizmaii in https://github.com/zio/zio/pull/9763ZIO#cached
should not cache interruption by @kyri-petrou in https://github.com/zio/zio/pull/9759Queue#shutdown
by @kyri-petrou in https://github.com/zio/zio/pull/9770forEachPar*
methods with bounded parallelism by @kyri-petrou in https://github.com/zio/zio/pull/9769Dequeue#takeBetween
code by @guizmaii in https://github.com/zio/zio/pull/9768ZPipeline::mapEitherChunked
by @guizmaii in https://github.com/zio/zio/pull/9757scala-collection-compat
and remove deprecated usages ofscala.collection.JavaConverters
by @kyri-petrou in https://github.com/zio/zio/pull/9773ZChannel#toPullIn
&ZChannel#toPullInAlt
code by @guizmaii in https://github.com/zio/zio/pull/9401ChannelExecutor
classfinal
by @guizmaii in https://github.com/zio/zio/pull/9793Chunk::findZIO
by @guizmaii in https://github.com/zio/zio/pull/9784ZPipeline::mapStream
by @guizmaii in https://github.com/zio/zio/pull/9758ZPipeline::mapChunksEither
by @guizmaii in https://github.com/zio/zio/pull/9775foreachExec
and underlying privateforeach*
methods by @kyri-petrou in https://github.com/zio/zio/pull/9804ChannelExecutor::restorePipe
and its usages by @guizmaii in https://github.com/zio/zio/pull/9797Other changes (CI, dependencies and documentation)
ubuntu-latest
in CI runners by @kyri-petrou in https://github.com/zio/zio/pull/9765release-drafter
by @kyri-petrou in https://github.com/zio/zio/pull/9766Queue#take*
methods by @kyri-petrou in https://github.com/zio/zio/pull/9774.jvmopts
by @guizmaii in https://github.com/zio/zio/pull/9790New Contributors
Full Changelog: zio/zio@v2.1.17...v2.1.18
v2.1.17
: 2.1.17Compare Source
Highlights
This release brings a few bug fixes and improvements. One notable fix is that the initial value of
Ref
can now be garbage-collected once the value of theRef
changes (it was not the case previously).What's Changed
FiberRuntime
micro-optimizations and cleanups by @kyri-petrou in https://github.com/zio/zio/pull/9653ZIO#provideSomeEnvironment
andFiberRef#locallyWith
by @kyri-petrou in https://github.com/zio/zio/pull/9652ZStream.tapChunks
by @erikvanoosten in https://github.com/zio/zio/pull/9696ZStream.mapZIOChunked
by @erikvanoosten in https://github.com/zio/zio/pull/9697Gen
instance derivation by @guizmaii in https://github.com/zio/zio/pull/9723Other changes (CI, dependencies and documentation)
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.