Skip to content

build(deps): bump github.com/argmaxinc/whisperkit from 0.17.0 to 0.18.0 in /app/MeetingTranscriber#80

Merged
pasrom merged 2 commits intomainfrom
dependabot/swift/app/MeetingTranscriber/github.com/argmaxinc/whisperkit-0.18.0
Apr 2, 2026
Merged

build(deps): bump github.com/argmaxinc/whisperkit from 0.17.0 to 0.18.0 in /app/MeetingTranscriber#80
pasrom merged 2 commits intomainfrom
dependabot/swift/app/MeetingTranscriber/github.com/argmaxinc/whisperkit-0.18.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 2, 2026

Bumps github.com/argmaxinc/whisperkit from 0.17.0 to 0.18.0.

Release notes

Sourced from github.com/argmaxinc/whisperkit's releases.

v0.18.0

Highlights

This release refactors SpeakerKit around a new shared ModelManager base class, unifying the download → load → unload lifecycle across kits and simplifying the SpeakerKit public API.

The top-level entry point is now just:

let speakerKit = try await SpeakerKit()

No config object required for the default case.

Architecture Changes

ModelManager (new, ArgmaxCore)

A reusable base class for managing the full model lifecycle that all kits can now inherit from. It handles state transitions, error recovery, and concurrent load coalescing via an internal LoadModelsCoordinator — concurrent callers to ensureModelsLoaded() coalesce onto a single in-flight task rather than racing.

Backend-specific I/O is delegated to a new ModelLoader protocol:

public protocol ModelLoader: AnyObject, Sendable {
    var modelFolder: String? { get }
    func resolveModels(downloader: ModelDownloader, progressCallback: ((Progress) -> Void)?) async throws -> String
    func load(from modelPath: String, prewarm: Bool) async throws
    func unload() async
}

SpeakerKitDiarizer (replaces SpeakerKitModelManager)

SpeakerKitModelManager has been replaced by SpeakerKitDiarizer, which inherits from ModelManager and conforms to the new Diarizer protocol. Create it via the static factory:

let diarizer = SpeakerKitDiarizer.pyannote(config: config)

SpeakerKitModelManager is still available as a deprecated typealias pointing to SpeakerKitDiarizer so existing code compiles with a warning rather than breaking.

Diarizer protocol (new)

A clean protocol for plugging in diarization backends:

public protocol Diarizer: Sendable {
    var modelState: ModelState { get }
    func downloadModels() async throws
    func loadModels() async throws
    func unloadModels() async
</tr></table> 

... (truncated)

Commits

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 show <dependency name> 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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file swift_package_manager Pull requests that update swift_package_manager code labels Apr 2, 2026
@github-actions github-actions bot added the chore Maintenance or non-functional changes label Apr 2, 2026
Bumps [github.com/argmaxinc/whisperkit](https://github.com/argmaxinc/WhisperKit) from 0.17.0 to 0.18.0.
- [Release notes](https://github.com/argmaxinc/WhisperKit/releases)
- [Commits](argmaxinc/WhisperKit@v0.17.0...v0.18.0)

---
updated-dependencies:
- dependency-name: github.com/argmaxinc/whisperkit
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Roman PASSLER <roman.passler@gmail.com>
@pasrom pasrom force-pushed the dependabot/swift/app/MeetingTranscriber/github.com/argmaxinc/whisperkit-0.18.0 branch from 37b26d8 to e19d5da Compare April 2, 2026 15:40
@pasrom pasrom merged commit 3f10482 into main Apr 2, 2026
6 checks passed
@pasrom pasrom deleted the dependabot/swift/app/MeetingTranscriber/github.com/argmaxinc/whisperkit-0.18.0 branch April 2, 2026 16:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

chore Maintenance or non-functional changes dependencies Pull requests that update a dependency file swift_package_manager Pull requests that update swift_package_manager code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant