Skip to content

Bump scikit-learn from 1.3.0 to 1.5.0 - #8

Open
dependabot[bot] wants to merge 621 commits into
masterfrom
dependabot/pip/scikit-learn-1.5.0
Open

Bump scikit-learn from 1.3.0 to 1.5.0#8
dependabot[bot] wants to merge 621 commits into
masterfrom
dependabot/pip/scikit-learn-1.5.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 9, 2026

Copy link
Copy Markdown

Bumps scikit-learn from 1.3.0 to 1.5.0.

Release notes

Sourced from scikit-learn's releases.

Scikit-learn 1.5.0

We're happy to announce the 1.5.0 release.

You can read the release highlights under https://scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_1_5_0.html and the long version of the change log under https://scikit-learn.org/stable/whats_new/v1.5.html

This version supports Python versions 3.9 to 3.12.

You can upgrade with pip as usual:

pip install -U scikit-learn

The conda-forge builds can be installed using:

conda install -c conda-forge scikit-learn

Scikit-learn 1.4.2

We're happy to announce the 1.4.2 release.

This release only includes support for numpy 2.

This version supports Python versions 3.9 to 3.12.

You can upgrade with pip as usual:

pip install -U scikit-learn

Scikit-learn 1.4.1.post1

We're happy to announce the 1.4.1.post1 release.

You can see the changelog here: https://scikit-learn.org/stable/whats_new/v1.4.html#version-1-4-1-post1

This version supports Python versions 3.9 to 3.12.

You can upgrade with pip as usual:

pip install -U scikit-learn

The conda-forge builds can be installed using:

conda install -c conda-forge scikit-learn

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

murtaza-nasir and others added 30 commits January 7, 2026 17:37
Fix PostgreSQL migration error with reserved keyword "user"
…s, and simplified config

- Make UI features data-driven (check transcription.hasDialogue instead of useAsrEndpoint flag)
- Add ConnectorSpecifications dataclass for provider constraints (file size, chunking, codecs)
- Add SPEAKER_COUNT_CONTROL capability for connectors supporting min/max speakers
- Implement connector-aware chunking with priority: connector internal > ENV > connector defaults
- Simplify environment variables with auto-detection (ASR_BASE_URL > TRANSCRIPTION_MODEL)
- Update templates to conditionally show diarization options based on connector capabilities
- Add env.transcription.example with updated documentation
…scriptions

- Add error formatting utility with pattern matching for known errors (413, timeout, auth, etc.)
- Store errors as ERROR_JSON format for rich frontend display
- Show color-coded error cards with icons, titles, guidance, and technical details
- Add permanent error detection to job queue (skip retries for 413, 401, etc.)
- Keep failed recordings instead of deleting so users can see errors and fix settings
- Disable summary generation and chat when transcription is an error
- Show friendly error messages in progress popup and toasts
- Update both desktop and mobile UIs with error handling
- Add 400/404 to permanent error codes (won't retry bad requests)
- Add invalid_request_error and bad request patterns
- Fix regex patterns to simple substring matching
- Convert files with unsupported extensions (like .weba) to mp3
  OpenAI only accepts: flac, m4a, mp3, mp4, mpeg, mpga, oga, ogg, wav, webm
- Upload endpoint now passes connector_specs to convert_if_needed
- File monitor also fetches and passes connector_specs
- This enables connector-aware codec conversion (e.g. opus -> mp3 for OpenAI)
- Extension check remains as fallback safety net
- Fix duration-based chunking for gpt-4o-transcribe-diarize (pass connector_specs)
- Always init chunking service so hard limits override ENABLE_CHUNKING=false
- Add TEXT_MODEL config to env.transcription.example (fixes Reddit user issue)
- Update README, getting-started.md, docker-compose.example.yml with required keys
- Add timeout error logging and fix UI updates on recording failure
murtaza-nasir and others added 22 commits May 3, 2026 15:47
…al, ASR editor save UX, and prompt-preview legend across all six languages
…ences/transcription-model translations, localising language option lists, and noting model-label localisation policy
…ereira)

Resolves conflict in templates/account.html where the PR's pt-BR additions
to the old in-tab Language Preferences block were rebased onto the new
Preferences tab introduced this release.

Backfills pt-BR.json with the 47 keys added since the PR was opened
(promptVariables.*, summaryMode.*, customizeSummary.*, asrEditor.*,
preview.*, form.transcriptionModel*, languages.{pl,uk,vi,th,tr,id,sv},
languages.autoDetect, languages.defaultModelDecides, preferences.*,
accountTabs.preferences, editTagModal.watchFolderVariableWarning) so
all seven locales remain at full parity.
Bumps [scikit-learn](https://github.com/scikit-learn/scikit-learn) from 1.3.0 to 1.5.0.
- [Release notes](https://github.com/scikit-learn/scikit-learn/releases)
- [Commits](scikit-learn/scikit-learn@1.3.0...1.5.0)

---
updated-dependencies:
- dependency-name: scikit-learn
  dependency-version: 1.5.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels May 9, 2026
@lhpereira
lhpereira force-pushed the master branch 2 times, most recently from 0be3bd3 to e290a79 Compare May 14, 2026 03:59
lhpereira pushed a commit that referenced this pull request Jul 8, 2026
…s in the top-left of the viewport — getParticipantDropdownPosition was looking up the input via document.querySelectorAll('.max-w-md input[placeholder=...']) where neither the .max-w-md class nor the i18n placeholder string match the design-system modal's markup (input uses .field and a literal English placeholder), so the lookup matched no element and the function fell back to top: 0, left: 0; now the input carries a :data-participant-index attribute and the JS looks it up via input[data-participant-index=N], which is independent of class names and placeholder text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants