Being a keyword used in the Kotlin language, we want to rename the value parameter of the EmailAddressexperimental type's factory functions as text. This is an incompatible source change to the experimental API.
// Before
fun EmailAddress.Companion.fromString(value: Any): EmailAddress
fun EmailAddress.Companion.fromString(value: Any, pattern: Any): EmailAddress
fun EmailAddress.Companion.fromStringOrNull(value: Any): EmailAddress?
fun EmailAddress.Companion.fromStringOrNull(value: Any, pattern: Any): EmailAddress?
// After
fun EmailAddress.Companion.fromString(text: Any): EmailAddress
fun EmailAddress.Companion.fromString(text: Any, pattern: Any): EmailAddress
fun EmailAddress.Companion.fromStringOrNull(text: Any): EmailAddress?
fun EmailAddress.Companion.fromStringOrNull(text: Any, pattern: Any): EmailAddress?
π Dependencies
This issue is blocked by the following items:
[x] #681
β Checklist
[x] π Rename the value parameter of the EmailAddress.Companion.fromString(Any) function as text, and update the unreleased changelog.
[x] π Rename the value parameter of the EmailAddress.Companion.fromString(Any, Any) function as text, and update the unreleased changelog.
[x] π Rename the value parameter of the EmailAddress.Companion.fromStringOrNull(Any) function as text, and update the unreleased changelog.
[x] π Rename the value parameter of the EmailAddress.Companion.fromStringOrNull(Any, Any) function as text, and update the unreleased changelog.
π Description
Being a keyword used in the Kotlin language, we want to rename the
value
parameter of theEmailAddress
experimental type's factory functions astext
. This is an incompatible source change to the experimental API.π Dependencies
This issue is blocked by the following items:
β Checklist
value
parameter of theEmailAddress.Companion.fromString(Any)
function astext
, and update the unreleased changelog.value
parameter of theEmailAddress.Companion.fromString(Any, Any)
function astext
, and update the unreleased changelog.value
parameter of theEmailAddress.Companion.fromStringOrNull(Any)
function astext
, and update the unreleased changelog.value
parameter of theEmailAddress.Companion.fromStringOrNull(Any, Any)
function astext
, and update the unreleased changelog.