Skip to content

Releases: MBcom/kioskmanager

v1.5.0

20 Feb 20:46
12671ac

Choose a tag to compare

🆕 Browser Extension

A new Chrome extension is now part of the Kiosk Manager repository (browser-extension/). It replaces the iframe-based player with direct tab navigation and adds Cypress-like automation
scripting to kiosk displays.

Key features:

  • Auto-detects the Kiosk Manager by navigating to /play/ – no manual setup required on the device
  • Rotates playlist URLs via direct tab navigation (no iframes)
  • Automation scripts run automatically when the browser navigates to a matching URL (e.g. PowerBI login)
  • Cypress-like script API: cy.get(), .click(), .type(), .autofill(), cy.wait(), cy.waitForUrl(), and more
  • Scripts are stored centrally in the Kiosk Manager admin and delivered via the playlist API
  • Eval-free script execution – safe regardless of page Content Security Policy

🆕 Automation Scripts

A new AutomationScript model allows attaching browser automation scripts directly to Content Items.

  • Many-to-many relationship – one script can be reused across multiple content items
  • URL-pattern trigger – scripts execute automatically when the browser navigates to a matching URL
  • Permission-guarded – only users with kioskmanager.manage_automation_scripts or superusers can view and edit scripts
  • Scripts are returned inline with each playlist item via /api/playlist/

Migration

python manage.py migrate

Three migrations are included (0004–0006): FK → M2M refactor, permission, and model options.

Patch Release following Dependabot PR #67

20 Feb 20:34
12671ac

Choose a tag to compare

Automated patch release generated after merging Dependabot PR #67.

PR Link: #67

Dependabot Changes:

Bumps gunicorn from 23.0.0 to 25.0.0.

Release notes

Sourced from gunicorn's releases.

Gunicorn 25.0.0

New Features

  • Dirty Arbiters: Separate process pool for executing long-running, blocking operations (AI model loading, heavy computation) without blocking HTTP workers ([PR #3460](benoitc/gunicorn#3460))

    • Inspired by Erlang's dirty schedulers
    • Asyncio-based with Unix socket IPC
    • Stateful workers that persist loaded resources
    • New settings: --dirty-app, --dirty-workers, --dirty-timeout, --dirty-threads, --dirty-graceful-timeout
    • Lifecycle hooks: on_dirty_starting, dirty_post_fork, dirty_worker_init, dirty_worker_exit
  • Per-App Worker Allocation for Dirty Arbiters: Control how many dirty workers load each app for memory optimization with heavy models ([PR #3473](benoitc/gunicorn#3473))

    • Set workers class attribute on DirtyApp (e.g., workers = 2)
    • Or use config format module:class:N (e.g., myapp:HeavyModel:2)
    • Requests automatically routed to workers with the target app
    • New exception DirtyNoWorkersAvailableError for graceful error handling
    • Example: 8 workers × 10GB model = 80GB → with workers=2: 20GB (75% savings)
  • HTTP/2 Support (Beta): Native HTTP/2 (RFC 7540) support for improved performance with modern clients ([PR #3468](benoitc/gunicorn#3468))

    • Multiplexed streams over a single connection
    • Header compression (HPACK)
    • Flow control and stream prioritization
    • Works with gthread, gevent, and ASGI workers
    • New settings: --http-protocols, --http2-max-concurrent-streams, --http2-initial-window-size, --http2-max-frame-size, --http2-max-header-list-size
    • Requires SSL/TLS and h2 library: pip install gunicorn[http2]
    • New example: examples/http2_gevent/ with Docker and tests
  • HTTP 103 Early Hints: Support for RFC 8297 Early Hints to enable browsers to preload resources before the final response ([PR #3468](benoitc/gunicorn#3468))

    • WSGI: environ['wsgi.early_hints'](https://github.com/benoitc/gunicorn/blob/HEAD/headers) callback
    • ASGI: http.response.informational message type
    • Works with both HTTP/1.1 and HTTP/2
  • uWSGI Protocol for ASGI Worker: The ASGI worker now supports receiving requests via the uWSGI binary protocol from nginx ([PR #3467](benoitc/gunicorn#3467))

Bug Fixes

  • Fix HTTP/2 ALPN negotiation for gevent and eventlet workers when do_handshake_on_connect is False (the default). The TLS handshake is now explicitly performed before checking selected_alpn_protocol().

... (truncated)

Commits
  • 617a85e docs: update 25.0.0 release date to 2026-02-01
  • ee933f2 fix(asgi): quick shutdown on SIGINT/SIGQUIT, graceful on SIGTERM
  • 98ef198 docs: update security policy for maintained versions 24.1.1 and 25.0.0
  • 911e333 chore: replace RST with markdown, remove docs-lint and readthedocs config
  • 7ff671b chore: replace README.rst with README.md, remove modernization-plan.md
  • d5ab5dc Merge pull request #3473 from benoitc/feature/per-app-worker-allocation
  • d563a7e chore: bump version to 25.0.0
  • 86264ef docs: add per-app worker allocation to 25.0.0 changelog
  • c4fe116 docs: add per-app worker allocation documentation
  • 1af5997 docs: regenerate settings.md
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)
---

Patch Release following Dependabot PR #39

20 Feb 20:33
a0b9065

Choose a tag to compare

Automated patch release generated after merging Dependabot PR #39.

PR Link: #39

Dependabot Changes:

Bumps python from 3.13-slim to 3.14-slim.

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)
---

Patch Release following Dependabot PR #36

20 Feb 20:33
05e1361

Choose a tag to compare

Automated patch release generated after merging Dependabot PR #36.

PR Link: #36

Dependabot Changes:

Bumps the pip group with 1 update in the /src directory: django.

Updates django from 4.2.21 to 4.2.25

Commits
  • 57d20b2 [4.2.x] Bumped version for 4.2.25 release.
  • 9504bba [4.2.x] Fixed CVE-2025-59682 -- Fixed potential partial directory-traversal v...
  • 38d9ef8 [4.2.x] Fixed CVE-2025-59681 -- Protected QuerySet.annotate(), alias(), aggre...
  • 7c7d2a4 [4.2.x] Added stub release notes and release date for 4.2.25.
  • 3e27d61 [4.2.x] Added missing backticks in docs/releases/security.txt.
  • 07e5fb9 [4.2.x] Added CVE-2025-57833 to security archive.
  • 5636e82 [4.2.x] Post-release version bump.
  • 5e23d89 [4.2.x] Bumped version for 4.2.24 release.
  • 31334e6 [4.2.x] Fixed CVE-2025-57833 -- Protected FilteredRelation against SQL inject...
  • d5860d5 [4.2.x] Added stub release notes and release date for 4.2.24.
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.
---

kioskmanager-0.3.6

20 Feb 20:32

Choose a tag to compare

A Helm chart for deploying the Kioskmanager application.

v1.4.0

07 Jul 16:43

Choose a tag to compare

Feature release

  • add Cross-Origin-Opener-Policy: same-origin-allow-popups header to allow popup based login like in Microsoft PowerBI embeddings
  • fix SSO login button color in light mode

kioskmanager-0.3.5

07 Jul 16:48

Choose a tag to compare

A Helm chart for deploying the Kioskmanager application.

v1.3.0

05 Jun 21:18
da0932e

Choose a tag to compare

Feature Release

  • Video player controls are hidden now
  • Adds an option to hide status information when switching between content items
  • Bump Postgres Helm chart version to 16.7.8

kioskmanager-0.3.4

05 Jun 21:13

Choose a tag to compare

A Helm chart for deploying the Kioskmanager application.

v1.2.0

28 May 20:24

Choose a tag to compare

Feature release

  • Improved Display Matching in Admin UI:
    This release introduces enhancements that make it much easier to match and identify displays within the admin interface. Display UUIDs are now shown in a clear, prominent, and user-friendly manner when a display is not assigned to a group, streamlining the process for administrators to associate new or unassigned displays.