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: chaijs/chai-http
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.4.0
Choose a base ref
...
head repository: chaijs/chai-http
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5.0.0
Choose a head ref
  • 19 commits
  • 26 files changed
  • 8 contributors

Commits on Jun 9, 2023

  1. Readme Link Updates (#307)

    * docs(readme): update links to match their redirects
    
    Added https to some links
    Updated links to the URL they redirect to
    
    * docs(readme): removed broken dependency badges
    
    removed dependency and devDependency badges because the site behind them is down (alanshaw/david#182)
    Trickfilm400 authored Jun 9, 2023
    Configuration menu
    Copy the full SHA
    7b4c050 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9637deb View commit details
    Browse the repository at this point in the history
  3. Dependency Updates (#308)

    * build(dev-deps): replace istanbul with nyc because its deprecated
    
    Replace coverage with nyc, as istanbul is deprecated (https://www.npmjs.com/package/istanbul)
    
    * build(dev-deps): update simplifyify
    
    Changelog: https://github.com/JS-DevTools/simplifyify/blob/master/CHANGELOG.md
    
    * build(dev-deps): update coveralls, npm-run-all
    
    * build(dev-deps): update es6-shim, http-server
    
    * build(dev-deps): update mocha to the highest node v10 supported version
    
    Never versions require higher nodejs versions
    
    * ci
    
    ---------
    
    Co-authored-by: Keith Cirkel <keithamus@users.noreply.github.com>
    Trickfilm400 and keithamus authored Jun 9, 2023
    Configuration menu
    Copy the full SHA
    d6f6060 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2023

  1. Breaking: Set Node-Version to >=v16.20 (#309)

    * build(deps): set required version to node v16.20 and update (dev-)dependencies
    
    All dependencies have been updated except for "is-ip", because it would require ESM modules
    
    * build(deps): update mocha configuration to new version
    
    * test: fixing broken test
    
    (But I'm not sure, why this changed - is this an upstream change?)
    
    * ci: update node versions
    
    * ci: set node v18 for publish job
    
    * ci: add main branch for the release
    
    the last release failed because the main branch is not in the configuration (https://github.com/semantic-release/semantic-release/blob/01e85df88af418f4e504ca4bb45658118f391b61/docs/usage/configuration.md#branches)
    
    BREAKING CHANGE: This change drops support for Node.js versions less than v16.20
    Trickfilm400 authored Jun 19, 2023
    Configuration menu
    Copy the full SHA
    4cb31ee View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. Configuration menu
    Copy the full SHA
    cc58a4b View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Configuration menu
    Copy the full SHA
    bc64cf1 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Merge pull request #317 from thomashohn/task-316-update-superagent-9

    [TASK] Update to superagent^9
    Kristján Oddsson authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    6b50e3d View commit details
    Browse the repository at this point in the history
  2. [TASK] Update low-hanging dependencies (#321)

    BREAKING CHANGE: We no longer support nodejs 16
    
    * [TASK] Update low-hanging dependencies
    
    * Updated node versions
    thomashohn authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    16e0d0b View commit details
    Browse the repository at this point in the history
  3. Update .releaserc.json (#319)

    To fix pipeline issues
    Olrar authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    0405a02 View commit details
    Browse the repository at this point in the history
  4. [TASK] Updated npm-packages for releasing at raised node version to l… (

    #323)
    
    * [TASK] Updated npm-packages for releasing at raised node version to latest 18 LTS version
    
    * Version to 18
    
    * Node 18.20.0 instead
    thomashohn authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    0c4ad14 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7d8b1d2 View commit details
    Browse the repository at this point in the history
  6. try release 5.0.0

    keithamus committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    2e9229f View commit details
    Browse the repository at this point in the history
  7. bump node version

    BREAKING CHANGE: minimum supported node version is now 18
    keithamus committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    5a1fa20 View commit details
    Browse the repository at this point in the history
  8. debug release

    keithamus authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    9e11cd8 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2024

  1. chore: update build pipeline to use v4 of github actions (#325)

    Updates the CI pipelines to use the newer 4.x actions from github
    thomashohn authored May 4, 2024
    Configuration menu
    Copy the full SHA
    e30a5b8 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2024

  1. Configuration menu
    Copy the full SHA
    62f521c View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. move to ESM (Chai 5) (#310)

    * feat: change project to ESM loader
    
    Move from CJs to ESModule
    
    * move mocha options into package.json
    
    * remove requires from test bootstrap
    
    * test: fixed tests for chai@5 with new plugin syntax
    feat: update to latest chai version
    
    BREAKING CHANGE: updated typescript interface due to incompatible export changes with esm (cannot export default and object in parallel)
    
    * feat: updated non-breaking dependencies
    fix: move type dependencies to devDependencies
    
    * refactor: change var to const declarations
    
    * docs: readme.md
    
    * fix: make http properties required on type
    
    * docs: remove promise note (most clients should support it now)
    
    * build: update dependencies
    
    * ci: set setup-node to v4
    
    ---------
    
    Co-authored-by: Kristján Oddsson <koddsson@gmail.com>
    Trickfilm400 and koddsson authored May 22, 2024
    Configuration menu
    Copy the full SHA
    e5fddbb View commit details
    Browse the repository at this point in the history

Commits on May 23, 2024

  1. style: add prettier and eslint (#328)

    * style: execute prettier on all code files
    build: add prettier to devDependencies
    
    * refactor: var to const/let
    
    * build: add simple eslint config & packages
    
    * refactor: optimize re-export of "is-ip"
    
    * refactor: optimize re-export of "is-ip"
    
    * chore: update eslint config
    
    * style: execute prettier on all code files
    chore: update prettier config
    
    * build: remove eslint-plugin-prettier
    
    * chore: add editorconfig
    
    * chore: update npm eslint script and cleanup eslint config file
    Trickfilm400 authored May 23, 2024
    Configuration menu
    Copy the full SHA
    bd11864 View commit details
    Browse the repository at this point in the history
  2. feat: add publish workflows (#329)

    Adds a publish workflow and updates a few dev scripts/dependencies to
    reduce the install size and security audit notices.
    43081j authored May 23, 2024
    Configuration menu
    Copy the full SHA
    3d1c5d1 View commit details
    Browse the repository at this point in the history
Loading