FilaMagenta / App

The official app for Filà Magenta. Available for iOS and Android.
0 stars 0 forks source link

Bump io.github.kevinnzou:compose-webview-multiplatform from 1.3.0 to 1.5.0 #8

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps io.github.kevinnzou:compose-webview-multiplatform from 1.3.0 to 1.5.0.

Release notes

Sourced from io.github.kevinnzou:compose-webview-multiplatform's releases.

1.5.0

New Features

  • Cookie Management.
interface CookieManager {
/**
 * Sets a cookie for the given url.
 * @param url The url for which the cookie is to be set.
 * @param cookie The cookie to be set.
 * */
suspend fun setCookie(url: String, cookie: Cookie)

/**
 * Gets all the cookies for the given url.
 * @param url The url for which the cookies are to be retrieved.
 *
 * @return A list of cookies for the given url.
 * */
suspend fun getCookies(url: String): List<Cookie>

/**
 * Removes all the cookies.
 * */
suspend fun removeAllCookies()

/**
 * Removes all the cookies for the given url.
 * @param url The url for which the cookies are to be removed.
 * */
suspend fun removeCookies(url: String)

}

Due to some issues with JCEF, we have decided to support Android and iOS platforms at first. Once the KCEF testing is stable, we will switch to it and also support cookies on the Desktop platform.

What's Changed

Full Changelog: https://github.com/KevinnZou/compose-webview-multiplatform/compare/1.4.0...1.5.0

1.4.0

What's Changed

Full Changelog: https://github.com/KevinnZou/compose-webview-multiplatform/compare/1.3.0...1.4.0

Commits
  • 1197e24 feat:Release Version 1.5.0
  • 57d12bc feat:Import Maven publish plugin
  • f09024c Merge pull request #24 from KevinnZou/feature/wiki_improvement
  • 45fd981 feat:Improve API documentation
  • 071b483 feat:restrict branches that can update Wiki
  • daef85b feat:setup github action for publishing wiki
  • e380103 feat:apply dokka plugin
  • 3d057cd Merge pull request #22 from KevinnZou/feature/reorganize_project_structure
  • a1e73e8 feat:upgrade to Java 17
  • 8f80225 feat:reorganize the project structure
  • 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 show ignore conditions` will show all of the ignore conditions of the specified dependency - `@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)