Skip to content

Bump markdown from 3.5.1 to 3.8.1 - #6

Open
dependabot[bot] wants to merge 621 commits into
masterfrom
dependabot/pip/markdown-3.8.1
Open

Bump markdown from 3.5.1 to 3.8.1#6
dependabot[bot] wants to merge 621 commits into
masterfrom
dependabot/pip/markdown-3.8.1

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps markdown from 3.5.1 to 3.8.1.

Release notes

Sourced from markdown's releases.

Release 3.8.1

Fixed

  • Ensure incomplete markup declaration in raw HTML doesn't crash parser (#1534).
  • Fixed dropped content in md_in_html (#1526).
  • Fixed HTML handling corner case that prevented some content from not being rendered (#1528).

Release 3.8

Changed

  • DRY fix in abbr extension by introducing method create_element (#1483).
  • Clean up test directory by removing some redundant tests and port non-redundant cases to the newer test framework.
  • Improved performance of the raw HTML post-processor (#1510).

Fixed

  • Backslash Unescape IDs set via attr_list on toc (#1493).
  • Ensure md_in_html processes content inside "markdown" blocks as they are parsed outside of "markdown" blocks to keep things more consistent for third-party extensions (#1503).
  • md_in_html handle tags within inline code blocks better (#1075).
  • md_in_html fix handling of one-liner block HTML handling (#1074).
  • Ensure <center> is treated like a block-level element (#1481).
  • Ensure that abbr extension respects AtomicString and does not process perceived abbreviations in these strings (#1512).
  • Ensure smarty extension correctly renders nested closing quotes (#1514).

Release 3.7

Changed

Refactor abbr Extension

A new AbbrTreeprocessor has been introduced, which replaces the now deprecated AbbrInlineProcessor. Abbreviation processing now happens after Attribute Lists, avoiding a conflict between the two extensions (#1460).

The AbbrPreprocessor class has been renamed to AbbrBlockprocessor, which better reflects what it is. AbbrPreprocessor has been deprecated.

A call to Markdown.reset() now clears all previously defined abbreviations.

Abbreviations are now sorted by length before executing AbbrTreeprocessor to ensure that multi-word abbreviations are implemented even if an abbreviation exists for one of those component words. (#1465)

Abbreviations without a definition are now ignored. This avoids applying abbr tags to text without a title value.

Added an optional glossary configuration option to the abbreviations extension.

... (truncated)

Changelog

Sourced from markdown's changelog.

[3.8.1] - 2025-06-18

Fixed

  • Ensure incomplete markup declaration in raw HTML doesn't crash parser (#1534).
  • Fixed dropped content in md_in_html (#1526).
  • Fixed HTML handling corner case that prevented some content from not being rendered (#1528).

[3.8.0] - 2025-04-09

Changed

  • DRY fix in abbr extension by introducing method create_element (#1483).
  • Clean up test directory by removing some redundant tests and port non-redundant cases to the newer test framework.
  • Improved performance of the raw HTML post-processor (#1510).

Fixed

  • Backslash Unescape IDs set via attr_list on toc (#1493).
  • Ensure md_in_html processes content inside "markdown" blocks as they are parsed outside of "markdown" blocks to keep things more consistent for third-party extensions (#1503).
  • md_in_html handle tags within inline code blocks better (#1075).
  • md_in_html fix handling of one-liner block HTML handling (#1074).
  • Ensure <center> is treated like a block-level element (#1481).
  • Ensure that abbr extension respects AtomicString and does not process perceived abbreviations in these strings (#1512).
  • Ensure smarty extension correctly renders nested closing quotes (#1514).

[3.7.0] - 2024-08-16

Changed

  • Refactor abbr Extension

    A new AbbrTreeprocessor has been introduced, which replaces the now deprecated AbbrInlineProcessor. Abbreviation processing now happens after Attribute Lists, avoiding a conflict between the two extensions (#1460).

    The AbbrPreprocessor class has been renamed to AbbrBlockprocessor, which better reflects what it is. AbbrPreprocessor has been deprecated.

    A call to Markdown.reset() now clears all previously defined abbreviations.

    Abbreviations are now sorted by length before executing AbbrTreeprocessor to ensure that multi-word abbreviations are implemented even if an abbreviation exists for one of those component words. (#1465)

    Abbreviations without a definition are now ignored. This avoids applying

... (truncated)

Commits
  • 3870f20 Bump version to 3.8.1
  • 8207214 Ensure incomplete markup declaration in raw HTML doesn't crash parser.
  • 64a3c0f Fix HTML handling of \</>
  • f2b9fd1 Ensure md_in_html does not drop content
  • 513de8a Update pypa/gh-action-pypi-publish to v1.12.4
  • b34e1d0 Bump version to 3.8
  • e6b7163 Update deploy workflow to normalize version
  • bd67d48 Improve changelog validation
  • e912575 Fix incorrect TOC list structure in docs
  • 42d4b43 Fix CI badge in README
  • Additional commits viewable in compare view

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 18 commits May 3, 2026 18:19
Bumps [markdown](https://github.com/Python-Markdown/markdown) from 3.5.1 to 3.8.1.
- [Release notes](https://github.com/Python-Markdown/markdown/releases)
- [Changelog](https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md)
- [Commits](Python-Markdown/markdown@3.5.1...3.8.1)

---
updated-dependencies:
- dependency-name: markdown
  dependency-version: 3.8.1
  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
…ker name, no more dark-on-dark in light mode — each speaker-color- class sets a saturated dark text colour (e.g. color-1 = #0D47A1 deep blue) which on top of the speaker-tablet-time's existing rgba(0,0,0,0.18) overlay produced near-black-on-near-dark in light mode; now the time portion gets opacity: 0.7 in light mode and opacity: 0.85 in dark mode so it sits a perceptual notch lighter than the speaker name across all 16 speaker palettes and both themes, without per-colour overrides
lhpereira pushed a commit that referenced this pull request Jul 8, 2026
…darkened-tint in light mode — my previous fix added opacity: 0.7 to the time text which made it MORE transparent against the already-dark-tinted background (the opposite of what was needed); the right approach is to (a) push the time-half's black overlay from 0.18 to 0.55 in light mode so the speaker pastel becomes a saturated dark shade, and (b) force the time text to rgba(255,255,255,0.95) white so we get maximum contrast on top; dark mode keeps the existing 0.18 overlay + inherited pastel colour since that combination was already legible there
lhpereira pushed a commit that referenced this pull request Jul 8, 2026
…e now uses a LIGHTER tint of the speaker pastel rather than a darker one — the previous darkening attempt (0.55 black overlay) desaturated every speaker pastel to near-grey, killing the colour palette across all 16 speakers; the correct direction is to LIGHTEN the time half (0.55 white overlay) so it becomes a paler tint of the speaker pastel, with the inherited dark speaker-color text reading well on top; font-weight bumped 500→600 for an extra readability nudge; dark mode keeps the original 0.18 black overlay since the inherited dark-mode speaker pastels were already readable there
lhpereira pushed a commit that referenced this pull request Jul 8, 2026
…s a saturated darker shade of the speaker pastel with white text, distinct from the name half — first attempt (opacity 0.7) made text more transparent which read as dark-on-dark, second (0.55 black) desaturated to grey, third (0.55 white) was too washed-out and matched the name half, this one uses a moderate 0.32 black overlay + forced white text + a subtle text-shadow for legibility; result reads as a clearly darker version of the speaker pastel hue (not grey) with crisp white time digits; dark mode unchanged
lhpereira pushed a commit that referenced this pull request Jul 8, 2026
… speaker palette colour as its BACKGROUND with white text on top, no more colour-overlay hacks — the previous attempts all tried to manipulate the existing pastel via a translucent overlay (black darkens to grey, white lightens to washed-out, opacity reduces contrast) — none of them keep the speaker hue saturated; the correct architectural fix is to expose each speaker palette's saturated foreground as a CSS custom property (--speaker-fg, set on .speaker-color-1 through 16) and have .speaker-tablet-time use background: var(--speaker-fg) + color: white; this gives WCAG-AAA contrast, keeps the full hue identity per speaker, and reads as clearly distinct from the pastel name half without any greying; dark mode reverts to the original 0.18 black overlay since the dark-mode speaker palette already worked there
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