From ff19b56c6f2611a847300a0b6a971f363605e1c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Raffray?= Date: Fri, 22 Nov 2024 15:06:53 +0100 Subject: [PATCH] chore(release): v2.1.3 --- CHANGELOG.md | 15 +++++++++++++++ package.json | 4 +++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..e2454f28 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + + +## v2.1.3 + +[compare changes](https://github.com/Baroshem/nuxt-security/compare/v2.1.2...v2.1.3) + +### 🩹 Fixes + +- #564 resolves issue with element.replace on non-string elements ([#564](https://github.com/Baroshem/nuxt-security/issues/564)) + +### ❤️ Contributors + +- Lawren + diff --git a/package.json b/package.json index 19ab906c..eb8b9cd2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-security", - "version": "2.1.2", + "version": "2.1.3", "license": "MIT", "type": "module", "engines": { @@ -48,6 +48,7 @@ "dev:preview": "nuxi preview playground", "dev:docs": "rm -rf dist && cd docs && yarn dev", "lint": "eslint .", + "release": "yarn lint && yarn test && yarn prepack && changelogen --release && npm publish && git push --follow-tags", "test": "vitest run --silent", "test:watch": "vitest watch", "stackblitz": "cd .stackblitz && yarn && yarn dev" @@ -68,6 +69,7 @@ "@nuxt/schema": "^3.11.2", "@nuxt/test-utils": "^3.12.0", "@types/node": "^18.18.1", + "changelogen": "^0.5.7", "eslint": "^8.50.0", "nuxt": "^3.11.2", "typescript": "^5.4.5",