Skip to content

Commit

Permalink
REN - Update dependency com.github.pgreze:kotlin-process to v1.5.1 (#142
Browse files Browse the repository at this point in the history
)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[com.github.pgreze:kotlin-process](https://redirect.github.com/pgreze/kotlin-process)
| `1.5` -> `1.5.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/com.github.pgreze:kotlin-process/1.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/com.github.pgreze:kotlin-process/1.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/com.github.pgreze:kotlin-process/1.5/1.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.github.pgreze:kotlin-process/1.5/1.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>pgreze/kotlin-process
(com.github.pgreze:kotlin-process)</summary>

###
[`v1.5.1`](https://redirect.github.com/pgreze/kotlin-process/releases/tag/v1.5.1):
1.5.1

[Compare
Source](https://redirect.github.com/pgreze/kotlin-process/compare/v1.5...v1.5.1)

fix cancellation when stdout is consumed
[#&#8203;24](https://redirect.github.com/pgreze/kotlin-process/issues/24)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/StefanLobbenmeier/yt-dlp-compose).

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Stefan Lobbenmeier <stefan.lobbenmeier@gmail.com>
  • Loading branch information
renovate[bot] and StefanLobbenmeier authored Jan 27, 2025
1 parent f2b3783 commit 2074da4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 155 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ sourceSets { main { output.dir(versionDirectory) } }
dependencies {
val ktorVersion = "3.0.3"
val kotestVersion = "5.9.1"
val kotlinProcessVersion = "1.5"
val kotlinProcessVersion = "1.5.1"
val kotlinxSerializationVersion = "1.8.0"
val kamelVersion = "1.0.3"

Expand Down
152 changes: 0 additions & 152 deletions src/main/kotlin/com/github/pgreze/process/ProcessFixed.kt

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package de.lobbenmeier.stefan.downloadlist.business

import com.github.pgreze.process.Redirect
import com.github.pgreze.process.processFixed
import com.github.pgreze.process.process
import de.lobbenmeier.stefan.common.business.getDynamicSemaphoreSingleton
import de.lobbenmeier.stefan.settings.business.Settings
import de.lobbenmeier.stefan.updater.model.Binaries
Expand Down Expand Up @@ -50,7 +50,7 @@ class YtDlp(private val binaries: Binaries, private val settings: Settings) {
withPermit(isDownloadJob) {
println("Start process: $command")

processFixed(
process(
ytDlpBinary,
*fullOptions,
stdout =
Expand Down

0 comments on commit 2074da4

Please sign in to comment.