-
-
Notifications
You must be signed in to change notification settings - Fork 702
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.5.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: chaijs/chai
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.0.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
16
contributors
Commits on Mar 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 312b8f8 - Browse repository at this point
Copy the full SHA 312b8f8View commit details -
chore: drop support for Node < 12
BREAKING CHANGE: This package no longer supports Node.js 4 through 12
Configuration menu - View commit details
-
Copy full SHA for 6b8e6e6 - Browse repository at this point
Copy the full SHA 6b8e6e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for c65a332 - Browse repository at this point
Copy the full SHA c65a332View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3316e8b - Browse repository at this point
Copy the full SHA 3316e8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for bd0568f - Browse repository at this point
Copy the full SHA bd0568fView commit details -
Configuration menu - View commit details
-
Copy full SHA for c9c71dd - Browse repository at this point
Copy the full SHA c9c71ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e928d6 - Browse repository at this point
Copy the full SHA 9e928d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for e20aef4 - Browse repository at this point
Copy the full SHA e20aef4View commit details
Commits on Jun 27, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 120a338 - Browse repository at this point
Copy the full SHA 120a338View commit details
Commits on Sep 17, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 865c65d - Browse repository at this point
Copy the full SHA 865c65dView commit details
Commits on Oct 8, 2021
-
Configuration menu - View commit details
-
Copy full SHA for a8b8d79 - Browse repository at this point
Copy the full SHA a8b8d79View commit details
Commits on Oct 11, 2021
-
build: convert Makefile script to npm scripts (#1424)
* Convert Makefile script to npm scripts * Change node version 15 to version 16
Configuration menu - View commit details
-
Copy full SHA for f3ffa15 - Browse repository at this point
Copy the full SHA f3ffa15View commit details -
Configuration menu - View commit details
-
Copy full SHA for a8359d3 - Browse repository at this point
Copy the full SHA a8359d3View commit details
Commits on Jan 25, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 53315df - Browse repository at this point
Copy the full SHA 53315dfView commit details
Commits on Nov 7, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 84abea1 - Browse repository at this point
Copy the full SHA 84abea1View commit details
Commits on Feb 7, 2023
-
ES module conversion PoC (#1498)
* Fixed a regression that caused SyntaxErrors on IE 11 The changes made in #1334 incorrectly used an arrow function and as this isn't supported on IE 11 it causes a SyntaxError to be thrown when loading chai. * chai@4.3.2 * export chai.Assertion (#1378) * chai@4.3.3 * fix: support inspecting bigints (#1321) (#1383) * 4.3.4 * feat: use chaijs/loupe for inspection (#1401) (#1407) Fix #1228 * fix: package.json - deprecation warning on exports field (#1400) * fix package.json exports * build(deps-dev): bump codecov from 3.1.0 to 3.7.1 (#1446) Bumps [codecov](https://github.com/codecov/codecov-node) from 3.1.0 to 3.7.1. - [Release notes](https://github.com/codecov/codecov-node/releases) - [Changelog](https://github.com/codecov/codecov-node/blob/master/CHANGELOG.md) - [Commits](codecov/codecov-node@v3.1.0...v3.7.1) --- updated-dependencies: - dependency-name: codecov dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build chaijs * 4.3.5 * fix: use loupe@^2.3.1 * build chaijs * 4.3.6 * fix: deep-eql bump package to support symbols comparison (#1483) * 4.3.7 * build * chore: 4.x.x: Fix link to commit logs on GitHub (#1487) * 4.x.x: Fix link to commit logs on GitHub As there is no `master` branch, the link returned a 404. * Update History.md Co-authored-by: Andre Meyering <info@andremeyering.de> Co-authored-by: Keith Cirkel <keithamus@users.noreply.github.com> * build(deps): bump socket.io-parser from 4.0.4 to 4.0.5 (#1488) Bumps [socket.io-parser](https://github.com/socketio/socket.io-parser) from 4.0.4 to 4.0.5. - [Release notes](https://github.com/socketio/socket.io-parser/releases) - [Changelog](https://github.com/socketio/socket.io-parser/blob/main/CHANGELOG.md) - [Commits](socketio/socket.io-parser@4.0.4...4.0.5) --- updated-dependencies: - dependency-name: socket.io-parser dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * test: fix typo in test.js (#1459) * docs: specify return type of objDisplay (#1490) previously it was incorrectly labeled as `objDisplay(obj: object): void` in `@types/chai`. * feat: rework into ES modules This moves all of the sources to be ES modules rather than CommonJS. In order to produce the entrypoints, we use esbuild as a bundler (and as a transpiler in a way). Due to the fact that some dependencies are written in CommonJS, we actually use esbuild to create _two_ bundles: a CommonJS bundle, and an ES module bundle. Otherwise, someone importing the raw source would inevitably end up trying to import a CommonJS module somewhere down the tree, which would not work in browsers natively. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Lee Newson <lnewso@hotmail.com> Co-authored-by: Keith Cirkel <keithamus@users.noreply.github.com> Co-authored-by: rbruckheimer <rob@cosaic.io> Co-authored-by: Mike Frysinger <vapier@gmail.com> Co-authored-by: Pascal Corpet <pcorpet@users.noreply.github.com> Co-authored-by: Mimi <stevenjoezhang@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Scott Newcomer <snewcomer@users.noreply.github.com> Co-authored-by: Andre Meyering <info@andremeyering.de> Co-authored-by: Mavaddat Javid <5055400+mavaddat@users.noreply.github.com> Co-authored-by: scarf <greenscarf005@gmail.com> Co-authored-by: James Garbutt <james.garbutt@crispthinking.com>
Configuration menu - View commit details
-
Copy full SHA for b8a4285 - Browse repository at this point
Copy the full SHA b8a4285View commit details -
Configuration menu - View commit details
-
Copy full SHA for 45744cf - Browse repository at this point
Copy the full SHA 45744cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for e2fa47d - Browse repository at this point
Copy the full SHA e2fa47dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3076fb3 - Browse repository at this point
Copy the full SHA 3076fb3View commit details
Commits on Feb 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ad82f62 - Browse repository at this point
Copy the full SHA ad82f62View commit details
Commits on Jul 26, 2023
-
Kristján Oddsson authored
Jul 26, 2023 Configuration menu - View commit details
-
Copy full SHA for ca99d66 - Browse repository at this point
Copy the full SHA ca99d66View commit details -
Kristján Oddsson authored
Jul 26, 2023 Configuration menu - View commit details
-
Copy full SHA for c6481e0 - Browse repository at this point
Copy the full SHA c6481e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for f32439f - Browse repository at this point
Copy the full SHA f32439fView commit details
Commits on Oct 18, 2023
-
update
deep-eql
to latest version (#1542)Kristján Oddsson authoredOct 18, 2023 Configuration menu - View commit details
-
Copy full SHA for de9fa39 - Browse repository at this point
Copy the full SHA de9fa39View commit details
Commits on Oct 20, 2023
-
Inline
type-detect
as a simple function (#1544)* inline `type-detect` as a simple function * Add type-detec tests * update type-detect function * update existing tests
Kristján Oddsson authoredOct 20, 2023 Configuration menu - View commit details
-
Copy full SHA for 9e276dc - Browse repository at this point
Copy the full SHA 9e276dcView commit details -
Kristján Oddsson authored
Oct 20, 2023 Configuration menu - View commit details
-
Copy full SHA for 9011298 - Browse repository at this point
Copy the full SHA 9011298View commit details
Commits on Oct 21, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 528f4da - Browse repository at this point
Copy the full SHA 528f4daView commit details -
Update
assertion-error
to it's latest major version! (#1543)* update assertion-error * update `assertion-error` once more * update expected string in test
Kristján Oddsson authoredOct 21, 2023 Configuration menu - View commit details
-
Copy full SHA for 54d3e6b - Browse repository at this point
Copy the full SHA 54d3e6bView commit details
Commits on Oct 23, 2023
-
Replacing Karma with Web Test Runner (#1546)
* Replace Karma with Web Test Runner * remove karma dependencies * remove `assertion-error` from commonjs plugin list * remove redundant mocha options * run browsers in ci * fix ci script * change name from chrome to chromium * install playwright dependencies * import chai from correct place * drop checking in safari
Kristján Oddsson authoredOct 23, 2023 Configuration menu - View commit details
-
Copy full SHA for 0fc290b - Browse repository at this point
Copy the full SHA 0fc290bView commit details
Commits on Oct 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 947ff86 - Browse repository at this point
Copy the full SHA 947ff86View commit details
Commits on Oct 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 723759c - Browse repository at this point
Copy the full SHA 723759cView commit details
There are no files selected for viewing
This file was deleted.
This file was deleted.