Socket
Socket
Sign inDemoInstall

string-strip-html

Package Overview
Dependencies
0
Maintainers
1
Versions
225
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 8.4.0 to 8.5.0

38

CHANGELOG.md

@@ -6,2 +6,32 @@ # Change Log

## 8.5.0 (2023-05-14)
### Features
- back-porting the latest v13.4.0 to CJS and releasing as non-pure ESM (no `type: module` in package.json).
## 13.4.0 (2023-05-14)
### Features
- add `opts.ignoreIndentations` (useful when stripping tags from markdown) ([70a8e69](https://github.com/codsen/codsen/commit/70a8e69ffca71d621a208677f16322fcba81ea40)), closes [#71](https://github.com/codsen/codsen/issues/71)
## 13.3.0 (2023-05-14)
### Features
- improve breadcrumb pattern recognition ([bc05dcb](https://github.com/codsen/codsen/commit/bc05dcb02c9492839e3e551c84ab984e7b06ef70)), closes [#78](https://github.com/codsen/codsen/issues/78)
## 13.2.0 (2023-02-22)
### Features
- make `ignoreTagsWithTheirContents` to recognise self-closing tags ([7946d68](https://github.com/codsen/codsen/commit/7946d685cf882b4e0e6157522e2dd23655616d66)), closes [#66](https://github.com/codsen/codsen/issues/66)
## 13.1.0 (2023-02-04)
### Features
- strip tags inside HTML attribute values ([94a25c7](https://github.com/codsen/codsen/commit/94a25c71a531e185f4634a51ca11d3daaeacb9a7)), closes [#65](https://github.com/codsen/codsen/issues/65)
## 8.4.0 (2022-12-22)

@@ -11,3 +41,3 @@

Back-porting the latest v13.0.3 to CJS and releasing as non-pure ESM (no `type: module` in package.json).
- back-porting the latest v13.0.3 to CJS and releasing as non-pure ESM (no `type: module` in package.json).

@@ -18,3 +48,3 @@ ## 13.0.0 (2022-12-01)

- Minimum supported Node version is v14.18; we're dropping v12 support
- minimum supported Node version is v14.18; we're dropping v12 support

@@ -112,3 +142,3 @@ ## 12.0.0 (2022-11-14)

- Efficiency improvements — any tags within `<script>` are now skipped. But this comes at expense of tackling the weird case when two paired tags are overlapping,
- Efficiency improvements — any tags within `<script>` are now skipped. From now, we won't be able to tackle the weird case when two paired tags are overlapping,

@@ -125,3 +155,3 @@ ```html

That's a strange broken code case, but it still warrants a major semver bump. Our perf measurement doesn't cover the particular branch of the algorithm, so there is no perf difference in the records.
That's the reason of a major semver bump. Our perf measurement doesn't cover the particular branch of the algorithm, so there is no perf difference in the [records](https://github.com/codsen/codsen/blob/main/packages/string-strip-html/perf/historical.json).

@@ -128,0 +158,0 @@ ### Fixed

2

package.json
{
"name": "string-strip-html",
"version": "8.4.0",
"version": "8.5.0",
"description": "Strip HTML tags from strings. No parser, accepts mixed sources.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -50,2 +50,3 @@ type Range =

};
ignoreIndentations: boolean;
cb: null | ((cbObj: CbObj) => void);

@@ -52,0 +53,0 @@ reportProgressFunc: null | ((percDone: number) => void);

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc