Skip to content

Releases: karma-runner/karma

v6.0.3

27 Jan 22:21
Compare
Choose a tag to compare

6.0.3 (2021-01-27)

Bug Fixes

  • plugins: refactor instantiatePlugin from preproprocessor (#3628) (e02858a)

v6.0.2

25 Jan 21:59
Compare
Choose a tag to compare

6.0.2 (2021-01-25)

Bug Fixes

v6.0.1

20 Jan 18:52
Compare
Choose a tag to compare

6.0.1 (2021-01-20)

Bug Fixes

  • server: set maxHttpBufferSize to the socket.io v2 default (#3626) (69baddc), closes #3621
  • restore customFileHandlers provider (#3624) (25d9abb)

v6.0.0

13 Jan 17:46
Compare
Choose a tag to compare

6.0.0 (2021-01-13)

Bug Fixes

Features

  • cli: error out on unexpected options or parameters (#3589) (603bbc0)
  • client: update banner with connection, test status, ping times (#3611) (4bf90f7)
  • server: print stack of unhandledrejections (#3593) (35a5842)
  • server: remove deprecated static methods (#3595) (1a65bf1)
  • remove support for running dart code in the browser (#3592) (7a3bd55)

BREAKING CHANGES

  • 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.

  • deps: Some projects have socket.io tests that are version sensitive.

v5.2.3

25 Sep 15:45
Compare
Choose a tag to compare

5.2.3 (2020-09-25)

Bug Fixes

v5.2.2

08 Sep 16:17
Compare
Choose a tag to compare

5.2.2 (2020-09-08)

Bug Fixes

v5.2.1

02 Sep 16:44
Compare
Choose a tag to compare

5.2.1 (2020-09-02)

Bug Fixes

  • remove broken link from docs - 06-angularjs.md (#3555) (da2f307)
  • remove unused JSON utilities and flatted dependency (#3550) (beed255)

v5.2.0

31 Aug 17:46
Compare
Choose a tag to compare

5.2.0 (2020-08-31)

Bug Fixes

Features

  • server: allow 'exit' listeners to set exit code (#3541) (7a94d33)

v5.1.1

28 Jul 18:18
Compare
Choose a tag to compare

5.1.1 (2020-07-28)

Bug Fixes

  • server: echo the hostname rather than listenAddress (#3532) (ebe7ce4)

v5.1.0

11 Jun 23:14
Compare
Choose a tag to compare

5.1.0 (2020-06-11)

Features