diff --git a/CHANGES.md b/CHANGES.md index 571b08d10..544454946 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,23 @@ # Changes +## 15.0.2 + +- [`19bd99f3`](https://github.com/sinonjs/sinon/commit/19bd99f364ab44f0e2715571e5deab580d9aa7fd) + Use no-op for every function when restoring instances (#2499) (Carl-Erik Kopseng) +- [`8663ffa0`](https://github.com/sinonjs/sinon/commit/8663ffa056d3c58e82fa203801d58d3fce3c14a7) + Upgrade deps (#2498) (Carl-Erik Kopseng) + > Browserify, supports-color, husky had to be held back. +- [`e01275bb`](https://github.com/sinonjs/sinon/commit/e01275bb10d868a064d0cb27a6ae11ffa3d91ac2) + Un-pin @sinonjs/fake-timers (#2495) (Jordan Hawker) + > The commit upgrading from v9 to v10 appears to have accidentally dropped the caret from the version range +- [`6cbde9b0`](https://github.com/sinonjs/sinon/commit/6cbde9b08259efd98b2c52b81ca3b5e84dcf97b1) + fix throws().callsFake() precedence (#2497) (Eduardo Diaz) + > This makes sure an unconditional `callsFake()` invoked on the same stub that was previously setup to throw will overwrite the previous behavior. This aligns it with the other behaviors. +- [`45be60f3`](https://github.com/sinonjs/sinon/commit/45be60f3c6afc350eacbceed77539f437a9bbbce) + Replace probot/stale with official stale action (Morgan Roderick) + +_Released by [Carl-Erik Kopseng](https://github.com/fatso83) on 2023-03-12._ + ## 15.0.1 - [`aa493da4`](https://github.com/sinonjs/sinon/commit/aa493da47d788025c0d512696651072973f301ec) diff --git a/docs/_config.yml b/docs/_config.yml index cb4e4fab1..dce87a190 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -5,7 +5,7 @@ description: >- url: 'https://sinonjs.org' github_username: sinonjs sinon: - current_release: v15.0.1 + current_release: v15.0.2 current_major_version: 15 markdown: kramdown kramdown: diff --git a/docs/changelog.md b/docs/changelog.md index a18da1228..81d9a8bae 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -6,6 +6,24 @@ permalink: /releases/changelog # Changelog +## 15.0.2 + +- [`19bd99f3`](https://github.com/sinonjs/sinon/commit/19bd99f364ab44f0e2715571e5deab580d9aa7fd) + Use no-op for every function when restoring instances (#2499) (Carl-Erik Kopseng) +- [`8663ffa0`](https://github.com/sinonjs/sinon/commit/8663ffa056d3c58e82fa203801d58d3fce3c14a7) + Upgrade deps (#2498) (Carl-Erik Kopseng) + > Browserify, supports-color, husky had to be held back. +- [`e01275bb`](https://github.com/sinonjs/sinon/commit/e01275bb10d868a064d0cb27a6ae11ffa3d91ac2) + Un-pin @sinonjs/fake-timers (#2495) (Jordan Hawker) + > The commit upgrading from v9 to v10 appears to have accidentally dropped the caret from the version range +- [`6cbde9b0`](https://github.com/sinonjs/sinon/commit/6cbde9b08259efd98b2c52b81ca3b5e84dcf97b1) + fix throws().callsFake() precedence (#2497) (Eduardo Diaz) + > This makes sure an unconditional `callsFake()` invoked on the same stub that was previously setup to throw will overwrite the previous behavior. This aligns it with the other behaviors. +- [`45be60f3`](https://github.com/sinonjs/sinon/commit/45be60f3c6afc350eacbceed77539f437a9bbbce) + Replace probot/stale with official stale action (Morgan Roderick) + +_Released by [Carl-Erik Kopseng](https://github.com/fatso83) on 2023-03-12._ + ## 15.0.1 - [`aa493da4`](https://github.com/sinonjs/sinon/commit/aa493da47d788025c0d512696651072973f301ec) diff --git a/package-lock.json b/package-lock.json index eebe20d27..9717e491c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sinon", - "version": "15.0.1", + "version": "15.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sinon", - "version": "15.0.1", + "version": "15.0.2", "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^3.0.0", diff --git a/package.json b/package.json index 4d271b65d..38c4cdf92 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "xhr", "assert" ], - "version": "15.0.1", + "version": "15.0.2", "homepage": "https://sinonjs.org/", "author": "Christian Johansen", "repository": {