alrra/browser-logos 5479
🗂 High resolution web browser logos
alrra/dotfiles 1115
💻 macOS / Ubuntu dotfiles
🙅 DEPRECATED
node-unicode/node-unicode-data 97
JavaScript-compatible Unicode data generator. Arrays of code points, arrays of symbols, and regular expressions for every Unicode version’s categories, scripts, blocks, and properties — neatly packaged into a separate npm package per Unicode version.
:trophy: Delightful Benchmarking & Performance Testing
🙅 DEPRECATED
dontcallmedom/metaviewport-parser 0
Parser for the content attribute of the meta viewport
PR opened GoogleChromeLabs/squoosh
I have a large folder of WebP images that I use to test squoosh. All of them are valid and can be opened in Firefox/Chrome, but libSquoosh is being very dramatic about two of them, telling me [file] has an unsupported format.
Here are the first chunks of the two failing images:
82 73 70 70 10 19 0 0 87 69 66 80 86 80 56 32
[R] [I] [F] [F] [] [] [] [] [W] [E] [B] [P] [V] [P] [8] [ ]
82 73 70 70 236 10 0 0 87 69 66 80 86 80 56 76
[R] [I] [F] [F] [ì] [] [] [] [W] [E] [B] [P] [V] [P] [8] [L]
And here are two functioning images for comparison:
82 73 70 70 174 18 0 0 87 69 66 80 86 80 56 88
[R] [I] [F] [F] [®] [] [] [] [W] [E] [B] [P] [V] [P] [8] [X]
82 73 70 70 202 131 0 0 87 69 66 80 86 80 56 76
[R] [I] [F] [F] [Ê] [] [] [] [W] [E] [B] [P] [V] [P] [8] [L]
The failing images both contain the code point 10, which JavaScript interprets as a newline. RegEx (which libSquoosh uses to sniff the image encoding) won't match across newlines by default. For that to work, you have to add the s flag, which is what this PR does :)
For annoying legal reasons, I can't post the failing images publicly, but I can send one of them privately if you'd like me to.
pr created time in 10 minutes
issue commentGoogleChromeLabs/squoosh
[CLI] Limit the number of decoded images in memory
Async pool seems small and good enough. Not sure if it’s necessary, but whoever takes this on, is welcome to use it.
comment created time in an hour
issue commentGoogleChromeLabs/squoosh
Looking into this, ti seems the wildcards are not working in Windows.
@samdutton is working on adding globs, so this will hopefully get solved through his work!
comment created time in an hour
Pull request review commenttc39/ecma402
Editorial: Refactor SetNumberFormatDigitOptions
<h1>SetNumberFormatDigitOptions ( _intlObj_, _options_, _mnfdDefault_, _mxfdDefa 1. Let _mnsd_ be ? Get(_options_, *"minimumSignificantDigits"*). 1. Let _mxsd_ be ? Get(_options_, *"maximumSignificantDigits"*). 1. Set _intlObj_.[[MinimumIntegerDigits]] to _mnid_.- 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, then- 1. Set _intlObj_.[[RoundingType]] to ~significantDigits~.+ 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, set _hasSd_ to *true*; else, set _hasSd_ to *false*.+ 1. If _mnfd_ is not *undefined* or _mxfd_ is not *undefined*, set _hasFd_ to *true*; else, set _hasFd_ to *false*.
@syg @anba thoughts?
comment created time in 8 hours
Pull request review commenttc39/ecma402
Editorial: Refactor SetNumberFormatDigitOptions
<h1>SetNumberFormatDigitOptions ( _intlObj_, _options_, _mnfdDefault_, _mxfdDefa 1. Let _mnsd_ be ? Get(_options_, *"minimumSignificantDigits"*). 1. Let _mxsd_ be ? Get(_options_, *"maximumSignificantDigits"*). 1. Set _intlObj_.[[MinimumIntegerDigits]] to _mnid_.- 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, then- 1. Set _intlObj_.[[RoundingType]] to ~significantDigits~.+ 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, set _hasSd_ to *true*; else, set _hasSd_ to *false*.+ 1. If _mnfd_ is not *undefined* or _mxfd_ is not *undefined*, set _hasFd_ to *true*; else, set _hasFd_ to *false*.
I agree that it's more readable, but I am unsure if (1) this is a spec convention (2) it even matters.
Maybe we can ask the 262 editors about it?
comment created time in 8 hours
Pull request review commenttc39/ecma402
Editorial: Refactor SetNumberFormatDigitOptions
<h1>SetNumberFormatDigitOptions ( _intlObj_, _options_, _mnfdDefault_, _mxfdDefa 1. Let _mnsd_ be ? Get(_options_, *"minimumSignificantDigits"*). 1. Let _mxsd_ be ? Get(_options_, *"maximumSignificantDigits"*). 1. Set _intlObj_.[[MinimumIntegerDigits]] to _mnid_.- 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, then- 1. Set _intlObj_.[[RoundingType]] to ~significantDigits~.+ 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, set _hasSd_ to *true*; else, set _hasSd_ to *false*.+ 1. If _mnfd_ is not *undefined* or _mxfd_ is not *undefined*, set _hasFd_ to *true*; else, set _hasFd_ to *false*.
Because I find it more readable to write
- If condition, set a to true; else, set a to false.
- If condition, set b to true; else, set b to false.
- If condition, set c to true; else, set c to false.
- If condition, set d to true; else, set d to false.
than to write
- If condition, set a to true.
- Else, set a to false.
- If condition, set b to true.
- Else, set b to false.
- If condition, set c to true.
- Else, set c to false.
- If condition, set d to true.
- Else, set d to false.
But if you disagree, or if my syntax is not normal for the spec, I will change it.
comment created time in 9 hours
Pull request review commenttc39/ecma402
Editorial: Refactor SetNumberFormatDigitOptions
<h1>SetNumberFormatDigitOptions ( _intlObj_, _options_, _mnfdDefault_, _mxfdDefa 1. Let _mnsd_ be ? Get(_options_, *"minimumSignificantDigits"*). 1. Let _mxsd_ be ? Get(_options_, *"maximumSignificantDigits"*). 1. Set _intlObj_.[[MinimumIntegerDigits]] to _mnid_.- 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, then- 1. Set _intlObj_.[[RoundingType]] to ~significantDigits~.+ 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, set _hasSd_ to *true*; else, set _hasSd_ to *false*.+ 1. If _mnfd_ is not *undefined* or _mxfd_ is not *undefined*, set _hasFd_ to *true*; else, set _hasFd_ to *false*.
Any reason why both of these conditions are on a single line instead of being split across two?
comment created time in 9 hours
Pull request review commenttc39/ecma402
Editorial: Refactor SetNumberFormatDigitOptions
<h1>SetNumberFormatDigitOptions ( _intlObj_, _options_, _mnfdDefault_, _mxfdDefa 1. Let _mnsd_ be ? Get(_options_, *"minimumSignificantDigits"*). 1. Let _mxsd_ be ? Get(_options_, *"maximumSignificantDigits"*). 1. Set _intlObj_.[[MinimumIntegerDigits]] to _mnid_.- 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, then- 1. Set _intlObj_.[[RoundingType]] to ~significantDigits~.+ 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, set _hasSd_ to *true*; else, set _hasSd_ to *false*.+ 1. If _mnfd_ is not *undefined* or _mxfd_ is not *undefined*, set _hasFd_ to *true*; else, set _hasFd_ to *false*.+ 1. Let _needSd_ be _hasSd_.+ 1. If not _hasSd_ and _notation_ is not *"compact"*, set _needFd_ to *true*; else, set _needFd_ to *false*.
Same as above.
comment created time in 9 hours
Pull request review commenttc39/ecma402
Editorial: Refactor SetNumberFormatDigitOptions
<h1>SetNumberFormatDigitOptions ( _intlObj_, _options_, _mnfdDefault_, _mxfdDefa 1. Let _mnsd_ be ? Get(_options_, *"minimumSignificantDigits"*). 1. Let _mxsd_ be ? Get(_options_, *"maximumSignificantDigits"*). 1. Set _intlObj_.[[MinimumIntegerDigits]] to _mnid_.- 1. If _mnsd_ is not *undefined* or _mxsd_ is not *undefined*, then- 1. Set _intlObj_.[[RoundingType]] to ~significantDigits~.- 1. Let _mnsd_ be ? DefaultNumberOption(_mnsd_, 1, 21, 1).- 1. Let _mxsd_ be ? DefaultNumberOption(_mxsd_, _mnsd_, 21, 21).- 1. Set _intlObj_.[[MinimumSignificantDigits]] to _mnsd_.- 1. Set _intlObj_.[[MaximumSignificantDigits]] to _mxsd_.- 1. Else if _mnfd_ is not *undefined* or _mxfd_ is not *undefined*, then- 1. Set _intlObj_.[[RoundingType]] to ~fractionDigits~.- 1. Let _mnfd_ be ? DefaultNumberOption(_mnfd_, 0, 20, *undefined*).- 1. Let _mxfd_ be ? DefaultNumberOption(_mxfd_, 0, 20, *undefined*).- 1. If _mnfd_ is *undefined*, set _mnfd_ to min(_mnfdDefault_, _mxfd_).- 1. Else if _mxfd_ is *undefined*, set _mxfd_ to max(_mxfdDefault_, _mnfd_).- 1. Else if _mnfd_ is greater than _mxfd_, throw a *RangeError* exception.- 1. Set _intlObj_.[[MinimumFractionDigits]] to _mnfd_.- 1. Set _intlObj_.[[MaximumFractionDigits]] to _mxfd_.- 1. Else if _notation_ is *"compact"*, then- 1. Set _intlObj_.[[RoundingType]] to ~compactRounding~.+ 1. Let _hasSd_ be _mnsd_ is not *undefined* or _mxsd_ is not *undefined*.+ 1. Let _hasFd_ be _mnfd_ is not *undefined* or _mxfd_ is not *undefined*.+ 1. Let _needSd_ be _hasSd_.+ 1. Let _needFd_ be not _hasSd_ and _notation_ is not *"compact"*.+ 1. If _needSd_, then+ 1. If _hasSd_, then+ 1. Let _mnsd_ be ? DefaultNumberOption(_mnsd_, 1, 21, 1).+ 1. Let _mxsd_ be ? DefaultNumberOption(_mxsd_, _mnsd_, 21, 21).+ 1. Set _intlObj_.[[MinimumSignificantDigits]] to _mnsd_.+ 1. Set _intlObj_.[[MaximumSignificantDigits]] to _mxsd_.+ 1. Else,
I resolved this a bit by denesting the hasSd construction.
comment created time in 10 hours
push eventtc39/ecma402
commit sha 16601cfc73f1c34c87fc5bbf61c9f5621a550401
Review feedback
push time in 10 hours
issue openedwhatwg/html
Something is wrong with the menu at the top of https://html.spec.whatwg.org/
https://html.spec.whatwg.org/commit-snapshots/eaf1d5aacab651f96f8bd5726d450ad9760d1a08/
I try to click on the One-Page Version at https://html.spec.whatwg.org/ The menu item for the Multipage Version pops up and can't be cleared.

created time in 12 hours
startedalrra/browser-logos
started time in 15 hours
pull request commentwhatwg/html
Restore navigator.plugins and navigator.mimeTypes as PDF-focused
Nice work on this PR - it looks very clean and makes sense to me. I think with one exception (see below), it should be web compatible for at least the previously-identified breakages from the empty plugins array.
Given web-platform-tests/wpt#27129 it seems more useful if this is aligned with the processing model (and thus user preferences) at no additional fingerprinting cost (unless you take into account how quickly you can acquire the bit). Although that would argue that mobile Safari changes what they do. Hmm, I guess I'm curious what others think.
I put some comments in to this effect as well, but I think the bit needs to reflect the user preference, for web compat as well as general developer capabilities.
comment created time in 16 hours
Pull request review commentwhatwg/html
Restore navigator.plugins and navigator.mimeTypes as PDF-focused
interface <dfn interface>Navigator</dfn> { </div> + <h5>PDF viewing support</h5>++ <dl class="domintro">+ <dt><var>window</var> . <code data-x="dom-navigator">navigator</code> . <code subdfn data-x="dom-navigator-pdfSupported">pdfSupported</code></dt>++ <dd>+ <p>Returns true if the user agent supports inline viewing of PDF files, or false otherwise.</p>++ <p>Note that this does not reflect user preferences, but instead the basic capabilities of the user agent. If the user agent supports PDF viewing, but a user has disabled that ability through a browser preference, this property still returns true.</p>+ </dd>+ </dl>++ <pre><code class="idl">interface mixin <dfn>NavigatorPlugins</dfn> {+ [SameObject] readonly attribute <span>PluginArray</span> <span data-x="dom-navigator-plugins">plugins</span>;+ [SameObject] readonly attribute <span>MimeTypeArray</span> <span data-x="dom-navigator-mimeTypes">mimeTypes</span>;+ boolean <span data-x="dom-navigator-javaEnabled">javaEnabled</span>();+ readonly attribute boolean <span data-x="dom-navigator-pdfSupported">pdfSupported</span>;+};++[Exposed=Window,+ <span>LegacyUnenumerableNamedProperties</span>]+interface <dfn>PluginArray</dfn> {+ undefined <span data-x="dom-PluginArray-refresh">refresh</span>();+ readonly attribute unsigned long <span data-x="dom-PluginArray-length">length</span>;+ getter <span>Plugin</span>? <span data-x="dom-PluginArray-item">item</span>(unsigned long index);+ getter <span>Plugin</span>? <span data-x="dom-PluginArray-namedItem">namedItem</span>(DOMString name);+};++[Exposed=Window,+ <span>LegacyUnenumerableNamedProperties</span>]+interface <dfn>MimeTypeArray</dfn> {+ readonly attribute unsigned long <span data-x="dom-MimeTypeArray-length">length</span>;+ getter <span>MimeType</span>? <span data-x="dom-MimeTypeArray-item">item</span>(unsigned long index);+ getter <span>MimeType</span>? <span data-x="dom-MimeTypeArray-namedItem">namedItem</span>(DOMString name);+};++[Exposed=Window,+ <span>LegacyUnenumerableNamedProperties</span>]+interface <dfn data-x="dom-Plugin">Plugin</dfn> {+ readonly attribute DOMString <span data-x="dom-Plugin-name">name</span>;+ readonly attribute DOMString <span data-x="dom-Plugin-description">description</span>;+ readonly attribute DOMString <span data-x="dom-Plugin-filename">filename</span>;+ readonly attribute unsigned long <span data-x="dom-Plugin-length">length</span>;+ getter <span>MimeType</span>? <span data-x="dom-Plugin-item">item</span>(unsigned long index);+ getter <span>MimeType</span>? <span data-x="dom-Plugin-namedItem">namedItem</span>(DOMString name);+};++[Exposed=Window]+interface <dfn>MimeType</dfn> {+ readonly attribute DOMString <span data-x="dom-MimeType-type">type</span>;+ readonly attribute DOMString <span data-x="dom-MimeType-description">description</span>;+ readonly attribute DOMString <span data-x="dom-MimeType-suffixes">suffixes</span>;+ readonly attribute <span>Plugin</span> <span data-x="dom-MimeType-enabledPlugin">enabledPlugin</span>;+};</code></pre>++ <div w-nodev>++ <p>Although these days detecting PDF viewer support can be done via <code+ data-x="dom-navigator-pdfSupported">navigator.pdfSupported</code>, for historical reasons, there+ are a number of complex and intertwined interfaces that provide the same capability, which+ legacy code relies on. This section specifies both the simple modern variant and the complicated+ historical one.</p>++ <!-- INSERT TRACKING -->+ <p>Each user agent has a <dfn>PDF viewer supported</dfn> boolean, whose value is+ <span>implementation-defined</span>. The value must <em>not</em> change according to user+ preferences, but instead must always stay the same for a given user agent.</p>++ <p class="note">This restriction is meant to ensure that the <code+ data-x="dom-navigator-plugins">navigator.plugins</code> and <code+ data-x="dom-navigator-mimeTypes">navigator.mimeTypes</code> APIs do not give any extra+ fingerprinting information beyond that already provided by <code+ data-x="dom-navigator-userAgent">navigator.userAgent</code>. So for example, a desktop version of+ a browser might set this value to true, while the mobile version of the same browser sets it to+ false, to reflect the inherent capabilities of these different browser builds. But if the user+ disables inline PDF viewing on the desktop browser, the user agent has to keep the <span>PDF+ viewer supported</span> value of true, so as to avoid identifying users which have changed that+ setting.</p>
I do understand that this exposes one bit of entropy. But the original list already exposed that same bit, and we're hopefully reducing the remaining (>1 bit) entropy leak from the previously variable plugin lists. And I believe developers do need a way to tell whether PDFs are viewable, no?
comment created time in 16 hours
Pull request review commentsalesforce/lwc
fix: fix compat with @rollup/plugin-node-resolve v13
"glob": "^7.1.7", "husky": "^6.0.0", "is-ci": "^3.0.0",+ "is-regexp": "^3.0.0",
I added this dep because it's a simple one-line function that uses ES modules (so we don't need @rollup/plugin-commonjs), and I wanted to test a third-party package import.
I would have used something more fun like cowsay but it wasn't simple and didn't support ES modules well.
comment created time in 16 hours
PR opened salesforce/lwc
Details
Fixes #2354
Adds an extra check for a module path that begins with / to fix @rollup/plugin-node-resolver v13.
The test fails before this fix and succeeds after.
Does this PR introduce breaking changes?
- ✅
No, it does not introduce breaking changes.
GUS work item
W-9351401
pr created time in 16 hours
Pull request review commentwhatwg/html
Restore navigator.plugins and navigator.mimeTypes as PDF-focused
interface <dfn interface>Navigator</dfn> { </div> + <h5>PDF viewing support</h5>++ <dl class="domintro">+ <dt><var>window</var> . <code data-x="dom-navigator">navigator</code> . <code subdfn data-x="dom-navigator-pdfSupported">pdfSupported</code></dt>++ <dd>+ <p>Returns true if the user agent supports inline viewing of PDF files, or false otherwise.</p>++ <p>Note that this does not reflect user preferences, but instead the basic capabilities of the user agent. If the user agent supports PDF viewing, but a user has disabled that ability through a browser preference, this property still returns true.</p>
Hmm, I do think this should reflect the user preference. The code that was incompatible with the original "empty" plugins list was just trying to figure out if that setting was on/off, so they could take appropriate action. And from an author point of view, I do see the need. If PDFs are supported, show the PDF. If not, take a different course of action which may or may not involve downloading the PDF or showing something alternative. Or just not giving them the option to see a PDF in the first place.
comment created time in 16 hours
push eventsalesforce/lwc
commit sha 67b2dbf2134fbc88062ccbd49dfc7bb8b8e4162d
fix: fix compat with @rollup/plugin-node-resolve v13 Fixes #2354
push time in 16 hours
push eventh5bp/html5-boilerplate
commit sha 18b3f61d1e679e5a7ff78d59e54f6566ce799518
chore(deps-dev): bump mocha from 8.4.0 to 9.0.0 Bumps [mocha](https://github.com/mochajs/mocha) from 8.4.0 to 9.0.0. - [Release notes](https://github.com/mochajs/mocha/releases) - [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md) - [Commits](https://github.com/mochajs/mocha/compare/v8.4.0...v9.0.0) --- updated-dependencies: - dependency-name: mocha dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
commit sha 5f9e1ab94db46f596238de1f39e7115af4d9cf36
chore(deps): bump ws from 5.2.2 to 5.2.3 in /src Bumps [ws](https://github.com/websockets/ws) from 5.2.2 to 5.2.3. - [Release notes](https://github.com/websockets/ws/releases) - [Commits](https://github.com/websockets/ws/compare/5.2.2...5.2.3) --- updated-dependencies: - dependency-name: ws dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
commit sha 03a15e111f3a1f3bcfd2a01bc6fa82338ecc20d6
chore(deps-dev): bump @babel/register from 7.13.16 to 7.14.5 Bumps [@babel/register](https://github.com/babel/babel/tree/HEAD/packages/babel-register) from 7.13.16 to 7.14.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.14.5/packages/babel-register) --- updated-dependencies: - dependency-name: "@babel/register" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
commit sha 03300bd66e0c7ce6303dcdd62be73658db69b3d0
Merge pull request #2542 from h5bp/dependabot/npm_and_yarn/src/ws-5.2.3 chore(deps): bump ws from 5.2.2 to 5.2.3 in /src
commit sha 4f9138434355faa856e105248ea8e6fd640f4dbb
Merge pull request #2539 from h5bp/dependabot/npm_and_yarn/babel/register-7.14.5 chore(deps-dev): bump @babel/register from 7.13.16 to 7.14.5
commit sha 693a4e23519d4b9726461e97e34d16d3386d415b
Merge pull request #2541 from h5bp/dependabot/npm_and_yarn/mocha-9.0.0 chore(deps-dev): bump mocha from 8.4.0 to 9.0.0
commit sha a305acff177c5528b6a1e689e0ff43433cfedeea
chore(deps-dev): bump @babel/core from 7.14.3 to 7.14.6 Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.14.3 to 7.14.6. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.14.6/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
push time in 16 hours
push eventh5bp/html5-boilerplate
commit sha 18b3f61d1e679e5a7ff78d59e54f6566ce799518
chore(deps-dev): bump mocha from 8.4.0 to 9.0.0 Bumps [mocha](https://github.com/mochajs/mocha) from 8.4.0 to 9.0.0. - [Release notes](https://github.com/mochajs/mocha/releases) - [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md) - [Commits](https://github.com/mochajs/mocha/compare/v8.4.0...v9.0.0) --- updated-dependencies: - dependency-name: mocha dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
commit sha 693a4e23519d4b9726461e97e34d16d3386d415b
Merge pull request #2541 from h5bp/dependabot/npm_and_yarn/mocha-9.0.0 chore(deps-dev): bump mocha from 8.4.0 to 9.0.0
push time in 16 hours
delete branch h5bp/html5-boilerplate
delete branch : dependabot/npm_and_yarn/mocha-9.0.0
delete time in 16 hours
PR merged h5bp/html5-boilerplate
Bumps mocha from 8.4.0 to 9.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mochajs/mocha/releases">mocha's releases</a>.</em></p> <blockquote> <h2>v9.0.0</h2> <h1>9.0.0 / 2021-06-07</h1> <h2>:boom: Breaking Changes</h2> <ul> <li> <p><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4633">#4633</a>: <strong>Drop Node.js v10.x support</strong> (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</p> </li> <li> <p><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4635">#4635</a>: <code>import</code>-first loading of test files (<a href="https://github.com/giltayar"><strong><code>@giltayar</code></strong></a>)</p> </li> </ul> <p><strong>Mocha is going ESM-first!</strong> This means that it will now use ESM <code>import(test_file)</code> to load the test files, instead of the CommonJS <code>require(test_file)</code>. This is not a problem, as <code>import</code> can also load most files that <code>require</code> does. In the rare cases where this fails, it will fallback to <code>require(...)</code>. This ESM-first approach is the next step in Mocha's ESM migration, and allows ESM loaders to load and transform the test file.</p> <ul> <li> <p><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4636">#4636</a>: Remove deprecated <code>utils.lookupFiles()</code> (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</p> </li> <li> <p><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4638">#4638</a>: Limit the size of <code>actual</code>/<code>expected</code> for <code>diff</code> generation (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</p> </li> <li> <p><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4389">#4389</a>: Refactoring: Consuming log-symbols alternate to code for win32 in reporters/base (<a href="https://github.com/MoonSupport"><strong><code>@MoonSupport</code></strong></a>)</p> </li> </ul> <h2>:tada: Enhancements</h2> <ul> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4640">#4640</a>: Add new option <code>--dry-run</code> (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</li> </ul> <h2>:bug: Fixes</h2> <ul> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4128">#4128</a>: Fix: control stringification of error message (<a href="https://github.com/syeutyu"><strong><code>@syeutyu</code></strong></a>)</li> </ul> <h2>:nut_and_bolt: Other</h2> <ul> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4646">#4646</a>: Deprecate <code>Runner(suite: Suite, delay: boolean)</code> signature (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</li> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4643">#4643</a>: Update production dependencies (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mochajs/mocha/blob/master/CHANGELOG.md">mocha's changelog</a>.</em></p> <blockquote> <h1>9.0.0 / 2021-06-07</h1> <h2>:boom: Breaking Changes</h2> <ul> <li> <p><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4633">#4633</a>: <strong>Drop Node.js v10.x support</strong> (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</p> </li> <li> <p><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4635">#4635</a>: <code>import</code>-first loading of test files (<a href="https://github.com/giltayar"><strong><code>@giltayar</code></strong></a>)</p> </li> </ul> <p><strong>Mocha is going ESM-first!</strong> This means that it will now use ESM <code>import(test_file)</code> to load the test files, instead of the CommonJS <code>require(test_file)</code>. This is not a problem, as <code>import</code> can also load most files that <code>require</code> does. In the rare cases where this fails, it will fallback to <code>require(...)</code>. This ESM-first approach is the next step in Mocha's ESM migration, and allows ESM loaders to load and transform the test file.</p> <ul> <li> <p><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4636">#4636</a>: Remove deprecated <code>utils.lookupFiles()</code> (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</p> </li> <li> <p><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4638">#4638</a>: Limit the size of <code>actual</code>/<code>expected</code> for <code>diff</code> generation (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</p> </li> <li> <p><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4389">#4389</a>: Refactoring: Consuming log-symbols alternate to code for win32 in reporters/base (<a href="https://github.com/MoonSupport"><strong><code>@MoonSupport</code></strong></a>)</p> </li> </ul> <h2>:tada: Enhancements</h2> <ul> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4640">#4640</a>: Add new option <code>--dry-run</code> (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</li> </ul> <h2>:bug: Fixes</h2> <ul> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4128">#4128</a>: Fix: control stringification of error message (<a href="https://github.com/syeutyu"><strong><code>@syeutyu</code></strong></a>)</li> </ul> <h2>:nut_and_bolt: Other</h2> <ul> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4646">#4646</a>: Deprecate <code>Runner(suite: Suite, delay: boolean)</code> signature (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</li> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4643">#4643</a>: Update production dependencies (<a href="https://github.com/juergba"><strong><code>@juergba</code></strong></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mochajs/mocha/commit/8339c3db2cb273f6b56a4cfa7974510f1bf72934"><code>8339c3d</code></a> Release v9.0.0</li> <li><a href="https://github.com/mochajs/mocha/commit/92518dfd3cf2a6458a5c1e67976f1d1eb3c9d1d7"><code>92518df</code></a> update CHANGELOG for v9.0.0 [ci skip]</li> <li><a href="https://github.com/mochajs/mocha/commit/7259a5b1ed83f2191a3330cec905085677803dd0"><code>7259a5b</code></a> Update production dependencies (<a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4643">#4643</a>)</li> <li><a href="https://github.com/mochajs/mocha/commit/82123061ac84dca1a42635167a73714d5f89a846"><code>8212306</code></a> Add new option "--dry-run" (<a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4640">#4640</a>)</li> <li><a href="https://github.com/mochajs/mocha/commit/9872410a717ab389d6b7f585cb00a7b0f8ea1d69"><code>9872410</code></a> Deprecate "Runner(suite: Suite, delay: boolean)" (<a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4646">#4646</a>)</li> <li><a href="https://github.com/mochajs/mocha/commit/a93d759c4c4cfd6da2656be5cbcb6fb9a125a4a1"><code>a93d759</code></a> Limit the size of 'actual'/'expected' before generating diff (<a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4638">#4638</a>)</li> <li><a href="https://github.com/mochajs/mocha/commit/9b4435db8447bf681e7824b31902452f55678adb"><code>9b4435d</code></a> Import-first loading of test files (<a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4635">#4635</a>)</li> <li><a href="https://github.com/mochajs/mocha/commit/1c4e623c020c97269922dc9e23a951f63ad8f7b8"><code>1c4e623</code></a> Fix: control stringification of error message (<a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4128">#4128</a>)</li> <li><a href="https://github.com/mochajs/mocha/commit/1b5cbf131eff4e1858cdfe7a1a7d201664c767dc"><code>1b5cbf1</code></a> Remove deprecated "utils.lookupFiles()" (<a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4636">#4636</a>)</li> <li><a href="https://github.com/mochajs/mocha/commit/356ecf44015f9da7d99ead1049ab9d188c9442b5"><code>356ecf4</code></a> GH actions: delete old workflow runs (<a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4637">#4637</a>) [ci skip]</li> <li>Additional commits viewable in <a href="https://github.com/mochajs/mocha/compare/v8.4.0...v9.0.0">compare view</a></li> </ul> </details> <br />
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.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details>
pr closed time in 16 hours
push eventh5bp/html5-boilerplate
commit sha 03a15e111f3a1f3bcfd2a01bc6fa82338ecc20d6
chore(deps-dev): bump @babel/register from 7.13.16 to 7.14.5 Bumps [@babel/register](https://github.com/babel/babel/tree/HEAD/packages/babel-register) from 7.13.16 to 7.14.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.14.5/packages/babel-register) --- updated-dependencies: - dependency-name: "@babel/register" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
commit sha 4f9138434355faa856e105248ea8e6fd640f4dbb
Merge pull request #2539 from h5bp/dependabot/npm_and_yarn/babel/register-7.14.5 chore(deps-dev): bump @babel/register from 7.13.16 to 7.14.5
push time in 16 hours
delete branch h5bp/html5-boilerplate
delete branch : dependabot/npm_and_yarn/babel/register-7.14.5
delete time in 16 hours
PR merged h5bp/html5-boilerplate
Bumps @babel/register from 7.13.16 to 7.14.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/register</code>'s releases</a>.</em></p> <blockquote> <h2>v7.14.5 (2021-06-09)</h2> <p>Thanks <a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>, <a href="https://github.com/lightmare"><code>@lightmare</code></a>, <a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>, and <a href="https://github.com/tony-go"><code>@tony-go</code></a> for your first PRs!</p> <h4>:eyeglasses: Spec Compliance</h4> <ul> <li><code>babel-plugin-proposal-do-expressions</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13122">#13122</a> fix: hoist variable declaration within do block (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13409">#13409</a> Relax import assertion key-is-type constraint (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13418">#13418</a> fix(parser): correctly parse record and tuple tokens (<a href="https://github.com/fedeci"><code>@fedeci</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13410">#13410</a> fix: throw when <code>async()</code> call param is object with assignement (<a href="https://github.com/tony-go"><code>@tony-go</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13396">#13396</a> Add support for d flag of regex literals in parser (<a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>)</li> </ul> </li> <li><code>babel-helpers</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13404">#13404</a> fix generate-helpers failing in URL-encoded path (<a href="https://github.com/lightmare"><code>@lightmare</code></a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li><code>babel-helper-hoist-variables</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13442">#13442</a> Disallow dependency cycles (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13440">#13440</a> update test fixtures (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13431">#13431</a> Reduce <code>exprAllowed</code> usage (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13422">#13422</a> fix(<code>@babel/parser</code>): fix tokenizer context update code (<a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>)</li> </ul> </li> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13420">#13420</a> chore: specify <code>@babel/eslint-parser</code> deps (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><em>Every package</em> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13363">#13363</a> chore: setup Yarn constraints (<a href="https://github.com/merceyz"><code>@merceyz</code></a>)</li> </ul> </li> </ul> <h4>:running_woman: Performance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13408">#13408</a> Use set in parser scope (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13386">#13386</a> Faster checkReservedWord (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13406">#13406</a> Back parser state <code>exportedIdentifiers</code> by set (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>Committers: 9</h4> <ul> <li>Daniel Tschinder (<a href="https://github.com/danez"><code>@danez</code></a>)</li> <li>Eyoatam Tamirat (<a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>)</li> <li>Federico Ciardi (<a href="https://github.com/fedeci"><code>@fedeci</code></a>)</li> <li>Huáng Jùnliàng (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li>Kristoffer K. (<a href="https://github.com/merceyz"><code>@merceyz</code></a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> <li>Tony Gorez (<a href="https://github.com/tony-go"><code>@tony-go</code></a>)</li> <li>Yosuke Ota (<a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>)</li> <li><a href="https://github.com/lightmare"><code>@lightmare</code></a></li> </ul> <h2>v7.14.4 (2021-05-28)</h2> <p>Thanks <a href="https://github.com/alanorozco"><code>@alanorozco</code></a>, <a href="https://github.com/devfservant"><code>@devfservant</code></a>, <a href="https://github.com/merceyz"><code>@merceyz</code></a>, <a href="https://github.com/mmorel-35"><code>@mmorel-35</code></a> (and <a href="https://github.com/renovate-bot"><code>@renovate-bot</code></a>! :robot:), <a href="https://github.com/sokra"><code>@sokra</code></a>, and <a href="https://github.com/wbinnssmith"><code>@wbinnssmith</code></a> for your first PRs!</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@babel/register</code>'s changelog</a>.</em></p> <blockquote> <h2>v7.14.5 (2021-06-09)</h2> <h4>:eyeglasses: Spec Compliance</h4> <ul> <li><code>babel-plugin-proposal-do-expressions</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13122">#13122</a> fix: hoist variable declaration within do block (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13409">#13409</a> Relax import assertion key-is-type constraint (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13418">#13418</a> fix(parser): correctly parse record and tuple tokens (<a href="https://github.com/fedeci"><code>@fedeci</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13410">#13410</a> fix: throw when <code>async()</code> call param is object with assignement (<a href="https://github.com/tony-go"><code>@tony-go</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13396">#13396</a> Add support for d flag of regex literals in parser (<a href="https://github.com/ota-meshi"><code>@ota-meshi</code></a>)</li> </ul> </li> <li><code>babel-helpers</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13404">#13404</a> fix generate-helpers failing in URL-encoded path (<a href="https://github.com/lightmare"><code>@lightmare</code></a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li><code>babel-helper-hoist-variables</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13442">#13442</a> Disallow dependency cycles (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13440">#13440</a> update test fixtures (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13431">#13431</a> Reduce <code>exprAllowed</code> usage (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13422">#13422</a> fix(<code>@babel/parser</code>): fix tokenizer context update code (<a href="https://github.com/Eyoatam"><code>@Eyoatam</code></a>)</li> </ul> </li> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13420">#13420</a> chore: specify <code>@babel/eslint-parser</code> deps (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-code-frame</code>, <code>babel-compat-data</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-annotate-as-pure</code>, <code>babel-helper-builder-binary-assignment-operator-visitor</code>, <code>babel-helper-builder-react-jsx</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-create-regexp-features-plugin</code>, <code>babel-helper-define-map</code>, <code>babel-helper-explode-assignable-expression</code>, <code>babel-helper-fixtures</code>, <code>babel-helper-function-name</code>, <code>babel-helper-get-function-arity</code>, <code>babel-helper-hoist-variables</code>, <code>babel-helper-member-expression-to-functions</code>, <code>babel-helper-module-imports</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-optimise-call-expression</code>, <code>babel-helper-plugin-test-runner</code>, <code>babel-helper-plugin-utils</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-replace-supers</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-skip-transparent-expression-wrappers</code>, <code>babel-helper-split-export-declaration</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-helper-validator-identifier</code>, <code>babel-helper-validator-option</code>, <code>babel-helper-wrap-function</code>, <code>babel-helpers</code>, <code>babel-highlight</code>, <code>babel-node</code>, <code>babel-parser</code>, <code>babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining</code>, <code>babel-plugin-external-helpers</code>, <code>babel-plugin-proposal-async-do-expressions</code>, <code>babel-plugin-proposal-async-generator-functions</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-proposal-do-expressions</code>, <code>babel-plugin-proposal-dynamic-import</code>, <code>babel-plugin-proposal-export-default-from</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-proposal-function-bind</code>, <code>babel-plugin-proposal-function-sent</code>, <code>babel-plugin-proposal-json-strings</code>, <code>babel-plugin-proposal-logical-assignment-operators</code>, <code>babel-plugin-proposal-nullish-coalescing-operator</code>, <code>babel-plugin-proposal-numeric-separator</code>, <code>babel-plugin-proposal-object-rest-spread</code>, <code>babel-plugin-proposal-optional-catch-binding</code>, <code>babel-plugin-proposal-optional-chaining</code>, <code>babel-plugin-proposal-partial-application</code>, <code>babel-plugin-proposal-pipeline-operator</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-proposal-private-property-in-object</code>, <code>babel-plugin-proposal-record-and-tuple</code>, <code>babel-plugin-proposal-throw-expressions</code>, <code>babel-plugin-proposal-unicode-property-regex</code>, <code>babel-plugin-syntax-async-do-expressions</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-plugin-syntax-decimal</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-plugin-syntax-do-expressions</code>, <code>babel-plugin-syntax-export-default-from</code>, <code>babel-plugin-syntax-flow</code>, <code>babel-plugin-syntax-function-bind</code>, <code>babel-plugin-syntax-function-sent</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-jsx</code>, <code>babel-plugin-syntax-module-blocks</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</code>, <code>babel-plugin-syntax-private-property-in-object</code>, <code>babel-plugin-syntax-record-and-tuple</code>, <code>babel-plugin-syntax-throw-expressions</code>, <code>babel-plugin-syntax-top-level-await</code>, <code>babel-plugin-syntax-typescript</code>, <code>babel-plugin-transform-arrow-functions</code>, <code>babel-plugin-transform-async-to-generator</code>, <code>babel-plugin-transform-block-scoped-functions</code>, <code>babel-plugin-transform-block-scoping</code>, <code>babel-plugin-transform-classes</code>, <code>babel-plugin-transform-computed-properties</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-dotall-regex</code>, <code>babel-plugin-transform-duplicate-keys</code>, <code>babel-plugin-transform-exponentiation-operator</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-flow-strip-types</code>, <code>babel-plugin-transform-for-of</code>, <code>babel-plugin-transform-function-name</code>, <code>babel-plugin-transform-instanceof</code>, <code>babel-plugin-transform-jscript</code>, <code>babel-plugin-transform-literals</code>, <code>babel-plugin-transform-member-expression-literals</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code>, <code>babel-plugin-transform-modules-umd</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-new-target</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-object-set-prototype-of-to-assign</code>, <code>babel-plugin-transform-object-super</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-property-literals</code>, <code>babel-plugin-transform-property-mutators</code>, <code>babel-plugin-transform-proto-to-assign</code>, <code>babel-plugin-transform-react-constant-elements</code>, <code>babel-plugin-transform-react-display-name</code>, <code>babel-plugin-transform-react-inline-elements</code>, <code>babel-plugin-transform-react-jsx-compat</code>, <code>babel-plugin-transform-react-jsx-development</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-plugin-transform-react-pure-annotations</code>, <code>babel-plugin-transform-regenerator</code>, <code>babel-plugin-transform-reserved-words</code>, <code>babel-plugin-transform-runtime</code>, <code>babel-plugin-transform-shorthand-properties</code>, <code>babel-plugin-transform-spread</code>, <code>babel-plugin-transform-sticky-regex</code>, <code>babel-plugin-transform-strict-mode</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-plugin-transform-typeof-symbol</code>, <code>babel-plugin-transform-typescript</code>, <code>babel-plugin-transform-unicode-escapes</code>, <code>babel-plugin-transform-unicode-regex</code>, <code>babel-preset-env</code>, <code>babel-preset-flow</code>, <code>babel-preset-react</code>, <code>babel-preset-typescript</code>, <code>babel-register</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code>, <code>babel-standalone</code>, <code>babel-template</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13363">#13363</a> chore: setup Yarn constraints (<a href="https://github.com/merceyz"><code>@merceyz</code></a>)</li> </ul> </li> </ul> <h4>:running_woman: Performance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13408">#13408</a> Use set in parser scope (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13386">#13386</a> Faster checkReservedWord (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13406">#13406</a> Back parser state <code>exportedIdentifiers</code> by set (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h2>v7.14.4 (2021-05-28)</h2> <h4>:eyeglasses: Spec Compliance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13377">#13377</a> disallow surrogate in the end of contextual name (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13328">#13328</a> perf: minimize identifier lookahead when parsing let (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13314">#13314</a> [ts] Insert <code>export {}</code> when necessary to imply ESM (<a href="https://github.com/wbinnssmith"><code>@wbinnssmith</code></a>)</li> </ul> </li> </ul> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13381">#13381</a> [ts] Remove override modifier (<a href="https://github.com/sosukesuzuki"><code>@sosukesuzuki</code></a>)</li> </ul> </li> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13338">#13338</a> Fix error when parsing ignored files with <code>@babel/eslint-parser</code> (<a href="https://github.com/devfservant"><code>@devfservant</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/13333">#13333</a> refactor: add parse*Literal parser routines (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/babel/babel/commit/7a2a9283982239e2419f63e2a324160c5f8ac341"><code>7a2a928</code></a> v7.14.5</li> <li><a href="https://github.com/babel/babel/commit/4eda1c860507e84b44a718a39ce58cf45f7ccc6e"><code>4eda1c8</code></a> chore: bump eslint and its plugins (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-register/issues/13412">#13412</a>)</li> <li><a href="https://github.com/babel/babel/commit/140ec5aa5c0361e2390f6fb0743fd900fb981426"><code>140ec5a</code></a> chore: setup Yarn constraints (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-register/issues/13363">#13363</a>)</li> <li>See full diff in <a href="https://github.com/babel/babel/commits/v7.14.5/packages/babel-register">compare view</a></li> </ul> </details> <br />
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.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details>
pr closed time in 16 hours
push eventh5bp/html5-boilerplate
commit sha 5f9e1ab94db46f596238de1f39e7115af4d9cf36
chore(deps): bump ws from 5.2.2 to 5.2.3 in /src Bumps [ws](https://github.com/websockets/ws) from 5.2.2 to 5.2.3. - [Release notes](https://github.com/websockets/ws/releases) - [Commits](https://github.com/websockets/ws/compare/5.2.2...5.2.3) --- updated-dependencies: - dependency-name: ws dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
commit sha 03300bd66e0c7ce6303dcdd62be73658db69b3d0
Merge pull request #2542 from h5bp/dependabot/npm_and_yarn/src/ws-5.2.3 chore(deps): bump ws from 5.2.2 to 5.2.3 in /src
push time in 16 hours
delete branch h5bp/html5-boilerplate
delete branch : dependabot/npm_and_yarn/src/ws-5.2.3
delete time in 16 hours