github felixmosh/bull-board v8.0.0

7 hours ago

   🚀 Features

   🐞 Bug Fixes

   💣 Breaking Changes

  • Remove date-fns locale, migrate to Intl API

DateFormats now uses Intl.DateTimeFormatOptions

The short, common, and full properties of DateFormats previously accepted
date-fns format strings (e.g. "HH:mm:ss"). They now require
Intl.DateTimeFormatOptions objects.

- short?: string;
- common?: string;
- full?: string;
+ short?: Intl.DateTimeFormatOptions;
+ common?: Intl.DateTimeFormatOptions;
+ full?: Intl.DateTimeFormatOptions;

Migration example:

- dateFormats: { short: 'HH:mm:ss' }
+ dateFormats: { short: { hour: 'numeric', minute: 'numeric', second: 'numeric' } }

The date-fns locale was resolved internally from the lng setting. The Intl API
now uses the runtime's built-in locale data — no extra locale modules are needed

    View changes on GitHub

Don't miss a new bull-board release

NewReleases is sending notifications on new releases.