Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency karma to v6 [security] #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Aug 28, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
karma (source) ~1.4.1 -> ~6.3.16 age adoption passing confidence

GitHub Vulnerability Alerts

CVE-2022-0437

karma prior to version 6.3.14 contains a cross-site scripting vulnerability.

CVE-2021-23495

Karma before 6.3.16 is vulnerable to Open Redirect due to missing validation of the return_url query parameter.


Release Notes

karma-runner/karma (karma)

v6.3.16

Compare Source

Bug Fixes
  • security: mitigate the "Open Redirect Vulnerability" (ff7edbb)

v6.3.15

Compare Source

Bug Fixes

v6.3.14

Compare Source

Bug Fixes
  • remove string template from client code (91d5acd)
  • warn when singleRun and autoWatch are false (69cfc76)
  • security: remove XSS vulnerability in returnUrl query param (839578c)

v6.3.13

Compare Source

Bug Fixes

v6.3.12

Compare Source

Bug Fixes
  • remove depreciation warning from log4js (41bed33)

v6.3.11

Compare Source

Bug Fixes
  • deps: pin colors package to 1.4.0 due to security vulnerability (a5219c5)

v6.3.10

Compare Source

Bug Fixes
  • logger: create parent folders if they are missing (0d24bd9), closes #​3734

v6.3.9

Compare Source

Bug Fixes

v6.3.8

Compare Source

Bug Fixes
  • reporter: warning if stack trace contains generated code invocation (4f23b14)

v6.3.7

Compare Source

Bug Fixes
  • middleware: replace %X_UA_COMPATIBLE% marker anywhere in the file (f1aeaec), closes #​3711

v6.3.6

Compare Source

Bug Fixes

v6.3.5

Compare Source

Bug Fixes
  • client: prevent socket.io from hanging due to mocked clocks (#​3695) (105da90)

v6.3.4

Compare Source

Bug Fixes

v6.3.3

Compare Source

Bug Fixes

v6.3.2

Compare Source

Bug Fixes

v6.3.1

Compare Source

Bug Fixes
  • client: error out when opening a new tab fails (099b85e)

v6.3.0

Compare Source

Features
  • support asynchronous config.set() call in karma.conf.js (#​3660) (4c9097a)

v6.2.0

Compare Source

Features
  • plugins: add support wildcard config for scoped package plugin (#​3659) (39831b1)

6.1.2 (2021-03-09)

Bug Fixes

6.1.1 (2021-02-12)

Bug Fixes

v6.1.2

Compare Source

Bug Fixes

v6.1.1

Compare Source

Bug Fixes

v6.1.0

Compare Source

Features
  • config: improve karma.config.parseConfig error handling (#​3635) (9dba1e2)

6.0.4 (2021-02-01)

Bug Fixes

6.0.3 (2021-01-27)

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

6.0.2 (2021-01-25)

Bug Fixes

6.0.1 (2021-01-20)

Bug Fixes

v6.0.4

Compare Source

Bug Fixes

v6.0.3

Compare Source

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

v6.0.2

Compare Source

Bug Fixes

v6.0.1

Compare Source

Bug Fixes

v6.0.0

Compare Source

Bug Fixes
Features
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.

5.2.3 (2020-09-25)

Bug Fixes

5.2.2 (2020-09-08)

Bug Fixes

5.2.1 (2020-09-02)

Bug Fixes

v5.2.3

Compare Source

Bug Fixes

v5.2.2

Compare Source

Bug Fixes

v5.2.1

Compare Source

Bug Fixes

v5.2.0

Compare Source

Bug Fixes
Features

5.1.1 (2020-07-28)

Bug Fixes

v5.1.1

Compare Source

Bug Fixes

v5.1.0

Compare Source

Features

5.0.9 (2020-05-19)

Bug Fixes

5.0.8 (2020-05-18)

Bug Fixes

5.0.7 (2020-05-16)

Bug Fixes

5.0.6 (2020-05-16)

Bug Fixes

5.0.5 (2020-05-07)

Bug Fixes

5.0.4 (2020-04-30)

Bug Fixes
  • browser: make sure that empty results array is still recognized (#​3486) (fa95fa3)

5.0.3 (2020-04-29)

Bug Fixes

5.0.2 (2020-04-16)

Bug Fixes

5.0.1 (2020-04-10)

Bug Fixes

v5.0.9

Compare Source

Bug Fixes

v5.0.8

Compare Source

Bug Fixes

v5.0.7

Compare Source

Bug Fixes

v5.0.6

Compare Source

Bug Fixes

v5.0.5

Compare Source

Bug Fixes

v5.0.4

Compare Source

Bug Fixes
  • browser: make sure that empty results array is still recognized (#​3486) (fa95fa3)

v5.0.3

Compare Source

Bug Fixes

v5.0.2

Compare Source

Bug Fixes

v5.0.1

Compare Source

Bug Fixes

v5.0.0

Compare Source

Bug Fixes
Code Refactoring
Continuous Integration
Features
BREAKING CHANGES
  • Karma plugins which rely on the fact that Karma uses Bluebird promises may break as Bluebird-specific API is no longer available on Promises returned by the Karma core
  • server: Deprecated createPreprocessor removed, karma-browserify < 7 version doesn't work
  • no more testing on node 8.

4.4.1 (2019-10-18)

Bug Fixes
  • deps: back to karma-browserstack-launcher 1.4 (#​3361) (1cd87ad)
  • server: Add test coverage for config.singleRun true branch. (#​3384) (259be0d)
  • if preprocessor is async function and doesn't return a content then await donePromise (#​3387) (f91be24)

v4.4.1

Compare Source

Bug Fixes
  • deps: back to karma-browserstack-launcher 1.4 (#​3361) (1cd87ad)
  • server: Add test coverage for config.singleRun true branch. (#​3384) (259be0d)
  • if preprocessor is async function and doesn't return a content then await donePromise (#​3387) (f91be24)

v4.4.0

Compare Source

Bug Fixes
Features

v4.3.0

Compare Source

Bug Fixes
Features

v4.2.0

Compare Source

Bug Fixes

v4.1.0

Compare Source

Bug Fixes

4.0.1 (2019-02-28)

Bug Fixes

v4.0.1

Compare Source

Bug Fixes

v4.0.0

Compare Source

Bug Fixes
Chores
BREAKING CHANGES
  • Drop Support for Node 6, to make it possible to use async/await in karma codebase.

3.1.4 (2018-12-17)

Bug Fixes

3.1.3 (2018-12-01)

Bug Fixes

3.1.2 (2018-12-01)

Bug Fixes
Features

3.1.1 (2018-10-23)

Bug Fixes

v3.1.4

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Aug 29, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 0952001 to c73802d Compare August 29, 2023 02:45
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from c73802d to cdbc337 Compare September 20, 2023 08:37
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Sep 20, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from cdbc337 to 4e41f44 Compare September 21, 2023 05:17
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Sep 21, 2023
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Sep 27, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 4e41f44 to a982f9d Compare September 27, 2023 02:12
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Sep 28, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch 2 times, most recently from e296a40 to f4ae645 Compare September 29, 2023 20:57
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Sep 29, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from f4ae645 to a26f247 Compare September 30, 2023 08:25
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Sep 30, 2023
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Oct 10, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch 2 times, most recently from 5fe97a9 to 4acd629 Compare October 11, 2023 02:22
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Oct 11, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 4acd629 to 751d4cb Compare October 16, 2023 05:40
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Oct 16, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 751d4cb to c111dac Compare October 17, 2023 08:35
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Oct 17, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from c111dac to 9061ffa Compare October 24, 2023 23:19
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Oct 24, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 9061ffa to 4b30df1 Compare October 25, 2023 05:26
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Oct 25, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 4b30df1 to 0cce02f Compare November 6, 2023 20:59
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Nov 6, 2023
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 0cce02f to 067b4d4 Compare November 7, 2023 06:00
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Nov 7, 2023
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] May 24, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from be93bfd to c504a6a Compare June 5, 2024 20:58
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Jun 5, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from c504a6a to 7f0f58d Compare June 6, 2024 11:16
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Jun 6, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 7f0f58d to 4c8159b Compare June 29, 2024 11:40
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Jun 29, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 4c8159b to 743b8ac Compare June 30, 2024 08:59
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Jun 30, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 743b8ac to 33bb4c5 Compare July 14, 2024 08:57
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Jul 14, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 33bb4c5 to 6dd375e Compare July 15, 2024 08:53
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Jul 15, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from 6dd375e to c6dcecb Compare July 22, 2024 02:56
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Jul 22, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from c6dcecb to 9fedfa0 Compare July 24, 2024 08:47
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Jul 24, 2024
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Jul 29, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch 2 times, most recently from 4aa6955 to 0422a5d Compare July 30, 2024 05:29
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Jul 30, 2024
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Oct 10, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch 2 times, most recently from a401bdc to b3a30b5 Compare October 11, 2024 02:49
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Oct 11, 2024
@renovate renovate bot changed the title chore(deps): update dependency karma to v6 [security] chore(deps): update dependency karma to ~1.7.0 [security] Oct 29, 2024
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from b3a30b5 to f534fb0 Compare October 29, 2024 02:40
@renovate renovate bot force-pushed the renovate/npm-karma-vulnerability branch from f534fb0 to 41a3a82 Compare October 30, 2024 23:57
@renovate renovate bot changed the title chore(deps): update dependency karma to ~1.7.0 [security] chore(deps): update dependency karma to v6 [security] Oct 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants