Skip to content

Commit 90d07bd

Browse files
deps: Bump escape-unicode from 0.2.0 to 0.3.0 (#1160)
Bumps [escape-unicode](https://github.com/neocotic/escape-unicode) from 0.2.0 to 0.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/neocotic/escape-unicode/releases">escape-unicode's releases</a>.</em></p> <blockquote> <h2>0.3.0</h2> <ul> <li><strong>Breaking Change:</strong> Remove <code>start</code> and <code>end</code> 2nd and 3rd optional parameters and always escape full range of <code>input</code> parameter <ul> <li>Caller is now responsible for slicing the <code>input</code> parameter beforehand, if desired</li> </ul> </li> <li><strong>Breaking Change:</strong> Add optional <code>options</code> 2nd parameter to support the following: <ul> <li><code>filter</code> - A function used to determine which Unicode code points should be converted to Unicode escapes</li> <li><code>replacer</code> - A function that returns a replacement string for an individual Unicode character represented by a specific Unicode code point, if any</li> </ul> </li> <li><strong>Breaking Change:</strong> Return empty string if <code>input</code> parameter is either <code>null</code> or <code>undefined</code></li> <li>Explicitly add full support for converting characters within the Basic Multilingual Plane (BMP)</li> <li>Rewrite the entire codebase in TypeScript and support both ESM and CJS usage</li> <li>Improve documentation</li> <li>Improve the developer experience for contributors with better tooling</li> <li>Bump all dependencies to latest versions</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/neocotic/escape-unicode/blob/main/CHANGES.md">escape-unicode's changelog</a>.</em></p> <blockquote> <h2>Version 0.3.0, 2025.08.04</h2> <ul> <li><strong>Breaking Change:</strong> Remove <code>start</code> and <code>end</code> 2nd and 3rd optional parameters and always escape full range of <code>input</code> parameter <ul> <li>Caller is now responsible for slicing the <code>input</code> parameter beforehand, if desired</li> </ul> </li> <li><strong>Breaking Change:</strong> Add optional <code>options</code> 2nd parameter to support the following: <ul> <li><code>filter</code> - A function used to determine which Unicode code points should be converted to Unicode escapes</li> <li><code>replacer</code> - A function that returns a replacement string for an individual Unicode character represented by a specific Unicode code point, if any</li> </ul> </li> <li><strong>Breaking Change:</strong> Return empty string if <code>input</code> parameter is either <code>null</code> or <code>undefined</code></li> <li>Explicitly add full support for converting characters within the Basic Multilingual Plane (BMP)</li> <li>Rewrite the entire codebase in TypeScript and support both ESM and CJS usage</li> <li>Improve documentation</li> <li>Improve the developer experience for contributors with better tooling</li> <li>Bump all dependencies to latest versions</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/neocotic/escape-unicode/commit/56ebe19f3941b028c2c46e4e94ef38316133e52f"><code>56ebe19</code></a> release(0.3.0): Major rewrite</li> <li>See full diff in <a href="https://github.com/neocotic/escape-unicode/compare/0.2.0...0.3.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=escape-unicode&package-manager=npm_and_yarn&previous-version=0.2.0&new-version=0.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: d3xter666 <yavor.ivanov@sap.com>
1 parent d73f6b4 commit 90d07bd

3 files changed

Lines changed: 17 additions & 10 deletions

File tree

package-lock.json

Lines changed: 15 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/builder/lib/processors/nonAsciiEscaper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import escapeUnicode from "escape-unicode";
1+
import {escapeUnicode} from "escape-unicode";
22

33
/**
44
* @public

packages/builder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"@ui5/fs": "^5.0.0-alpha.2",
115115
"@ui5/logger": "^5.0.0-alpha.2",
116116
"cheerio": "1.0.0",
117-
"escape-unicode": "^0.2.0",
117+
"escape-unicode": "^0.3.0",
118118
"escope": "^4.0.0",
119119
"espree": "^10.4.0",
120120
"graceful-fs": "^4.2.11",

0 commit comments

Comments
 (0)