Skip to content
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

Enable experimental K2 #3087

Merged
merged 30 commits into from
Aug 25, 2023
Merged

Enable experimental K2 #3087

merged 30 commits into from
Aug 25, 2023

Conversation

serras
Copy link
Member

@serras serras commented Jul 7, 2023

This way we track the experimental flag as part of the update to 1.9.0

Note: the build is set to 1.9.30-dev-1098 because of this bug

renovate bot and others added 8 commits July 6, 2023 22:49
| datasource | package                                                                                           | from          | to           |
| ---------- | ------------------------------------------------------------------------------------------------- | ------------- | ------------ |
| maven      | com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin                                     | 1.8.22-1.0.11 | 1.9.0-1.0.11 |
| maven      | com.google.devtools.ksp:symbol-processing-api                                                     | 1.8.22-1.0.11 | 1.9.0-1.0.11 |
| maven      | org.jetbrains.kotlin.plugin.serialization:org.jetbrains.kotlin.plugin.serialization.gradle.plugin | 1.8.22        | 1.9.0        |
| maven      | org.jetbrains.kotlin.multiplatform:org.jetbrains.kotlin.multiplatform.gradle.plugin               | 1.8.22        | 1.9.0        |
| maven      | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin                                   | 1.8.22        | 1.9.0        |
Base automatically changed from renovate/all to main July 20, 2023 08:09
@raulraja raulraja closed this Jul 20, 2023
@nomisRev nomisRev reopened this Jul 20, 2023
@nomisRev
Copy link
Member

@raulraja I think you still have some automations attached to your account 😅

@serras serras marked this pull request as ready for review July 21, 2023 13:37
@serras serras requested review from nomisRev and a team July 21, 2023 13:37
@serras
Copy link
Member Author

serras commented Jul 21, 2023

@arrow-kt/maintainers I've turned this PR in one we can merge now, and keep checking K2 compatibility as we make changes with the added jvmTestK2. Right now the K2 part is checked against a dev version of 1.9.20, which should just be updated to the regular one as soon as the first public beta of that version is released.

@serras
Copy link
Member Author

serras commented Jul 21, 2023

You may noticed there's a removal in arrow-optics. Those are functions which in my experience nobody call, since you need a very convoluted construction (since it's a method with receiver inside a class). Note that the removed method is not the every we use to create a traversal in a collection, since that's defined in the dsl package.

@raulraja
Copy link
Member

@raulraja I think you still have some automations attached to your account 😅

Not sure how that happened or where it comes from but definitely not on purpose 😅

@JavierSegoviaCordoba
Copy link
Member

@serras wouldn't this block any Arrow final release until Kotlin 1.9.10 and Kotlin 1.9.20 were released?

@serras
Copy link
Member Author

serras commented Jul 22, 2023

@serras wouldn't this block any Arrow final release until Kotlin 1.9.10 and Kotlin 1.9.20 were released?

No, with the latest change in the workflow file the only action which is executed with 1.9.20-dev version of Kotlin is jvmTestK2. The rest still use 1.9.0, so the release can still happen as usual.

@serras
Copy link
Member Author

serras commented Aug 2, 2023

@raulraja could we move forward and merge this? This would give us updated stats for K2 compatibility, while keeping the whole build and releases in the more stable K1.

@serras
Copy link
Member Author

serras commented Aug 23, 2023

The problem for requiring @PublishedApi internal for annotations is still present as of 1.9.30-dev and it's marked as having 2.0-M1 as target.

Copy link
Member

@i-walker i-walker left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @serras !

@raulraja raulraja merged commit 50216fa into main Aug 25, 2023
11 checks passed
@raulraja raulraja deleted the k2-compilation-take2 branch August 25, 2023 16:36
@nomisRev
Copy link
Member

You may noticed there's a removal in arrow-optics. Those are functions which in my experience nobody call, since you need a very convoluted construction (since it's a method with receiver inside a class). Note that the removed method is not the every we use to create a traversal in a collection, since that's defined in the dsl package.

@serras this is a binary breaking changes in 1.x.x. Was this necessary for K2, or is it something we can easily postpone to 2.x.x?

@serras
Copy link
Member Author

serras commented Aug 29, 2023

this is a binary breaking changes in 1.x.x. Was this necessary for K2, or is it something we can easily postpone to 2.x.x?

Indeed, this is a binary breaking change, so we could postpone it. Also, I haven't checked whether it now works in a newer version of K2, which may be the case.

In 2.x the optics hierarchy has been pruned and cleaned, so this problem doesn't exist anymore.

@nomisRev
Copy link
Member

Okay, I'm going to check on that. Do you know if there is a possibility we can automatically fetch latest Kotlin dev version on CI? 🤔 It's probably non-trivial, right?

@serras
Copy link
Member Author

serras commented Aug 30, 2023

Okay, I'm going to check on that. Do you know if there is a possibility we can automatically fetch latest Kotlin dev version on CI? 🤔 It's probably non-trivial, right?

It's fairly doable: you can go to https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/org/jetbrains/kotlin/kotlin-compiler/maven-metadata.xml and read .metadata.versioning.latest using something like xq.

@nomisRev
Copy link
Member

We're still on the latest dev version then, and it's failing. Is there a YouTrack ticket for this, or should we try to create a minimal reproducible first? Or is there some documentation that this kind-of encoding going to be deprecated in K2? 🤔

It seems related to context pollution, but not sure why this would be prohibited.
I agree that it's probably not used often, and requires a strange call-site but I think we should prevent the binary breaking change.

@serras
Copy link
Member Author

serras commented Aug 30, 2023

We're still on the latest dev version then, and it's failing. Is there a YouTrack ticket for this, or should we try to create a minimal reproducible first? Or is there some documentation that this kind-of encoding going to be deprecated in K2? 🤔

It seems related to context pollution, but not sure why this would be prohibited. I agree that it's probably not used often, and requires a strange call-site but I think we should prevent the binary breaking change.

I would say just to bring it back, so we avoid the binary breaking change. As I mentioned above, that code is gone in 2.0, so it should not be a problem in the near future.

I didn't report this one in YouTrack, since it felt right to me somehow (as opposed to the "using a constant in an annotation is now considered public usage"). But we could do that too.

@nomisRev
Copy link
Member

since it felt right to me somehow

🤔 Are we talking about the same thing? The issue I found was that if you define an extension function inside of a class. You can not refer to the class instance anymore. I.e.

class MyClass {
  fun String.doSomething() {
    val x: String = this
    val xx: String = this@doSomething
    val y: MyClass = this@MyClass //invalid doesn't compile.
    ...
  }
}

That is weird to me, but perhaps I am overlooking something 😅 Since this doesn't "work-around" doesn't work.

fun interface PTraversal<S, T, A, B> : PSetter<S, T, A, B> {
  private val self: PTraversal<S, T, A, B>
    get() = this

  public val <U, V> PTraversal<U, V, S, T>.every: PTraversal<U, V, A, B>
    get() = this@every.compose(self)
}
Screenshot 2023-08-30 at 10 30 00

renovate bot referenced this pull request in sindrenm/android-project-template Sep 7, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[io.arrow-kt:arrow-optics-ksp-plugin](https://togithub.com/arrow-kt/arrow)
| `1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-optics](https://togithub.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-optics/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-optics/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-optics/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-optics/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-core](https://togithub.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-core/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-core/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-core/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-core/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>arrow-kt/arrow (io.arrow-kt:arrow-optics-ksp-plugin)</summary>

### [`v1.2.1`](https://togithub.com/arrow-kt/arrow/releases/tag/1.2.1)

[Compare
Source](https://togithub.com/arrow-kt/arrow/compare/1.2.0...1.2.1)

#### What's Changed

- Fix Option.tap deprecation message. by
[@&#8203;wolpl](https://togithub.com/wolpl) in
[https://github.com/arrow-kt/arrow/pull/3096](https://togithub.com/arrow-kt/arrow/pull/3096)
- Fix problem with optics and <\*> generics by
[@&#8203;serras](https://togithub.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3097](https://togithub.com/arrow-kt/arrow/pull/3097)
- Backport fix for K2 by [@&#8203;serras](https://togithub.com/serras)
in
[https://github.com/arrow-kt/arrow/pull/3098](https://togithub.com/arrow-kt/arrow/pull/3098)
- ignoreErrors for Raise by
[@&#8203;serras](https://togithub.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3100](https://togithub.com/arrow-kt/arrow/pull/3100)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3085](https://togithub.com/arrow-kt/arrow/pull/3085)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3101](https://togithub.com/arrow-kt/arrow/pull/3101)
- Update all dependencies to v0.12.0-rc.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3102](https://togithub.com/arrow-kt/arrow/pull/3102)
- Update all dependencies to v1.9.0-1.0.12 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3103](https://togithub.com/arrow-kt/arrow/pull/3103)
- Update all dependencies to v5.10.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3104](https://togithub.com/arrow-kt/arrow/pull/3104)
- Remove references to shift in Either.kt by
[@&#8203;nomisRev](https://togithub.com/nomisRev) in
[https://github.com/arrow-kt/arrow/pull/3105](https://togithub.com/arrow-kt/arrow/pull/3105)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3106](https://togithub.com/arrow-kt/arrow/pull/3106)
- Update dependency org.jetbrains.kotlinx.kover to v0.7.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3107](https://togithub.com/arrow-kt/arrow/pull/3107)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3112](https://togithub.com/arrow-kt/arrow/pull/3112)
- `parMapNotNull` by [@&#8203;raulraja](https://togithub.com/raulraja)
in
[https://github.com/arrow-kt/arrow/pull/3110](https://togithub.com/arrow-kt/arrow/pull/3110)
- `parMapNotNullUnordered` for `Flow` by
[@&#8203;serras](https://togithub.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3111](https://togithub.com/arrow-kt/arrow/pull/3111)
- Enable experimental K2 by
[@&#8203;serras](https://togithub.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3087](https://togithub.com/arrow-kt/arrow/pull/3087)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3118](https://togithub.com/arrow-kt/arrow/pull/3118)
- Update dependency com.diffplug.spotless to v6.21.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3119](https://togithub.com/arrow-kt/arrow/pull/3119)
- Inline `NonEmpty` maps by
[@&#8203;serras](https://togithub.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3120](https://togithub.com/arrow-kt/arrow/pull/3120)
- Remove enableCompatibilityMetadataVariant by
[@&#8203;nomisRev](https://togithub.com/nomisRev) in
[https://github.com/arrow-kt/arrow/pull/3124](https://togithub.com/arrow-kt/arrow/pull/3124)
- Update actions/checkout action to v4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3125](https://togithub.com/arrow-kt/arrow/pull/3125)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3121](https://togithub.com/arrow-kt/arrow/pull/3121)

#### New Contributors

- [@&#8203;wolpl](https://togithub.com/wolpl) made their first
contribution in
[https://github.com/arrow-kt/arrow/pull/3096](https://togithub.com/arrow-kt/arrow/pull/3096)

**Full Changelog**:
arrow-kt/arrow@1.2.0...1.2.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/sindrenm/android-project-template).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
nomisRev referenced this pull request in arrow-kt/arrow-website Sep 7, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[io.arrow-kt:arrow-optics-reflect](https://togithub.com/arrow-kt/arrow)
| `1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-optics-reflect/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-optics-reflect/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-optics-reflect/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-optics-reflect/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[io.arrow-kt:arrow-optics-ksp-plugin](https://togithub.com/arrow-kt/arrow)
| `1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-optics-ksp-plugin/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-optics](https://togithub.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-optics/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-optics/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-optics/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-optics/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-fx-stm](https://togithub.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-fx-stm/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-fx-stm/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-fx-stm/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-fx-stm/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-resilience](https://togithub.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-resilience/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-resilience/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-resilience/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-resilience/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-fx-coroutines](https://togithub.com/arrow-kt/arrow)
| `1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-fx-coroutines/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-fx-coroutines/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-fx-coroutines/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-fx-coroutines/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.arrow-kt:arrow-core](https://togithub.com/arrow-kt/arrow) |
`1.2.0` -> `1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.arrow-kt:arrow-core/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.arrow-kt:arrow-core/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.arrow-kt:arrow-core/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.arrow-kt:arrow-core/1.2.0/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>arrow-kt/arrow (io.arrow-kt:arrow-optics-reflect)</summary>

### [`v1.2.1`](https://togithub.com/arrow-kt/arrow/releases/tag/1.2.1)

[Compare
Source](https://togithub.com/arrow-kt/arrow/compare/1.2.0...1.2.1)

#### What's Changed

- Fix Option.tap deprecation message. by
[@&#8203;wolpl](https://togithub.com/wolpl) in
[https://github.com/arrow-kt/arrow/pull/3096](https://togithub.com/arrow-kt/arrow/pull/3096)
- Fix problem with optics and <\*> generics by
[@&#8203;serras](https://togithub.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3097](https://togithub.com/arrow-kt/arrow/pull/3097)
- Backport fix for K2 by [@&#8203;serras](https://togithub.com/serras)
in
[https://github.com/arrow-kt/arrow/pull/3098](https://togithub.com/arrow-kt/arrow/pull/3098)
- ignoreErrors for Raise by
[@&#8203;serras](https://togithub.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3100](https://togithub.com/arrow-kt/arrow/pull/3100)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3085](https://togithub.com/arrow-kt/arrow/pull/3085)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3101](https://togithub.com/arrow-kt/arrow/pull/3101)
- Update all dependencies to v0.12.0-rc.5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3102](https://togithub.com/arrow-kt/arrow/pull/3102)
- Update all dependencies to v1.9.0-1.0.12 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3103](https://togithub.com/arrow-kt/arrow/pull/3103)
- Update all dependencies to v5.10.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3104](https://togithub.com/arrow-kt/arrow/pull/3104)
- Remove references to shift in Either.kt by
[@&#8203;nomisRev](https://togithub.com/nomisRev) in
[https://github.com/arrow-kt/arrow/pull/3105](https://togithub.com/arrow-kt/arrow/pull/3105)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3106](https://togithub.com/arrow-kt/arrow/pull/3106)
- Update dependency org.jetbrains.kotlinx.kover to v0.7.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3107](https://togithub.com/arrow-kt/arrow/pull/3107)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3112](https://togithub.com/arrow-kt/arrow/pull/3112)
- `parMapNotNull` by [@&#8203;raulraja](https://togithub.com/raulraja)
in
[https://github.com/arrow-kt/arrow/pull/3110](https://togithub.com/arrow-kt/arrow/pull/3110)
- `parMapNotNullUnordered` for `Flow` by
[@&#8203;serras](https://togithub.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3111](https://togithub.com/arrow-kt/arrow/pull/3111)
- Enable experimental K2 by
[@&#8203;serras](https://togithub.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3087](https://togithub.com/arrow-kt/arrow/pull/3087)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3118](https://togithub.com/arrow-kt/arrow/pull/3118)
- Update dependency com.diffplug.spotless to v6.21.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3119](https://togithub.com/arrow-kt/arrow/pull/3119)
- Inline `NonEmpty` maps by
[@&#8203;serras](https://togithub.com/serras) in
[https://github.com/arrow-kt/arrow/pull/3120](https://togithub.com/arrow-kt/arrow/pull/3120)
- Remove enableCompatibilityMetadataVariant by
[@&#8203;nomisRev](https://togithub.com/nomisRev) in
[https://github.com/arrow-kt/arrow/pull/3124](https://togithub.com/arrow-kt/arrow/pull/3124)
- Update actions/checkout action to v4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3125](https://togithub.com/arrow-kt/arrow/pull/3125)
- Update all dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/arrow-kt/arrow/pull/3121](https://togithub.com/arrow-kt/arrow/pull/3121)

#### New Contributors

- [@&#8203;wolpl](https://togithub.com/wolpl) made their first
contribution in
[https://github.com/arrow-kt/arrow/pull/3096](https://togithub.com/arrow-kt/arrow/pull/3096)

**Full Changelog**:
arrow-kt/arrow@1.2.0...1.2.1

</details>

---

### 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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/arrow-kt/arrow-website).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants