chore(deps): update dependency karma to v6
Compare changes
Gitlab 18.0 has been released. Since there are breaking changes the update will be postponed to July 2025. For a list of breaking changes see https://about.gitlab.com/blog/2025/04/18/a-guide-to-the-breaking-changes-in-gitlab-18-0/. Please prepare yourself and your projects for this update.
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
karma (source) | devDependencies | major | ^5.1.0 -> ^6.0.0 |
v6.0.0
server: Deprecated require('karma').server.start()
and require('karma').Server.start()
variants were removed from the public API. Instead use canonical form:
const { Server } = require('karma'); const server = new Server(); server.start();
cli: Karma is more strict and will error out if unknown option or argument is passed to CLI.
Using Karma to run Dart code in the browser is no longer supported. Use your favorite Dart-to-JS compiler instead.
dart
file type has been removed without a replacement.
customFileHandlers
DI token has been removed. Use middleware
to achieve similar functionality.
customScriptTypes
DI token has been removed. It had no effect, so no replacement is provided.
This MR has been generated by Renovate Bot.