Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: karma-runner/karma-jasmine
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.2
Choose a base ref
...
head repository: karma-runner/karma-jasmine
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.1.0
Choose a head ref
  • 17 commits
  • 13 files changed
  • 7 contributors

Commits on Mar 30, 2022

  1. refactor: replace deprecated String.prototype.substr()

    .substr() is deprecated so we replace it with .slice() which works similarily but isn't deprecated
    
    Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
    CommanderRoot authored and Jonathan Ginsburg committed Mar 30, 2022
    Configuration menu
    Copy the full SHA
    526b593 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2022

  1. docs: fix README.md badges

    XhmikosR authored and Jonathan Ginsburg committed Mar 31, 2022
    Configuration menu
    Copy the full SHA
    f78bbec View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2022

  1. ci: lint and commitlint in its own workflow

    Fixes #311
    Jonathan Ginsburg committed Apr 11, 2022
    Configuration menu
    Copy the full SHA
    d6e5b2a View commit details
    Browse the repository at this point in the history
  2. ci: refactor: execute each test suite in its own step

    This allows for easier reading of failures.
    Jonathan Ginsburg committed Apr 11, 2022
    Configuration menu
    Copy the full SHA
    eb55de2 View commit details
    Browse the repository at this point in the history
  3. build: fix: use an eslint version compatible with Node.js 10

    Jonathan Ginsburg committed Apr 11, 2022
    Configuration menu
    Copy the full SHA
    dceeba7 View commit details
    Browse the repository at this point in the history
  4. ci: run linting only in the oldest Node.js we support

    Jonathan Ginsburg committed Apr 11, 2022
    Configuration menu
    Copy the full SHA
    dd50806 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2022

  1. feat(deps): update dependencies including jasmine-core

    BREAKING CHANGE: jasmine-core was updated to the 4.1.0.
    
    Please refer to the [release notes](https://github.com/jasmine/jasmine/blob/main/release_notes/4.0.0.md) for the complete list of changes and migration instructions.
    XhmikosR authored and Jonathan Ginsburg committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    821f094 View commit details
    Browse the repository at this point in the history
  2. build: drop Node.js 10 support

    BREAKING CHANGE: The minimum required version of Node is 12.0.0.
    XhmikosR authored and Jonathan Ginsburg committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    ea691e8 View commit details
    Browse the repository at this point in the history
  3. fix: limit karma peer dependency to ^6.0.0

    BREAKING CHANGE: The minimum required version of karma is 6.0.0.
    XhmikosR authored and Jonathan Ginsburg committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    d72c124 View commit details
    Browse the repository at this point in the history
  4. chore(release): 5.0.0 [skip ci]

    # [5.0.0](v4.0.2...v5.0.0) (2022-04-12)
    
    ### Bug Fixes
    
    * limit karma peer dependency to ^6.0.0 ([d72c124](d72c124))
    
    ### Build System
    
    * drop Node.js 10 support ([ea691e8](ea691e8))
    
    ### Features
    
    * **deps:** update dependencies including jasmine-core ([821f094](821f094))
    
    ### BREAKING CHANGES
    
    * The minimum required version of karma is 6.0.0.
    * The minimum required version of Node is 12.0.0.
    * **deps:** jasmine-core was updated to the 4.1.0.
    
    Please refer to the [release notes](https://github.com/jasmine/jasmine/blob/main/release_notes/4.0.0.md) for the complete list of changes and migration instructions.
    semantic-release-bot committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    b7b7e6b View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2022

  1. docs: minor README.md tweaks

    XhmikosR authored and Jonathan Ginsburg committed Apr 19, 2022
    Configuration menu
    Copy the full SHA
    4437021 View commit details
    Browse the repository at this point in the history
  2. build: add missing husky package, sort out the eslint packages

    Update update eslint-config-standard and downgrade eslint/eslint-plugin-promise because they are incompatible with eslint 8.x
    XhmikosR authored and Jonathan Ginsburg committed Apr 19, 2022
    Configuration menu
    Copy the full SHA
    963269d View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2022

  1. docs: make grep behaviour clearer

    It is not self-explanatory that grep will recognize whether the input string is a regex or not. In the case of a string it sanitizes it to turn it into a regex.
    flavianh authored and Jonathan Ginsburg committed Apr 25, 2022
    Configuration menu
    Copy the full SHA
    819d42d View commit details
    Browse the repository at this point in the history

Commits on May 13, 2022

  1. fix: fixes matches performance issue, github#302

    Sampo Kivistö authored and Jonathan Ginsburg committed May 13, 2022
    Configuration menu
    Copy the full SHA
    e964fa6 View commit details
    Browse the repository at this point in the history
  2. chore(release): 5.0.1 [skip ci]

    ## [5.0.1](v5.0.0...v5.0.1) (2022-05-13)
    
    ### Bug Fixes
    
    * fixes matches performance issue, github[#302](#302) ([e964fa6](e964fa6))
    semantic-release-bot committed May 13, 2022
    Configuration menu
    Copy the full SHA
    58d5d25 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2022

  1. feat(spec-filter): allow custom specFilter

    Allow users to define their own jasmine `specFilter`.
    
    ```js
    jasmine.getEnv().configure({
      specFilter: function(spec) {
        // ...
      }
    })
    ```
    nicojs authored and Jonathan Ginsburg committed Jun 16, 2022
    Configuration menu
    Copy the full SHA
    b73dbd6 View commit details
    Browse the repository at this point in the history
  2. chore(release): 5.1.0 [skip ci]

    # [5.1.0](v5.0.1...v5.1.0) (2022-06-16)
    
    ### Features
    
    * **spec-filter:** allow custom specFilter ([b73dbd6](b73dbd6))
    semantic-release-bot committed Jun 16, 2022
    Configuration menu
    Copy the full SHA
    c3f702a View commit details
    Browse the repository at this point in the history
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy