Laraowl Release Notes
11 release notes curated from 1 source by the Releasebot Team. Last updated: Aug 30, 2026
- Aug 30, 2026
- Date parsed from source:Aug 30, 2026
- First seen by Releasebot:Aug 30, 2026
v1.1.2
Laraowl ships a broad update with dashboard and monitoring fixes, stronger real-time broadcasting, configurable app timezone support, new CLI commands for teams and projects, and UI polish like a desktop sidebar toggle and improved chart handling.
What's Changed
- fix(composer): stop reading app version from composer.json by @solis-eduardo in #30
- fix: chart exceptions on the dashboard by their own time series by @solis-eduardo in #34
- fix: split dashboard requests chart into authenticated vs guest bars by @solis-eduardo in #35
- fix: classify scheduled-task rollups by status instead of exit_code by @solis-eduardo in #36
- refactor: use Collapsible primitive for record Headers/Payload cards by @solis-eduardo in #40
- refactor: consolidate ad-hoc icon rendering into shared Icon component by @solis-eduardo in #41
- Add uptime monitoring switch by @voicecode-bv in #43
- feat(config): make app timezone configurable via APP_TIMEZONE by @solis-eduardo in #32
- chore(composer): update composer.lock to match composer.json by @solis-eduardo in #31
- feat: add CLI commands to create teams, invite members, and create projects by @solis-eduardo in #37
- feat: show sidebar toggle button on desktop with shortcut tooltip by @solis-eduardo in #38
- fix: Record::prunable() uses MySQL-only DATE_SUB() syntax on Postgres by @solis-eduardo in #33
- Fix real-time broadcasting so Reverb actually connects by @voicecode-bv in #46
- Fix for 502 errors: Import the namespaced defer() helper in UpdateService by @voicecode-bv in #45
- Make alert rule occurrence threshold and time window actually work by @voicecode-bv in #47
- Prevent health check runs from piling up and exhausting memory by @voicecode-bv in #48
New Contributors
- @solis-eduardo made their first contribution in #30
- @voicecode-bv made their first contribution in #43
Full Changelog: v1.1.1...v1.1.2
Original source - Aug 4, 2026
- Date parsed from source:Aug 4, 2026
- First seen by Releasebot:Aug 6, 2026
v1.1.1
Laraowl fixes blank stack traces, missing code previews, and team invitation login flow issues.
Fixed
Fixed blank stack traces and missing code previews on exception detail pages.
Fixed team invitations so invited users join the correct team after logging in or registering, without being redirected through team and project onboarding.
Full Changelog: v1.1.0...v1.1.1
Original source All of your release notes in one feed
Join Releasebot and get updates from Laraowl and hundreds of other software products.
- Jul 12, 2026
- Date parsed from source:Jul 12, 2026
- First seen by Releasebot:Aug 6, 2026
v1.1.0
Laraowl improves security, performance, and usability with a fix for a cross-tenant access flaw, faster dashboards powered by rollup tables and full-text log search, and better paginated detail pages. It also throttles duplicate reloads, fixes threshold timing, and updates upgrade backfill steps.
Security
Fixed a cross-tenant access flaw. Resources under a project — records, issues, integrations, alert rules and thresholds — were bound by global id without checking they belonged to the project in the URL. Any authenticated member of one team could read, modify or delete another team's data by id, including integration secrets such as Slack/Discord webhooks and bot tokens. All routes under a project are now scoped to that project. If you run LaraOwl with more than one team, upgrade promptly.
Performance: the dashboard now scales to millions of records
Charts, counters, lists and drill-downs used to be computed by scanning the raw records table and grouping on JSON — a 504 at ~50k records. They are now served from pre-aggregated rollup tables written at ingest time.
Measured on 2.28M real records (MySQL):
- Page
- Before
- After
- /requests?period=24h
- ~13.8 s
- ~200 ms
- user details
- ~12 s
- ~55 ms
- security
- ~14 s
- ~10 ms
- dashboard
- ~1.2 s
- ~380 ms
Log search is now full-text indexed instead of scanning every log's JSON payload — an index lookup on MySQL/MariaDB and PostgreSQL.
Aggregates outlive raw records (projects.rollup_retention_days, default 90), so long-range charts keep working after raw data is pruned.
Fixed
The dashboard flooded the server with duplicate requests — every page reloaded in full on each ingested batch. Reloads are now throttled.
Request details showed no queries, no events, and never the request body.
Drill-down pages showed only the first 50 occurrences with no way to page. All detail pages now paginate, and the First/Prev/Next/Last controls work.
Slow-performance thresholds fired 1000× too eagerly — durations are in microseconds, thresholds in milliseconds; they are now compared in the same unit.
Guests were counted as authenticated users in the user panels.
Upgrading
php artisan laraowl:updateRuns migrations, then laraowl:rollups:backfill --missing to build the rollups from your existing records. The backfill can take a few minutes on a large instance.
Full Changelog: v1.0.8...v1.1.0
Original source - Jul 9, 2026
- Date parsed from source:Jul 9, 2026
- First seen by Releasebot:Aug 6, 2026
v1.0.8
Laraowl adds daily update notifications and a new laraowl:update command for safe, maintenance-mode upgrades, plus fixes notification links so alerts and integration URLs point to the right team project routes.
Added
Update notifications and a laraowl:update command (#20)
LaraOwl now checks the GitHub releases API daily and shows a banner to the first registered account when a newer version exists. The check is cached and never blocks a request. Disable it with LARAOWL_UPDATE_CHECK=false.
php artisan laraowl:update # install the latest release php artisan laraowl:update --check # report only php artisan laraowl:update --dry-run # print the steps, run nothingThe command runs inside maintenance mode: pull, install dependencies, rebuild assets, migrate, clear caches, restart queue workers. It refuses to run outside a git checkout or on a dirty working tree, and if a step fails it lifts maintenance mode and leaves you on the previous version.
Fixed
Notification links pointed at the wrong URL (#23)
Alert and integration links were built as /projects/{project}, but routes are nested under a team prefix — /{team}/{project}, so every link 404'd. Six call sites across AlertService, IntegrationService, and projects:check-health now build URLs from named routes.
Upgrading
php artisan laraowl:update
No new migrations, no config to publish.
Full Changelog: v1.0.7...v1.0.8
Original source - Jun 28, 2026
- Date parsed from source:Jun 28, 2026
- First seen by Releasebot:Aug 6, 2026
v1.0.7
Laraowl fixes workspace switcher routing and adds an MCP server for projects, issues, and telemetry.
What's Changed
- fix: workspace switcher routes to wrong team when selecting a project by @jonathan-lewerissa in #18
- feat: MCP server for projects, issues and telemetry by @jonathan-lewerissa in #19
New Contributors
- @jonathan-lewerissa made their first contribution in #18
Full Changelog: v1.0.6...v1.0.7
Original source Similar to Laraowl with recent updates:
- Smokeball release notes144 release notes · Latest Sep 4, 2026
- Cosmolex release notes20 release notes · Latest Jul 30, 2025
- PracticePanther release notes36 release notes · Latest Aug 11, 2026
- Salesforce release notes71 release notes · Latest Sep 1, 2026
- Microsoft release notes820 release notes · Latest Sep 4, 2026
- Zoom release notes210 release notes · Latest Aug 31, 2026
- Jun 24, 2026
- Date parsed from source:Jun 24, 2026
- First seen by Releasebot:Aug 6, 2026
v1.0.6
Laraowl improves security and adds a production-ready Docker Compose setup with Caddy, PostgreSQL, Redis, Horizon, Reverb, and scheduler support.
What's Changed
Security: update package-lock.json to address 10 vulnerabilities by @koenhendriks in #15
Docker: add production-ready Docker Compose setup with Caddy, PostgreSQL, Redis, Horizon, Reverb, and scheduler support by @koenhendriks in #16
New Contributors
@koenhendriks made their first contribution in #15
Full Changelog: v1.0.5...v1.0.6
Original source - Jun 19, 2026
- Date parsed from source:Jun 19, 2026
- First seen by Releasebot:Aug 6, 2026
v1.0.5
Laraowl fixes PostgreSQL raw SQL support, centralizes monitoring URLs, and resolves real user emails.
What's Changed
- Fix RecordService raw SQL to support PostgreSQL by @pboese in #8
- Refactor: centralize monitoring URLs
- Fix: resolve real user emails
New Contributors
- @pboese made their first contribution in #8
Full Changelog: v1.0.4...v1.0.5
Original source - Jun 17, 2026
- Date parsed from source:Jun 17, 2026
- First seen by Releasebot:Aug 6, 2026
v1.0.4
Laraowl adds sortable request table columns and fixes issue detail crashes from string stack traces.
What's Changed
- feat: add sortable columns to the requests table by @comfyarno in #5
- fix: prevent issue detail page crash on string stack traces by @1ohnny in #7
New Contributors
- @comfyarno made their first contribution in #5
- @1ohnny made their first contribution in #7
Full Changelog: v1.0.3...v1.0.4
Original source - Jun 17, 2026
- Date parsed from source:Jun 17, 2026
- First seen by Releasebot:Aug 6, 2026
v1.0.3
Laraowl posts the full changelog for v1.0.2 to v1.0.3.
Full Changelog: v1.0.2...v1.0.3
Original source - Jun 17, 2026
- Date parsed from source:Jun 17, 2026
- First seen by Releasebot:Aug 6, 2026
v1.0.2
Laraowl v1.0.2 adds a registration toggle, stronger uptime monitoring, and fixes SQLite and routing issues.
Laraowl v1.0.2 🦉
Features & Changes
- feat: add registration env toggle (ALLOW_REGISTRATION) to enable/disable public sign-ups.
- feat: implement robust project uptime monitoring with retries to prevent transient cURL timeout errors, backed by comprehensive feature tests.
- fix: resolve SQLite database-compatibility errors in tests and fix wildcard routing collisions.
Full Changelog: v1.0.1...v1.0.2
Original source - May 21, 2026
- Date parsed from source:May 21, 2026
- First seen by Releasebot:Aug 6, 2026
v1.0.1
Laraowl adds records dashboard performance indexes and improves Project data ingest handling with sensitive fields hidden.
What's Changed
- Add records dashboard performance indexes by @ngs-th in #1
- Implement broadcastWith for ProjectDataIngested event and hide sensitive attributes in Project model
New Contributors
- @ngs-th made their first contribution in #1
Full Changelog: v1.0.0...v1.0.1
Original source
This is the end. You've seen all the release notes in this feed!
Curated by the Releasebot team
Releasebot is an aggregator of official release notes from hundreds of software vendors and thousands of sources.
Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.