gdg-berlin-android / ZeThree

ZeAppp v3, created by Android enthusiasts joining the Droidcon 2021 in Berlin, coming to the GDG Booth and writing code, 15 minutes at a time
8 stars 2 forks source link

Bump coil-compose from 1.3.2 to 2.2.0 #49

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps coil-compose from 1.3.2 to 2.2.0.

Release notes

Sourced from coil-compose's releases.

2.2.0

See CHANGELOG.md.

2.1.0

See CHANGELOG.md.

2.0.0

See CHANGELOG.md.

2.0.0-rc03

See CHANGELOG.md.

2.0.0-rc02

See CHANGELOG.md.

2.0.0-rc01

See CHANGELOG.md.

2.0.0-alpha09

See CHANGELOG.md.

2.0.0-alpha08

See CHANGELOG.md.

2.0.0-alpha07

See CHANGELOG.md.

2.0.0-alpha06

See CHANGELOG.md.

2.0.0-alpha05

See CHANGELOG.md.

2.0.0-alpha04

See CHANGELOG.md.

2.0.0-alpha03

See CHANGELOG.md.

2.0.0-alpha02

See CHANGELOG.md.

2.0.0-alpha01

See CHANGELOG.md.

1.4.0

See CHANGELOG.md.

Changelog

Sourced from coil-compose's changelog.

[2.2.0] - August 16, 2022

  • New: Add ImageRequest.videoFramePercent to coil-video to support specifying the video frame as a percent of the video's duration.
  • New: Add ExifOrientationPolicy to configure how BitmapFactoryDecoder treats EXIF orientation data.
  • Fix: Don't throw an exception in RoundedCornersTransformation if passed a size with an undefined dimension.
  • Fix: Read a GIF's frame delay as two unsigned bytes instead of one signed byte.
  • Update Kotlin to 1.7.10.
  • Update Coroutines to 1.6.4.
  • Update Compose to 1.2.1.
  • Update OkHttp to 4.10.0.
  • Update Okio to 3.2.0.
  • Update accompanist-drawablepainter to 0.25.1.
  • Update androidx.annotation to 1.4.0.
  • Update androidx.appcompat:appcompat-resources to 1.5.0.
  • Update androidx.core to 1.8.0.

[2.1.0] - May 17, 2022

  • New: Support loading ByteArrays. (#1202)
  • New: Support setting custom CSS rules for SVGs using ImageRequest.Builder.css. (#1210)
  • Fix: Convert GenericViewTarget's private methods to protected. (#1273)
  • Update compile SDK to 32. (#1268)

[2.0.0] - May 10, 2022

Coil 2.0.0 is a major iteration of the library and includes breaking changes. Check out the upgrade guide for how to upgrade.

  • New: Introduce AsyncImage in coil-compose. Check out the documentation for more info.
// Display an image from the network.
AsyncImage(
    model = "https://example.com/image.jpg",
    contentDescription = null
)

// Display an image from the network with a placeholder, circle crop, and crossfade animation. AsyncImage( model = ImageRequest.Builder(LocalContext.current) .data("https://example.com/image.jpg") .crossfade(true) .build(), placeholder = painterResource(R.drawable.placeholder), contentDescription = stringResource(R.string.description), contentScale = ContentScale.Crop, modifier = Modifier.clip(CircleShape) )

  • New: Introduce a public DiskCache API.

... (truncated)

Commits
  • 2ac94fa Prepare 2.2.0. (#1385)
  • f18f17a Update dependency com.android.tools.build:gradle to v7.3.0-rc01 (#1407)
  • 4301cfc Minor documentation fix. (#1404)
  • 2db4a52 Read frame delay as two unsigned bytes instead of one signed byte. (#1403)
  • 2805f5b Enable lint and fail on warnings. (#1402)
  • ac5f796 Fix deprecation warning caused by setting the namespace via manifest. (#1401)
  • b9fa424 Update Dokka to 1.7.10. (#1400)
  • 1f3c8e4 Migrate to kotlinter and update ktlint to 0.46.1. (#1399)
  • 9eed239 Update dependency com.google.accompanist:accompanist-drawablepainter to v0.25...
  • 4e6fa6b Update Compose compiler (1.3.0) and Kotlin (1.7.10). (#1391)
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 2 years ago

Superseded by #51.