[PR #95] [CLOSED] Bump serialize-javascript from 1.6.1 to 4.0.0 #573

Closed
opened 2026-03-01 17:48:15 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/anonaddy/anonaddy/pull/95
Author: @dependabot[bot]
Created: 11/5/2020
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/serialize-javascript-4.0.0


📝 Commits (1)

  • 931b9e8 Bump serialize-javascript from 1.6.1 to 4.0.0

📊 Changes

1 file changed (+897 additions, -567 deletions)

View changed files

📝 yarn.lock (+897 -567)

📄 Description

Bumps serialize-javascript from 1.6.1 to 4.0.0.

Release notes

Sourced from serialize-javascript's releases.

v4.0.0

Changelog

  • Bump nyc from 15.0.1 to 15.1.0 (#85)
  • support for bigint (#80)

Behavior changes for BigInt

It serializes BigInt values as follows since this version. The result of serialization may be changed if you are passing BigInt values into the serialize-javascript.

v4.x:

const serialize = require('serialize-javascript');

serialize({big: BigInt('10')}); // '{"big":BigInt("10")}'

v3.x:

const serialize = require('serialize-javascript');

serialize({big: BigInt('10')}); // throws error


Thank you @mum-never-proud for this release.

v3.1.0

  • Bump mocha from 7.1.2 to 7.2.0 (#83)
  • Bump mocha from 7.1.1 to 7.1.2 (#82)
  • Bump nyc from 15.0.0 to 15.0.1 (#81)
  • Don't replace regex / function placeholders within string literals (#79)
  • [Security] Bump minimist from 1.2.0 to 1.2.5 (#78)
  • Bump mocha from 7.1.0 to 7.1.1 (#77)
  • Bump mocha from 7.0.1 to 7.1.0 (#74)
  • Update example in README (#73)

Note: the randombytes has been added to the dependency package to improve the generation of UIDs. Check the #22 for more information. Thanks to @JordanMilne and @Siebes for this change.

v3.0.0

  • Introduce support for Infinity (@vthibault, #72)
  • Bump mocha from 7.0.0 to 7.0.1 (#71)
  • Test on Node.js v12 (@okuryu, #70)
  • Bump mocha from 6.2.2 to 7.0.0 (#69)
  • Bump nyc from 14.1.1 to 15.0.0 (#68)

Behavior changes for Infinity

It serializes Infinity values as follows since this version. The result of serialization may be changed if you are passing Infinity values into the serialize-javascript.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

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 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/anonaddy/anonaddy/pull/95 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/5/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/serialize-javascript-4.0.0` --- ### 📝 Commits (1) - [`931b9e8`](https://github.com/anonaddy/anonaddy/commit/931b9e850fd7dbf36a2aa7fa4659aecf863e4e73) Bump serialize-javascript from 1.6.1 to 4.0.0 ### 📊 Changes **1 file changed** (+897 additions, -567 deletions) <details> <summary>View changed files</summary> 📝 `yarn.lock` (+897 -567) </details> ### 📄 Description Bumps [serialize-javascript](https://github.com/yahoo/serialize-javascript) from 1.6.1 to 4.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/yahoo/serialize-javascript/releases">serialize-javascript's releases</a>.</em></p> <blockquote> <h2>v4.0.0</h2> <p><strong>Changelog</strong></p> <ul> <li>Bump nyc from 15.0.1 to 15.1.0 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/85">#85</a>)</li> <li>support for bigint (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/80">#80</a>)</li> </ul> <p><strong>Behavior changes for BigInt</strong></p> <p>It serializes <code>BigInt</code> values as follows since this version. The result of serialization may be changed if you are passing <code>BigInt</code> values into the serialize-javascript.</p> <p>v4.x:</p> <pre lang="js"><code>const serialize = require('serialize-javascript'); <p>serialize({big: BigInt('10')}); // '{&quot;big&quot;:BigInt(&quot;10&quot;)}' </code></pre></p> <p>v3.x:</p> <pre lang="js"><code>const serialize = require('serialize-javascript'); <p>serialize({big: BigInt('10')}); // throws error </code></pre></p> <hr /> <p>Thank you <a href="https://github.com/mum-never-proud">@mum-never-proud</a> for this release.</p> <h2>v3.1.0</h2> <ul> <li>Bump mocha from 7.1.2 to 7.2.0 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/83">#83</a>)</li> <li>Bump mocha from 7.1.1 to 7.1.2 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/82">#82</a>)</li> <li>Bump nyc from 15.0.0 to 15.0.1 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/81">#81</a>)</li> <li>Don't replace regex / function placeholders within string literals (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/79">#79</a>)</li> <li>[Security] Bump minimist from 1.2.0 to 1.2.5 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/78">#78</a>)</li> <li>Bump mocha from 7.1.0 to 7.1.1 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/77">#77</a>)</li> <li>Bump mocha from 7.0.1 to 7.1.0 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/74">#74</a>)</li> <li>Update example in README (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/73">#73</a>)</li> </ul> <p>Note: the <code>randombytes</code> has been added to the dependency package to improve the generation of UIDs. Check the <a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/22">#22</a> for more information. Thanks to <a href="https://github.com/JordanMilne">@JordanMilne</a> and <a href="https://github.com/Siebes">@Siebes</a> for this change.</p> <h2>v3.0.0</h2> <ul> <li>Introduce support for Infinity (<a href="https://github.com/vthibault">@vthibault</a>, <a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/72">#72</a>)</li> <li>Bump mocha from 7.0.0 to 7.0.1 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/71">#71</a>)</li> <li>Test on Node.js v12 (<a href="https://github.com/okuryu">@okuryu</a>, <a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/70">#70</a>)</li> <li>Bump mocha from 6.2.2 to 7.0.0 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/69">#69</a>)</li> <li>Bump nyc from 14.1.1 to 15.0.0 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/68">#68</a>)</li> </ul> <h3>Behavior changes for <code>Infinity</code></h3> <p>It serializes <code>Infinity</code> values as follows since this version. The result of serialization may be changed if you are passing <code>Infinity</code> values into the <code>serialize-javascript</code>.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/yahoo/serialize-javascript/commit/a8a458c9a98771005d9315f11b4fd6e61373de21"><code>a8a458c</code></a> v4.0.0</li> <li><a href="https://github.com/yahoo/serialize-javascript/commit/0849988db3028121f060ba32da7c75e14e0fd3ce"><code>0849988</code></a> Update example code</li> <li><a href="https://github.com/yahoo/serialize-javascript/commit/e997f216f7f5ed5d1fda442471a4a80eeb9e8192"><code>e997f21</code></a> Bump nyc from 15.0.1 to 15.1.0 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/85">#85</a>)</li> <li><a href="https://github.com/yahoo/serialize-javascript/commit/418dd82b071e9c798be4bf8c3ac194495f191974"><code>418dd82</code></a> Revert &quot;Revert &quot;support for bigint (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/80">#80</a>)&quot;&quot;</li> <li><a href="https://github.com/yahoo/serialize-javascript/commit/b54341e3f4be20b415148219767049173f0974d8"><code>b54341e</code></a> v3.1.0</li> <li><a href="https://github.com/yahoo/serialize-javascript/commit/7cee7e4a4c65a34817678cec444f5cbe9b9e7e8b"><code>7cee7e4</code></a> Revert &quot;support for bigint (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/80">#80</a>)&quot;</li> <li><a href="https://github.com/yahoo/serialize-javascript/commit/026a44501826fa848481944f6f20935fcdc6ba7a"><code>026a445</code></a> Bump mocha from 7.1.2 to 7.2.0 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/83">#83</a>)</li> <li><a href="https://github.com/yahoo/serialize-javascript/commit/5130a71ecd70cfc9f9fdafdaa1b394b00ea902e2"><code>5130a71</code></a> support for bigint (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/80">#80</a>)</li> <li><a href="https://github.com/yahoo/serialize-javascript/commit/ea76b2312dcc0d10022b22215fde5ec0194d7837"><code>ea76b23</code></a> Bump mocha from 7.1.1 to 7.1.2 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/82">#82</a>)</li> <li><a href="https://github.com/yahoo/serialize-javascript/commit/073c8d8c0da9e52425ea246c4672ca7d11225ea7"><code>073c8d8</code></a> Bump nyc from 15.0.0 to 15.0.1 (<a href="https://github-redirect.dependabot.com/yahoo/serialize-javascript/issues/81">#81</a>)</li> <li>Additional commits viewable in <a href="https://github.com/yahoo/serialize-javascript/compare/v1.6.1...v4.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serialize-javascript&package-manager=npm_and_yarn&previous-version=1.6.1&new-version=4.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/anonaddy/anonaddy/network/alerts). </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 17:48:15 +03:00
Sign in to join this conversation.
No labels
bug
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/anonaddy#573
No description provided.