Product Changelog

Release Notes

See what's new in NavEd. Product updates, new features, and improvements for micro school, co-op, and small school management.

542 releases logged Shipped continuously
March 2026
Mar 25
New v2026.3.25.2

Parents can now pay for forms with Stripe Checkout.

When a school adds a payment field to a form, parents filling it out see a live payment summary with line items, quantities, and fee breakdown that updates as they change values. Clicking "Submit & Pay" saves their responses and redirects to Stripe's secure checkout page. After payment, they land on a confirmation page showing their itemized order, fees, total, and card details. If they abandon checkout, they see a banner with options to retry payment or cancel their submission. Each parent can only submit once per form.

What's New

  • Payment summary section on forms with dynamic totals that update as quantities change
  • Submit & Pay button with full-page overlay during Stripe redirect
  • Payment confirmation page with order summary, fee breakdown, and card last 4 digits
  • Abandoned checkout retry and cancel flows
  • Parent name and email auto-filled from their account

Mar 24
2 updates
New v2026.3.24.2

Payment field configuration UI added to the form builder.

Schools can now add a Payment field type when building forms. The Payment field includes a line items editor where you can set item labels, prices, and optionally link quantities to number fields on the same form. Fee handling is configurable with three modes -- School Absorbs Fees, Pass Fees to Parent, or let Parents Optionally Cover Fees -- with automatic enforcement of state surcharge laws. A live fee preview shows exactly how much Stripe and NavEd fees will be for any configuration.

What's New

  • Added Payment field type to form builder with line item management (add, edit, delete, drag-to-reorder)
  • Added fee mode selection with radio cards and live fee preview calculations
  • Added surcharge law enforcement that disables restricted fee modes for CA, CT, MA, ME
  • One payment field per form enforced with inline messaging

New v2026.3.24.1

Payment field configuration: schools can now set up payment fields in their forms.

This update adds the data models that let schools configure payment fields in their forms — including line items with prices and fee mode settings (who pays processing fees). It also adds the fee calculation that computes Stripe and NavEd fee breakdowns with penny-perfect math, and enforces surcharge laws for states like California and Connecticut that prohibit passing credit card fees to customers.

What's New

  • Payment and Payment Line Item configuration for form payment fields
  • "Payment" as a new field type in the form builder
  • Fee calculation with Stripe (2.9% + $0.30) and NavEd (1%) fees
  • Surcharge law enforcement for CA, CT, MA, and ME

Mar 19
5 updates
Fix v2026.3.19.5

NavEd now stays online during brief infrastructure hiccups — even when the database is momentarily unreachable.

Occasionally, our hosting provider performs brief maintenance on the database connection layer. When this happened, every page — including the system health check that tells our servers "yes, NavEd is still running" — would fail. This could cause our hosting platform to mistakenly think NavEd had crashed and restart it unnecessarily, extending the downtime.

We've restructured how NavEd handles these brief interruptions. The health check now responds independently, so even during a momentary database blip, your servers stay running and recover instantly once the connection is restored. We also eliminated unnecessary database lookups when loading stylesheets, icons, and other static files — so those assets load faster and aren't affected by database hiccups at all.

Fixes and Improvements

  • Health check endpoint now survives database proxy outages without triggering unnecessary server restarts
  • Static files (CSS, JavaScript, images) no longer require a database connection to load
  • Added structured logging to help us detect and diagnose infrastructure outages faster

Improvement v2026.3.19.4

The Gradebook page is now more resilient and significantly faster when loading assignment statistics.

When you open the Gradebook tab for a subject, NavEd calculates the highest, lowest, and average grade for each assignment. Previously, each of those calculations was triggering dozens of unnecessary individual database lookups — one for every student result, just to check a setting on the subject. For a class with 10 assignments and 20 students, that could mean over 600 tiny database calls on a single page load.

We've optimized all three grade statistic methods to load the data they need in a single efficient query per assignment. This dramatically reduces the number of database calls, makes the page load faster, and eliminates a rare crash that could occur if the database connection was briefly interrupted during the long chain of lookups.

Fixes and Improvements

  • Gradebook: eliminated repeated per-assignment database lookups in highest/lowest/average grade calculations
  • Gradebook: pre-loads subject data to avoid redundant lookups per assignment
  • Applies to both the Subject Overview and standalone Grades views

Improvement v2026.3.19.3

Removed a diagnostic check that was generating occasional background errors.

A debug session-verification query in our middleware was occasionally failing due to database connection timing during high-traffic moments. The query was leftover diagnostic code from a resolved session persistence investigation and served no functional purpose — sessions have been saving correctly all along.

We've removed the unnecessary verification step, which eliminates the background error and shaves one redundant database query off every page load.

Fixes and Improvements

  • Removed stale session-persistence diagnostic query from background middleware
  • One fewer database query per page load in production

Improvement v2026.3.19.2

Improved error filtering for transient infrastructure disruptions during page loads.

When our hosting provider's database proxy briefly disconnects during infrastructure maintenance, some page loads were generating error reports that our monitoring couldn't recognize. We've extended our error filter to detect those wrapped errors properly, and improved how grade calculation methods report errors internally for faster diagnosis.

Fixes and Improvements

  • Extended error filter to catch infrastructure disruption errors even when wrapped by application-level handling
  • Improved error handling in grade calculation methods to preserve error context for faster debugging

Improvement v2026.3.19.1

Reduced background noise in error monitoring from transient infrastructure events.

Occasionally, our hosting provider's database proxy goes through brief unavailability windows during infrastructure maintenance. Our background task worker was dutifully reporting these connection timeouts to our error tracker, even though it automatically recovers within seconds every time. These transient errors were creating noise that made it harder to spot real issues.

We've added a targeted filter that recognizes these connectivity errors and suppresses them from our error feed, while continuing to surface any genuine database errors. The background worker's self-healing behavior is unchanged — tasks continue to be retried and caught up automatically.

Fixes and Improvements

  • Added error filter for transient infrastructure connectivity errors

Mar 17
2 updates
Fix v2026.3.17.2

Reduced false alerts from session monitoring.

NavEd's session monitoring was sending alerts when a user's session expired after a normal password change. This is expected behavior — when you change your password, other active sessions are automatically signed out for security. The monitoring now correctly treats this as routine rather than flagging it as an error.

Fixes and Improvements

  • Session hash mismatch logging downgraded from error to warning (no longer triggers alerts)
  • Added defensive support for future secret key rotation to prevent unnecessary session invalidation

Fix v2026.3.17.1

The electives page no longer crashes for accounts with missing profiles.

If a student or parent account was set up incompletely — for example, after a demo reset or an interrupted signup — visiting the Electives page would show an error instead of loading. Now, you'll see a clear message asking you to contact your school administrator, and you'll be redirected safely to the home page.

This fix also covers the enrollment form, so saving elective choices is protected too.

Fixes and Improvements

  • Added graceful error handling for student and parent accounts with missing profiles on all electives pages
  • Added logging so school administrators can identify and fix affected accounts

Mar 16
Improvement v2026.3.16.1

Google sign-in is now faster for new users.

When a new user signed in with Google for the first time, NavEd was searching every school twice — once looking for an existing account, and again looking for a pending invitation. With 30+ schools on the platform, this added ~300ms of unnecessary delay to the sign-in flow.

Now both checks happen in a single pass through the schools, cutting the lookup time roughly in half.

Fixes and Improvements

  • Consolidated two separate school-scanning loops into one during Google sign-in

Mar 15
Fix v2026.3.15.1

Signing up with Google just got faster.

When a new user signed up through Google, NavEd was checking every school in the system one by one to find their invitation — adding a noticeable delay during the signup process. The more schools on NavEd, the longer the wait.

Now, when you send an invitation, we immediately record which school it belongs to. So when the invitee signs in with Google, we know exactly where to look — no searching required. Signup is now near-instant regardless of how many schools use NavEd.

Fixes and Improvements

  • Eliminated slowdown during Google sign-in for invited users
  • Signup speed no longer degrades as more schools join NavEd

Page 17 of 25

15 16 17 18 19

Want to stay updated?

Sign up for NavEd to get notified about new features and improvements

Get Started Free