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:
1.4.4
->1.4.8
1.4.4
->1.4.8
0.7.0
->0.7.4
0.23.0
->0.23.1
0.23.0
->0.23.1
0.23.0
->0.23.1
0.23.0
->0.23.1
0.23.0
->0.23.1
0.6.1
->0.6.3
0.13.2
->1.0.1
0.13.2
->1.6.0
4.0.0
->5.0.1
2.10.3
->2.10.13
2.10.9.1
->2.10.12.2
1.4.0
->1.4.1
1.12.0
->1.12.2
1.12.0
->1.12.2
1.0.0-beta02
->1.0.0
1.0.0-alpha07
->2.4.1
2.8.6
->2.9.0
2.2.1
->2.2.2
2.26.3
->2.27.2
3.16.1
->3.22.0
2.0.34
->2.0.36
1.4.0
->1.5.0
2.6
->2.8.1
3.2.0
->4.0.0
3.12.4
->4.3.1
3.12.4
->4.3.1
4.12.0
->4.13.1
4.12.0
->4.13.1
4.12.0
->4.13.1
4.6.2
->4.6.4
4.6.2
->4.6.4
1.0.0-alpha02
->1.0.0-beta01
1.3.6
->1.4.1
1.3.6
->1.4.1
2.3.1
->2.4.1
2.3.1
->2.4.1
2.3.1
->2.4.1
2.4.0-alpha02
->2.4.1
2.3.1
->2.4.1
2.4.0
->2.4.1
1.3.0
->1.4.0
7.1.1
->7.1.2
1.1.1
->1.2.0
2.1.0
->2.1.3
1.3.0-rc02
->1.4.0
1.4.0
->1.4.1
Release Notes
skydoves/landscapist
v1.4.8
Compare Source
What's Changed
Full Changelog: skydoves/landscapist@1.4.7...1.4.8
v1.4.7
Compare Source
What's Changed
4.13.0
and AGP to7.1.0
by @skydoves in https://github.com/skydoves/landscapist/pull/106Full Changelog: skydoves/landscapist@1.4.6...1.4.7
v1.4.6
Compare Source
🎉 Released a new version
1.4.6
! 🎉What's Changed
Full Changelog: skydoves/landscapist@1.4.5...1.4.6
v1.4.5
Compare Source
What's Changed
Full Changelog: skydoves/landscapist@1.4.4...1.4.5
google/accompanist
v0.23.1
What's Changed
vanpra/compose-material-dialogs
v0.6.3
Compare Source
v0.6.2
Compare Source
arrow-kt/arrow
v1.0.1
Compare Source
What's Changed
getOrElse
by @codymikol in https://github.com/arrow-kt/arrow/pull/2548New Contributors
Full Changelog: arrow-kt/arrow@1.0.0...1.0.1
v1.0.0
Compare Source
1.0.0 (2021-09-20)
Option
-related ext. functions (#2436) [Azim Muradov]compose
andplus
methods across the lenses (#2415) [Mitchell Skaggs]v0.13.3
Compare Source
0.13.3 (2021-09-20)
airbnb/lottie-android
v5.0.1
New Features
[Removed API] Removed the
setScale(float)
APIs fromLottieAnimationView
andLottieDrawable
. The expected behavior was highly ambiguous when paired with other scale types and canvas transformations. For the vast majority of cases, ImageView.ScaleType should be sufficient. For remaining cases, you may apply transformations to Canvas and useLottieDrawable#draw
directly.Added support for the "Rounded Corners" effect on Shape and Rect layers (#1953)
Prior to 5.0, LottieAnimationView would always call setLayerType with either HARDWARE or SOFTWARE. In the hardware case, this would case Android to allocate a dedicated hardware buffer for the animation that had to be uploaded to the GPU separately. In the software case, LottieAnimationView would rely on View's internal drawing cache.
This has a few disadvantages:
choose a render mode.
Benefits as a result of this change:
Lottie can now render outside of its composition bounds. To allow this with views such as LottieAnimationView, set
clipToCompositionBounds
to false onLottieDrawable
orLottieAnimationView
andclipChildren
to false on the parent view. For Compose, use theclipToCompositionBounds
parameter.Prior to 5.0, LottieAnimationView handled all animation controls when the view's visibility or attach state changed. This worked fine for consumers of LottieAnimationView. However, custom uses of LottieDrawable were prone to leaking infinite animators if they did not properly handle cancelling animations correctly. This opens up the possibility for unexpected behavior and increased battery drain. Lottie now behaves more like animated drawables in the platform and moves this logic into the Drawable via its setVisible API. This should lead to no explicit behavior changes if you are using LottieAnimationView. However, if you are using LottieDrawable directly and were explicitly pausing/cancelling animations on lifecycle changes, you may want to cross check your expected behavior with that of LottieDrawable after this update. This change also resolved a long standing bug when Lottie is used in RecyclerViews due to the complex way in which RecyclerView handles View lifecycles (#1495).
#1981
Add an API setClipToCompositionBounds on LottieAnimationView, LottieDrawable, and the LottieAnimation composable to prevent Lottie from clipping animations to the composition bounds.
Add an API to always render dynamically set bitmaps at the original animation bounds. Previously, dynamically set bitmaps would be rendered at their own size anchored to the top left
of the original bitmap. This meant that if you wanted to supply a lower resolution bitmap to save memory, it would render smaller. The default behavior remains the same but you can
enable setMaintainOriginalImageBounds to be able to supply lower resolution bitmaps (#1706).
Add support for
LottieProperty.TEXT
to use dynamic properties for text. This enables dynamic text support for lottie-compose (#1995).Add getters for Marker fields (#1998)
Add support for reversed polystar paths (#2003)
Bugs Fixed
v4.2.2
Bugs Fixed
v4.2.1
Features and Improvements
Bugs Fixed
v4.2.0
v4.1.0
BREAKING CHANGES
Before this release, drop shadows and blurs were completely ignored. They will now be rendered. In most cases, they will now be rendered correctly. However, you should read the implementation details here if they are not.
JodaOrg/joda-time
v2.10.13
See the change notes for more information.
v2.10.12
See the change notes for more information.
v2.10.11
See the change notes for more information.
v2.10.10
See the change notes for more information.
v2.10.9
See the change notes for more information.
v2.10.8
See the change notes for more information.
v2.10.7
See the change notes for more information.
v2.10.6
See the change notes for more information.
v2.10.5
See the change notes for more information.
v2.10.4
See the change notes for more information.
dlew/joda-time-android
v2.10.12.2
v2.10.12.1
v2.10.12
mockk/mockk
v1.12.2
Compare Source
andThenJust
, thanks @NWuenschev1.12.1
unmockkAll
inside theMockKExtension
, thanks @gmazzogoogle/gson
v2.9.0
The minimum supported Java version changes from 6 to 7.
module-info.class
into Multi-Release JAR folder (#2013)maintained anymore (#2063)
GsonBuilder.disableJdkUnsafe()
(#1904)UPPER_CASE_WITH_UNDERSCORES
in FieldNamingPolicy (#2024)Gson.newJsonWriter
ignoring lenient and HTML-safe setting (#1989)FieldNamingPolicy.upperCaseFirstLetter
uppercasing non-letter (#2004)v2.8.9
sun.misc
optional (#1993).Gson.excluder()
exposing internalExcluder
class (#1986).RuntimeTypeAdapterFactory
depending on internalStreams
class (#1959).java.sql
optional (#1707).v2.8.8
Unsafe
if there is a security manager (#1712).EnumTypeAdapter
now works better when ProGuard has obfuscated enum fields (#1495).v2.8.7
ISO8601UtilsTest
failing on systems with UTC+X.JsonStreamParser
.IllegalStateException
inJsonTreeWriter
(#1592).JsonArray.isEmpty()
(#1640).rubensousa/GravitySnapHelper
v2.2.2
Compare Source
GravitySnapRecyclerView
when Gravity.CENTER is used.tomakehurst/wiremock
v2.27.2
Compare Source
v2.27.1
Compare Source
v2.27.0
Compare Source
queueit/android-webui-sdk
v2.0.36
Compare Source
Release notes:
queueDisabledInfo
Breaking changes:
onQueueDisabled
callback was changed. Its signature looks like this now:v2.0.35
Compare Source
Release notes:
Two new methods have been added to the QueueITEngine class:
A new callback was added in
QueueListener
,onSessionRestart
. With that callback, you can restart the queue session for the user, by runningrun
,runWithToken
, orrunWithKey
material-components/material-components-android
v1.5.0
Compare Source
What's new since 1.4.0
Material3
themes, styles, and functionality! Check out the following resources for more information:Divider
component (Docs)Other highlights
Badging
bd4914d
)BottomAppBar
0ed7c76
)34740b6
)BottomNavigationView
943c4f0
)BottomSheet
a38d2d8
)Chip
c08a07d
)CollapsingToolbarLayout
655dde0
)9ebf1a1
)af35dfb
)5c14772
)841f229
)f0ce498
)f0ac362
)3ad232d
)MaterialButton
c5c7a74
)153fdee
)MaterialDatePicker
cb5d622
)eb7b114
)281688a
)8fda897
)Snackbar
58ceeab
)b0558dc
](https://github.com/material-components/materiaConfiguration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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 has been generated by Renovate Bot.