From b252475dadaa9007452e47af66c872e8b25fd890 Mon Sep 17 00:00:00 2001 From: Carl-Erik Kopseng Date: Thu, 20 Apr 2023 13:58:37 +0200 Subject: [PATCH] 15.0.4 --- CHANGES.md | 15 +++++++++++++++ docs/_config.yml | 2 +- docs/changelog.md | 15 +++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 34 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 454af6bd4..4eb4b0ea5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,20 @@ # Changes +## 15.0.4 + +- [`e9042c4f`](https://github.com/sinonjs/sinon/commit/e9042c4f18f4aa3e36e13652196c746b759aa1a5) + Handling non-configurable object descriptors on the prototype (#2508) (Carl-Erik Kopseng) + > This should essentially make decorated methods stubbable again (see #2491) +- [`430c9a60`](https://github.com/sinonjs/sinon/commit/430c9a604f5509ca6d7e11e3edaaa8553a77ae93) + Remove uses of `var` (#2506) (Carl-Erik Kopseng) + > Replace var with const where possible in /lib and /test. + > + > Modified the let codemod to be a codemod. + > + > Took about half an hour with --watch running + +_Released by [Carl-Erik Kopseng](https://github.com/fatso83) on 2023-04-20._ + ## 15.0.3 - [`b775f1b4`](https://github.com/sinonjs/sinon/commit/b775f1b4174c5a92fa7fa8f70fbf3f4b5466a39e) diff --git a/docs/_config.yml b/docs/_config.yml index 82ab42018..8c561f5bf 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.3 + current_release: v15.0.4 current_major_version: 15 markdown: kramdown kramdown: diff --git a/docs/changelog.md b/docs/changelog.md index 4a1f08735..9ec043fb8 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -6,6 +6,21 @@ permalink: /releases/changelog # Changelog +## 15.0.4 + +- [`e9042c4f`](https://github.com/sinonjs/sinon/commit/e9042c4f18f4aa3e36e13652196c746b759aa1a5) + Handling non-configurable object descriptors on the prototype (#2508) (Carl-Erik Kopseng) + > This should essentially make decorated methods stubbable again (see #2491) +- [`430c9a60`](https://github.com/sinonjs/sinon/commit/430c9a604f5509ca6d7e11e3edaaa8553a77ae93) + Remove uses of `var` (#2506) (Carl-Erik Kopseng) + > Replace var with const where possible in /lib and /test. + > + > Modified the let codemod to be a codemod. + > + > Took about half an hour with --watch running + +_Released by [Carl-Erik Kopseng](https://github.com/fatso83) on 2023-04-20._ + ## 15.0.3 - [`b775f1b4`](https://github.com/sinonjs/sinon/commit/b775f1b4174c5a92fa7fa8f70fbf3f4b5466a39e) diff --git a/package-lock.json b/package-lock.json index b373b4a32..4fc576eaf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sinon", - "version": "15.0.3", + "version": "15.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sinon", - "version": "15.0.3", + "version": "15.0.4", "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^3.0.0", diff --git a/package.json b/package.json index 6fab36021..d3ff95e60 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "xhr", "assert" ], - "version": "15.0.3", + "version": "15.0.4", "homepage": "https://sinonjs.org/", "author": "Christian Johansen", "repository": {