jashkenas/docco 3438
Literate Programming can be Quick and Dirty.
Extends Chai with assertions about promises.
A small, fast delegated event library for JavaScript.
Run multiple shell commands in parallel
github/babel-preset-github 104
GitHub.com's Babel configuration
A small JavaScript throttle & debounce implementation.
github/eventlistener-polyfill 45
Polyfills EventListener behaviours from IE11 onward
Use static files from NPM packages
Assert that a change you expected to happen, happened, with this chai plugin
Source code for 'JavaScript Recipes' by Russ Ferguson and Keith Cirkel
pull request commentkeithamus/deno-protod
Support importing well-known types
An outstanding enhancement to this generator is for it to collect scopes, yes. This will need to be done at the parse phase, so for well known modules we can enumerate them somewhere. Perhaps its worth introducing the concept of a "Proto Module" class which exposes a ES module definition, a list of exported members (ala scopes) and the well known import path.
comment created time in 11 hours
created taggithub/template-parts
An implementation of the Template Parts proposal
created time in 13 hours
push eventgithub/template-parts
commit sha bacf4b026fdf3667df538f286cd823fe25a95a52
0.2.3
push time in 13 hours
push eventgithub/template-parts
commit sha 279cb18cbbb9e60d53cfc7c9877ab735b7179817
style: fix `update()` type
commit sha 0365ed6415b4b36ad394b70e028987041929b18e
Merge pull request #22 from github/style-fix-update-type style: fix `update()` type
push time in 13 hours
PR merged github/template-parts
The type for update is necessarily defined as Record<string, unknown> while the processor types and constructor type is defined as unknown.
This updates the update call to also take an unknown for symmetry in all types.
pr closed time in 13 hours
PR opened github/template-parts
The type for update is necessarily defined as Record<string, unknown> while the processor types and constructor type is defined as unknown.
This updates the update call to also take an unknown for symmetry in all types.
pr created time in 13 hours
pull request commentkeithamus/deno-protod
Support importing well-known types
@seishun a typescript native version of descriptor.proto. We could start by simply converting descriptor.proto using protod, but perhaps hand tune it where it requires it.
comment created time in 16 hours
pull request commentkeithamus/deno-protod
Support importing well-known types
Yes this is a great idea!
One possible approach is to provide an option to the generator function which maps proton module ids to JS module ids, with a default set of values that map to this package; so eg google/protobuf/descriptor.proto gets rewritten as https://deno.land/x/protod/well-known/google/descriptor.ts.
comment created time in a day
pull request commentmkay581/cookie-store
Hey @mkay581! @koddsson and I will be working on this a little over the next week, aligning this closer to the spec, so it'll be worth holding off on a major release as we'll likely find more changes that warrant it. Perhaps it's worth just releasing one big release?
I believe @koddsson is porting the specs test suite over so we can ensure the lib is fully spec compliant.
comment created time in 2 days
PR closed mkay581/cookie-store
Bumps @types/chai from 4.2.12 to 4.2.14. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chai">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 4 days
PR closed mkay581/cookie-store
Bumps mocha from 8.1.3 to 8.2.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>v8.2.0</h2> <h1>8.2.0 / 2020-10-16</h1> <p>The major feature added in v8.2.0 is addition of support for <a href="https://mochajs.org/#global-fixtures"><em>global fixtures</em></a>.</p> <p>While Mocha has always had the ability to run setup and teardown via a hook (e.g., a <code>before()</code> at the top level of a test file) when running tests in serial, Mocha v8.0.0 added support for parallel runs. Parallel runs are <em>incompatible</em> with this strategy; e.g., a top-level <code>before()</code> would only run for the file in which it was defined.</p> <p>With <a href="https://mochajs.org/#global-fixtures">global fixtures</a>, Mocha can now perform user-defined setup and teardown <em>regardless</em> of mode, and these fixtures are guaranteed to run <em>once and only once</em>. This holds for parallel mode, serial mode, and even "watch" mode (the teardown will run once you hit Ctrl-C, just before Mocha finally exits). Tasks such as starting and stopping servers are well-suited to global fixtures, but not sharing resources--global fixtures do <em>not</em> share context with your test files (but they do share context with each other).</p> <p>Here's a short example of usage:</p> <pre lang="js"><code>// fixtures.js <p>// can be async or not exports.mochaGlobalSetup = async function() { this.server = await startSomeServer({port: process.env.TEST_PORT}); console.log(<code>server running on port ${this.server.port}</code>); };</p> <p>exports.mochaGlobalTeardown = async function() { // the context (<code>this</code>) is shared, but not with the test files await this.server.stop(); console.log(<code>server on port ${this.server.port} stopped</code>); };</p> <p>// this file can contain root hook plugins as well! // exports.mochaHooks = { ... } </code></pre></p> <p>Fixtures are loaded with <code>--require</code>, e.g., <code>mocha --require fixtures.js</code>.</p> <p>For detailed information, please see the <a href="https://mochajs.org/#global-fixtures">documentation</a> and this handy-dandy <a href="https://mochajs.org/#test-fixture-decision-tree-wizard-thing">flowchart</a> to help understand the differences between hooks, root hook plugins, and global fixtures (and when you should use each).</p> <h2>:tada: Enhancements</h2> <ul> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4308">#4308</a>: Support run-once <a href="https://mochajs.org/#global-fixtures">global setup & teardown fixtures</a> (<a href="https://github.com/boneskull"><strong>@boneskull</strong></a>)</li> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4442">#4442</a>: Multi-part extensions (e.g., <code>test.js</code>) now usable with <code>--extension</code> option (<a href="https://github.com/jordanstephens"><strong>@jordanstephens</strong></a>)</li> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4472">#4472</a>: Leading dots (e.g., <code>.js</code>, <code>.test.js</code>) now usable with <code>--extension</code> option (<a href="https://github.com/boneskull"><strong>@boneskull</strong></a>)</li> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4434">#4434</a>: Output of <code>json</code> reporter now contains <code>speed</code> ("fast"/"medium"/"slow") property (<a href="https://github.com/wwhurin"><strong>@wwhurin</strong></a>)</li> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4464">#4464</a>: Errors thrown by serializer in parallel mode now have error codes (<a href="https://github.com/evaline-ju"><strong>@evaline-ju</strong></a>)</li> </ul> <p><em>For implementors of custom reporters:</em></p> <ul> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4409">#4409</a>: Parallel mode and custom reporter improvements (<a href="https://github.com/boneskull"><strong>@boneskull</strong></a>): <ul> <li>Support custom worker-process-only reporters (<code>Runner.prototype.workerReporter()</code>); reporters should subclass <code>ParallelBufferedReporter</code> in <code>mocha/lib/nodejs/reporters/parallel-buffered</code></li> <li>Allow opt-in of object reference matching for "sufficiently advanced" custom reporters (<code>Runner.prototype.linkPartialObjects()</code>); use if strict object equality is needed when consuming <code>Runner</code> event data</li> <li>Enable detection of parallel mode (<code>Runner.prototype.isParallelMode()</code>)</li> </ul> </li> </ul> <h2>:bug: Fixes</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </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>8.2.0 / 2020-10-16</h1> <p>The major feature added in v8.2.0 is addition of support for <a href="https://mochajs.org/#global-fixtures"><em>global fixtures</em></a>.</p> <p>While Mocha has always had the ability to run setup and teardown via a hook (e.g., a <code>before()</code> at the top level of a test file) when running tests in serial, Mocha v8.0.0 added support for parallel runs. Parallel runs are <em>incompatible</em> with this strategy; e.g., a top-level <code>before()</code> would only run for the file in which it was defined.</p> <p>With <a href="https://mochajs.org/#global-fixtures">global fixtures</a>, Mocha can now perform user-defined setup and teardown <em>regardless</em> of mode, and these fixtures are guaranteed to run <em>once and only once</em>. This holds for parallel mode, serial mode, and even "watch" mode (the teardown will run once you hit Ctrl-C, just before Mocha finally exits). Tasks such as starting and stopping servers are well-suited to global fixtures, but not sharing resources--global fixtures do <em>not</em> share context with your test files (but they do share context with each other).</p> <p>Here's a short example of usage:</p> <pre lang="js"><code>// fixtures.js <p>// can be async or not exports.mochaGlobalSetup = async function() { this.server = await startSomeServer({port: process.env.TEST_PORT}); console.log(<code>server running on port ${this.server.port}</code>); };</p> <p>exports.mochaGlobalTeardown = async function() { // the context (<code>this</code>) is shared, but not with the test files await this.server.stop(); console.log(<code>server on port ${this.server.port} stopped</code>); };</p> <p>// this file can contain root hook plugins as well! // exports.mochaHooks = { ... } </code></pre></p> <p>Fixtures are loaded with <code>--require</code>, e.g., <code>mocha --require fixtures.js</code>.</p> <p>For detailed information, please see the <a href="https://mochajs.org/#global-fixtures">documentation</a> and this handy-dandy <a href="https://mochajs.org/#test-fixture-decision-tree-wizard-thing">flowchart</a> to help understand the differences between hooks, root hook plugins, and global fixtures (and when you should use each).</p> <h2>:tada: Enhancements</h2> <ul> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4308">#4308</a>: Support run-once <a href="https://mochajs.org/#global-fixtures">global setup & teardown fixtures</a> (<a href="https://github.com/boneskull"><strong>@boneskull</strong></a>)</li> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4442">#4442</a>: Multi-part extensions (e.g., <code>test.js</code>) now usable with <code>--extension</code> option (<a href="https://github.com/jordanstephens"><strong>@jordanstephens</strong></a>)</li> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4472">#4472</a>: Leading dots (e.g., <code>.js</code>, <code>.test.js</code>) now usable with <code>--extension</code> option (<a href="https://github.com/boneskull"><strong>@boneskull</strong></a>)</li> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4434">#4434</a>: Output of <code>json</code> reporter now contains <code>speed</code> ("fast"/"medium"/"slow") property (<a href="https://github.com/wwhurin"><strong>@wwhurin</strong></a>)</li> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4464">#4464</a>: Errors thrown by serializer in parallel mode now have error codes (<a href="https://github.com/evaline-ju"><strong>@evaline-ju</strong></a>)</li> </ul> <p><em>For implementors of custom reporters:</em></p> <ul> <li><a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4409">#4409</a>: Parallel mode and custom reporter improvements (<a href="https://github.com/boneskull"><strong>@boneskull</strong></a>): <ul> <li>Support custom worker-process-only reporters (<code>Runner.prototype.workerReporter()</code>); reporters should subclass <code>ParallelBufferedReporter</code> in <code>mocha/lib/nodejs/reporters/parallel-buffered</code></li> <li>Allow opt-in of object reference matching for "sufficiently advanced" custom reporters (<code>Runner.prototype.linkPartialObjects()</code>); use if strict object equality is needed when consuming <code>Runner</code> event data</li> <li>Enable detection of parallel mode (<code>Runner.prototype.isParallelMode()</code>)</li> </ul> </li> </ul> <h2>:bug: Fixes</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mochajs/mocha/commit/afe8daac603d398743dd5572f497ba088193bf53"><code>afe8daa</code></a> Release v8.2.0</li> <li><a href="https://github.com/mochajs/mocha/commit/20d3d4cab80d65096fbb15eb5eaf14abdcc587dd"><code>20d3d4c</code></a> update CHANGELOG for v8.2.0 [ci skip]</li> <li><a href="https://github.com/mochajs/mocha/commit/932c09a607040e9aaee11a4dc2a5397831574c0c"><code>932c09a</code></a> fix scripts/linkify-changelog to not blast fenced code blocks</li> <li><a href="https://github.com/mochajs/mocha/commit/3b333ecf6168943605caa1bcd07b2acf38835057"><code>3b333ec</code></a> chore(deps): [email protected]</li> <li><a href="https://github.com/mochajs/mocha/commit/058b2e7484f0040e5ff0b4d2e37bf41f2cf50da3"><code>058b2e7</code></a> attempt to force colors in karma config</li> <li><a href="https://github.com/mochajs/mocha/commit/60e3662511dcdaa0b854909b866841191a32771a"><code>60e3662</code></a> replace promise.allsettled with @ungap/promise-all-settled; closes <a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4474">#4474</a></li> <li><a href="https://github.com/mochajs/mocha/commit/f132448ee51d9b09efab29099756f3b15a1a98ba"><code>f132448</code></a> remove duplicated/problem reporter tests; closes <a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4469">#4469</a></li> <li><a href="https://github.com/mochajs/mocha/commit/31116dbf825487490d5416c95b2685e18e7359d3"><code>31116db</code></a> fix: remove job count from parallel mode debug log (<a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4416">#4416</a>)</li> <li><a href="https://github.com/mochajs/mocha/commit/478ca6ac3d05d7d789d3ec22328b3a2ce859e341"><code>478ca6a</code></a> add "fixture flowchart" to docs (<a href="https://github-redirect.dependabot.com/mochajs/mocha/issues/4440">#4440</a>)</li> <li><a href="https://github.com/mochajs/mocha/commit/9c28990f1d562aff3ceb410496c46266099a9d5f"><code>9c28990</code></a> support leading dots in --extension</li> <li>Additional commits viewable in <a href="https://github.com/mochajs/mocha/compare/v8.1.3...v8.2.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 4 days
PR closed mkay581/cookie-store
Bumps @babel/preset-env from 7.11.5 to 7.12.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases">@babel/preset-env's releases</a>.</em></p> <blockquote> <h2>v7.12.1 (2020-10-16)</h2> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-cli</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12182">#12182</a> Don't force chokidar@2 to be downloaded from registry.npmjs.org (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-runtime</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12184">#12184</a> Allow importing <code>@babel/runtime/package</code> (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12183">#12183</a> Reland "Fix: check if param is assignable when parsing arrow return type annotation" (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12188">#12188</a> Guard against yarn-issue-1882 (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><em>Every package</em> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12186">#12186</a> chore: use workspace:* for dev deps (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-compat-data</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-preset-env</code>, <code>babel-preset-react</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime</code>, <code>babel-standalone</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12175">#12175</a> Remove unused <code>dependencies</code> and <code>devDependencies</code> (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h4>Committers: 2</h4> <ul> <li>Huáng Jùnliàng (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> <h2>v7.12.0 (2020-10-14)</h2> <p>Thanks <a href="https://github.com/akphi">@akphi</a>, <a href="https://github.com/Amareis">@Amareis</a>, <a href="https://github.com/barronwei">@barronwei</a>, <a href="https://github.com/iamfotx">@iamfotx</a>, <a href="https://github.com/mischnic">@mischnic</a>, <a href="https://github.com/overlookmotel">@overlookmotel</a>, <a href="https://github.com/ryanrhee">@ryanrhee</a>, <a href="https://github.com/snitin315">@snitin315</a>, <a href="https://github.com/sosukesuzuki">@sosukesuzuki</a>, <a href="https://github.com/timgates42">@timgates42</a>, <a href="https://github.com/zweimach">@zweimach</a> for their first PRs.</p> <h4>:eyeglasses: Spec Compliance</h4> <ul> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</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-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12111">#12111</a> [ts] Throw a syntax error for index signature with <code>declare</code> (<a href="https://github.com/sosukesuzuki">@sosukesuzuki</a>)</li> </ul> </li> </ul> <h4>:rocket: New Feature</h4> <ul> <li><code>babel-core</code>, <code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-module-attributes</code>, <code>babel-standalone</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12139">#12139</a> Parse import-assertions (<a href="https://github.com/xtuc">@xtuc</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-replace-supers</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12143">#12143</a> Transform class static block (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12079">#12079</a> Parse class static block (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12129">#12129</a> Support TypeScript mapped type 'as' clauses (<a href="https://github.com/existentialism">@existentialism</a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12147">#12147</a> [ts] Add support for the "intrinsic" keyword (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12131">#12131</a> [ts] Add support for template interpolations in types (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-modules-systemjs</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12163">#12163</a> SystemJS top-level await support (<a href="https://github.com/guybedford">@guybedford</a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code>, <code>babel-preset-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11950">#11950</a> Add <code>jsxPragmaFrag</code> support to typescript transform (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</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-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> </ul> <!-- 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">@babel/preset-env's changelog</a>.</em></p> <blockquote> <h2>v7.12.1 (2020-10-16)</h2> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-cli</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12182">#12182</a> Don't force chokidar@2 to be downloaded from registry.npmjs.org (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-runtime</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12184">#12184</a> Allow importing <code>@babel/runtime/package</code> (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12183">#12183</a> Reland "Fix: check if param is assignable when parsing arrow return type annotation" (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12188">#12188</a> Guard against yarn-issue-1882 (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-bindify-decorators</code>, <code>babel-helper-call-delegate</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-explode-assignable-expression</code>, <code>babel-helper-explode-class</code>, <code>babel-helper-module-imports</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-skip-transparent-expression-wrappers</code>, <code>babel-helpers</code>, <code>babel-node</code>, <code>babel-parser</code>, <code>babel-plugin-external-helpers</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-throw-expressions</code>, <code>babel-plugin-proposal-unicode-property-regex</code>, <code>babel-plugin-syntax-class-properties</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-string-names</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</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-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12186">#12186</a> chore: use workspace:* for dev deps (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-compat-data</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-preset-env</code>, <code>babel-preset-react</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime</code>, <code>babel-standalone</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12175">#12175</a> Remove unused <code>dependencies</code> and <code>devDependencies</code> (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h2>v7.12.0 (2020-10-14)</h2> <h4>:eyeglasses: Spec Compliance</h4> <ul> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</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-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12111">#12111</a> [ts] Throw a syntax error for index signature with <code>declare</code> (<a href="https://github.com/sosukesuzuki">@sosukesuzuki</a>)</li> </ul> </li> </ul> <h4>:rocket: New Feature</h4> <ul> <li><code>babel-core</code>, <code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-module-attributes</code>, <code>babel-standalone</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12139">#12139</a> Parse import-assertions (<a href="https://github.com/xtuc">@xtuc</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-replace-supers</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12143">#12143</a> Transform class static block (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12079">#12079</a> Parse class static block (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12129">#12129</a> Support TypeScript mapped type 'as' clauses (<a href="https://github.com/existentialism">@existentialism</a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12147">#12147</a> [ts] Add support for the "intrinsic" keyword (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12131">#12131</a> [ts] Add support for template interpolations in types (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-modules-systemjs</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12163">#12163</a> SystemJS top-level await support (<a href="https://github.com/guybedford">@guybedford</a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code>, <code>babel-preset-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11950">#11950</a> Add <code>jsxPragmaFrag</code> support to typescript transform (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</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-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11907">#11907</a> Return a list of files that were read from loadPartialConfig (<a href="https://github.com/devongovett">@devongovett</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/12167">#12167</a> [ts] Add <code>asserts: false</code> to <code>TSTypePredicate</code> node (<a href="https://github.com/sosukesuzuki">@sosukesuzuki</a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12161">#12161</a> Move check for TSTypeCastExpression to catch another case (<a href="https://github.com/existentialism">@existentialism</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/7f4b83833f4463673a9fab071306871dec32ce47"><code>7f4b838</code></a> v7.12.1</li> <li><a href="https://github.com/babel/babel/commit/eec01fe078decb7d369cd2111c9f3881c4482788"><code>eec01fe</code></a> chore: use workspace:* for dev deps (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env/issues/12186">#12186</a>)</li> <li><a href="https://github.com/babel/babel/commit/6cb0056519c016dfa39a57036d104694d77c4367"><code>6cb0056</code></a> Remove unused dependencies and devDependencies (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env/issues/12175">#12175</a>)</li> <li><a href="https://github.com/babel/babel/commit/726154c78e2e7d9822e835c7e9ee6199bc3800d8"><code>726154c</code></a> v7.12.0</li> <li><a href="https://github.com/babel/babel/commit/62965e388029050efccff764ac39563f53f1eb3c"><code>62965e3</code></a> Archive plugins (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env/issues/12117">#12117</a>)</li> <li><a href="https://github.com/babel/babel/commit/afc03581cc993f60429955cfba169ac318a5ce36"><code>afc0358</code></a> chore: bump electron-to-chromium (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env/issues/12118">#12118</a>)</li> <li><a href="https://github.com/babel/babel/commit/f2da186714bfe747e2843bac36b60471de78bef1"><code>f2da186</code></a> refactor: add @babel/helper-validator-option (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env/issues/12006">#12006</a>)</li> <li>See full diff in <a href="https://github.com/babel/babel/commits/v7.12.1/packages/babel-preset-env">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 4 days
PR closed mkay581/cookie-store
Bumps @babel/preset-typescript from 7.10.4 to 7.12.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases">@babel/preset-typescript's releases</a>.</em></p> <blockquote> <h2>v7.12.1 (2020-10-16)</h2> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-cli</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12182">#12182</a> Don't force chokidar@2 to be downloaded from registry.npmjs.org (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-runtime</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12184">#12184</a> Allow importing <code>@babel/runtime/package</code> (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12183">#12183</a> Reland "Fix: check if param is assignable when parsing arrow return type annotation" (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12188">#12188</a> Guard against yarn-issue-1882 (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><em>Every package</em> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12186">#12186</a> chore: use workspace:* for dev deps (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-compat-data</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-preset-env</code>, <code>babel-preset-react</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime</code>, <code>babel-standalone</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12175">#12175</a> Remove unused <code>dependencies</code> and <code>devDependencies</code> (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h4>Committers: 2</h4> <ul> <li>Huáng Jùnliàng (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> <h2>v7.12.0 (2020-10-14)</h2> <p>Thanks <a href="https://github.com/akphi">@akphi</a>, <a href="https://github.com/Amareis">@Amareis</a>, <a href="https://github.com/barronwei">@barronwei</a>, <a href="https://github.com/iamfotx">@iamfotx</a>, <a href="https://github.com/mischnic">@mischnic</a>, <a href="https://github.com/overlookmotel">@overlookmotel</a>, <a href="https://github.com/ryanrhee">@ryanrhee</a>, <a href="https://github.com/snitin315">@snitin315</a>, <a href="https://github.com/sosukesuzuki">@sosukesuzuki</a>, <a href="https://github.com/timgates42">@timgates42</a>, <a href="https://github.com/zweimach">@zweimach</a> for their first PRs.</p> <h4>:eyeglasses: Spec Compliance</h4> <ul> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</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-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12111">#12111</a> [ts] Throw a syntax error for index signature with <code>declare</code> (<a href="https://github.com/sosukesuzuki">@sosukesuzuki</a>)</li> </ul> </li> </ul> <h4>:rocket: New Feature</h4> <ul> <li><code>babel-core</code>, <code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-module-attributes</code>, <code>babel-standalone</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12139">#12139</a> Parse import-assertions (<a href="https://github.com/xtuc">@xtuc</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-replace-supers</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12143">#12143</a> Transform class static block (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12079">#12079</a> Parse class static block (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12129">#12129</a> Support TypeScript mapped type 'as' clauses (<a href="https://github.com/existentialism">@existentialism</a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12147">#12147</a> [ts] Add support for the "intrinsic" keyword (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12131">#12131</a> [ts] Add support for template interpolations in types (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-modules-systemjs</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12163">#12163</a> SystemJS top-level await support (<a href="https://github.com/guybedford">@guybedford</a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code>, <code>babel-preset-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11950">#11950</a> Add <code>jsxPragmaFrag</code> support to typescript transform (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</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-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> </ul> <!-- 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">@babel/preset-typescript's changelog</a>.</em></p> <blockquote> <h2>v7.12.1 (2020-10-16)</h2> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-cli</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12182">#12182</a> Don't force chokidar@2 to be downloaded from registry.npmjs.org (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-runtime</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12184">#12184</a> Allow importing <code>@babel/runtime/package</code> (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12183">#12183</a> Reland "Fix: check if param is assignable when parsing arrow return type annotation" (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li>Other <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12188">#12188</a> Guard against yarn-issue-1882 (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-bindify-decorators</code>, <code>babel-helper-call-delegate</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-explode-assignable-expression</code>, <code>babel-helper-explode-class</code>, <code>babel-helper-module-imports</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-skip-transparent-expression-wrappers</code>, <code>babel-helpers</code>, <code>babel-node</code>, <code>babel-parser</code>, <code>babel-plugin-external-helpers</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-throw-expressions</code>, <code>babel-plugin-proposal-unicode-property-regex</code>, <code>babel-plugin-syntax-class-properties</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-string-names</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</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-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12186">#12186</a> chore: use workspace:* for dev deps (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-compat-data</code>, <code>babel-helper-compilation-targets</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-remap-async-to-generator</code>, <code>babel-helper-simple-access</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-plugin-transform-named-capturing-groups-regex</code>, <code>babel-plugin-transform-object-assign</code>, <code>babel-plugin-transform-parameters</code>, <code>babel-plugin-transform-react-jsx-self</code>, <code>babel-plugin-transform-react-jsx-source</code>, <code>babel-plugin-transform-template-literals</code>, <code>babel-preset-env</code>, <code>babel-preset-react</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime</code>, <code>babel-standalone</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12175">#12175</a> Remove unused <code>dependencies</code> and <code>devDependencies</code> (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> </ul> <h2>v7.12.0 (2020-10-14)</h2> <h4>:eyeglasses: Spec Compliance</h4> <ul> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</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-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12111">#12111</a> [ts] Throw a syntax error for index signature with <code>declare</code> (<a href="https://github.com/sosukesuzuki">@sosukesuzuki</a>)</li> </ul> </li> </ul> <h4>:rocket: New Feature</h4> <ul> <li><code>babel-core</code>, <code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-module-attributes</code>, <code>babel-standalone</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12139">#12139</a> Parse import-assertions (<a href="https://github.com/xtuc">@xtuc</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-module-transforms</code>, <code>babel-helper-replace-supers</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-standalone</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12143">#12143</a> Transform class static block (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-syntax-class-static-block</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12079">#12079</a> Parse class static block (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12129">#12129</a> Support TypeScript mapped type 'as' clauses (<a href="https://github.com/existentialism">@existentialism</a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12147">#12147</a> [ts] Add support for the "intrinsic" keyword (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12131">#12131</a> [ts] Add support for template interpolations in types (<a href="https://github.com/nicolo-ribaudo">@nicolo-ribaudo</a>)</li> </ul> </li> <li><code>babel-plugin-transform-modules-systemjs</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12163">#12163</a> SystemJS top-level await support (<a href="https://github.com/guybedford">@guybedford</a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code>, <code>babel-preset-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11950">#11950</a> Add <code>jsxPragmaFrag</code> support to typescript transform (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-core</code>, <code>babel-helper-module-transforms</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code>, <code>babel-plugin-syntax-module-string-names</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-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12091">#12091</a> String import/export specifier (<a href="https://github.com/JLHwung">@JLHwung</a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/11907">#11907</a> Return a list of files that were read from loadPartialConfig (<a href="https://github.com/devongovett">@devongovett</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/12167">#12167</a> [ts] Add <code>asserts: false</code> to <code>TSTypePredicate</code> node (<a href="https://github.com/sosukesuzuki">@sosukesuzuki</a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/12161">#12161</a> Move check for TSTypeCastExpression to catch another case (<a href="https://github.com/existentialism">@existentialism</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/7f4b83833f4463673a9fab071306871dec32ce47"><code>7f4b838</code></a> v7.12.1</li> <li><a href="https://github.com/babel/babel/commit/eec01fe078decb7d369cd2111c9f3881c4482788"><code>eec01fe</code></a> chore: use workspace:* for dev deps (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript/issues/12186">#12186</a>)</li> <li><a href="https://github.com/babel/babel/commit/726154c78e2e7d9822e835c7e9ee6199bc3800d8"><code>726154c</code></a> v7.12.0</li> <li><a href="https://github.com/babel/babel/commit/d0d1fdb921a1ab84e73b12baeeca92629f9c92f2"><code>d0d1fdb</code></a> Add <code>jsxPragmaFrag</code> support to typescript transform (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript/issues/11950">#11950</a>)</li> <li><a href="https://github.com/babel/babel/commit/3fad7eab9b47165059b4dba34fe4a61ac4549c85"><code>3fad7ea</code></a> Use Yarn 2 (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript/issues/11962">#11962</a>)</li> <li>See full diff in <a href="https://github.com/babel/babel/commits/v7.12.1/packages/babel-preset-typescript">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 4 days
PR closed mkay581/cookie-store
Bumps pretty-quick from 3.0.2 to 3.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/azz/pretty-quick/releases">pretty-quick's releases</a>.</em></p> <blockquote> <h2>v3.1.0</h2> <h1><a href="https://github.com/azz/pretty-quick/compare/v3.0.2...v3.1.0">3.1.0</a> (2020-10-14)</h1> <h3>Features</h3> <ul> <li>add an --ignore-path flag (<a href="https://github-redirect.dependabot.com/azz/pretty-quick/issues/115">#115</a>) (<a href="https://github.com/azz/pretty-quick/commit/eaf29e2a5a7e20d6a7d17672812b6340739dadd6">eaf29e2</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/azz/pretty-quick/commit/eaf29e2a5a7e20d6a7d17672812b6340739dadd6"><code>eaf29e2</code></a> feat: add an --ignore-path flag (<a href="https://github-redirect.dependabot.com/azz/pretty-quick/issues/115">#115</a>)</li> <li><a href="https://github.com/azz/pretty-quick/commit/8c994bc584275282000183710c0320b86fb81c61"><code>8c994bc</code></a> doc: update npx usage for v3</li> <li>See full diff in <a href="https://github.com/azz/pretty-quick/compare/v3.0.2...v3.1.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 4 days
PR closed mkay581/cookie-store
Bumps @open-wc/karma-esm from 3.0.5 to 3.0.9. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/open-wc/open-wc/blob/master/packages/karma-esm/CHANGELOG.md">@open-wc/karma-esm's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/open-wc/open-wc/compare/@open-wc/[email protected]...@open-wc/[email protected]">3.0.9</a> (2020-10-11)</h2> <p><strong>Note:</strong> Version bump only for package @open-wc/karma-esm</p> <h2><a href="https://github.com/open-wc/open-wc/compare/@open-wc/[email protected]...@open-wc/[email protected]">3.0.8</a> (2020-10-03)</h2> <p><strong>Note:</strong> Version bump only for package @open-wc/karma-esm</p> <h2><a href="https://github.com/open-wc/open-wc/compare/@open-wc/[email protected]...@open-wc/[email protected]">3.0.7</a> (2020-10-01)</h2> <p><strong>Note:</strong> Version bump only for package @open-wc/karma-esm</p> <h2><a href="https://github.com/open-wc/open-wc/compare/@open-wc/[email protected]...@open-wc/[email protected]">3.0.6</a> (2020-09-25)</h2> <p><strong>Note:</strong> Version bump only for package @open-wc/karma-esm</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/open-wc/open-wc/commit/59e56d74ca6e89550ef2e6ed1c5ac5adc9c1906e"><code>59e56d7</code></a> chore: release new versions</li> <li><a href="https://github.com/open-wc/open-wc/commit/a306dd68513dad50111818dac1f680bcf17ee992"><code>a306dd6</code></a> chore(karma-esm): release to update NPM readme</li> <li><a href="https://github.com/open-wc/open-wc/commit/de68e7b689027bce0679f0a11bc50cfcd204c5cb"><code>de68e7b</code></a> docs: recommend WTR over karma (<a href="https://github.com/open-wc/open-wc/tree/HEAD/packages/karma-esm/issues/1862">#1862</a>)</li> <li><a href="https://github.com/open-wc/open-wc/commit/fe8d5295069b93735a548e8a82faf90ece8abd5a"><code>fe8d529</code></a> chore: release new versions</li> <li><a href="https://github.com/open-wc/open-wc/commit/b473d3e4347abd4dc2e6d4704f9be113e3b78114"><code>b473d3e</code></a> chore: release new versions</li> <li><a href="https://github.com/open-wc/open-wc/commit/8017ebb43f238b8e514972f15bb97aac3327bb1d"><code>8017ebb</code></a> chore: release new versions</li> <li>See full diff in <a href="https://github.com/open-wc/open-wc/commits/@open-wc/[email protected]/packages/karma-esm">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 4 days
PR closed mkay581/cookie-store
Bumps karma from 5.2.2 to 5.2.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/karma-runner/karma/releases">karma's releases</a>.</em></p> <blockquote> <h2>v5.2.3</h2> <h2><a href="https://github.com/karma-runner/karma/compare/v5.2.2...v5.2.3">5.2.3</a> (2020-09-25)</h2> <h3>Bug Fixes</h3> <ul> <li>update us-parser-js dependency (<a href="https://github-redirect.dependabot.com/karma-runner/karma/issues/3564">#3564</a>) (<a href="https://github.com/karma-runner/karma/commit/500ed25d7e523efe7e7cff2ec70830be7e6e797a">500ed25</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/karma-runner/karma/blob/master/CHANGELOG.md">karma's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/karma-runner/karma/compare/v5.2.2...v5.2.3">5.2.3</a> (2020-09-25)</h2> <h3>Bug Fixes</h3> <ul> <li>update us-parser-js dependency (<a href="https://github-redirect.dependabot.com/karma-runner/karma/issues/3564">#3564</a>) (<a href="https://github.com/karma-runner/karma/commit/500ed25d7e523efe7e7cff2ec70830be7e6e797a">500ed25</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/karma-runner/karma/commit/ead31cd99238da86ab8b2d8ff5aff465959f4106"><code>ead31cd</code></a> chore(release): 5.2.3 [skip ci]</li> <li><a href="https://github.com/karma-runner/karma/commit/500ed25d7e523efe7e7cff2ec70830be7e6e797a"><code>500ed25</code></a> fix: update us-parser-js dependency (<a href="https://github-redirect.dependabot.com/karma-runner/karma/issues/3564">#3564</a>)</li> <li>See full diff in <a href="https://github.com/karma-runner/karma/compare/v5.2.2...v5.2.3">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 4 days
PR closed mkay581/cookie-store
Bumps typescript from 4.0.2 to 4.0.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Microsoft/TypeScript/releases">typescript's releases</a>.</em></p> <blockquote> <h2>TypeScript 4.0.3</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-4-0/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+4.0.0%22+is%3Aclosed+">fixed issues query for TypeScript v4.0.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+4.0.1%22+is%3Aclosed+">fixed issues query for TypeScript v4.0.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+4.0.2%22+is%3Aclosed+">fixed issues query for TypeScript v4.0.2</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+4.0.3%22+is%3Aclosed+">fixed issues query for TypeScript v4.0.3</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://marketplace.visualstudio.com/items?itemName=TypeScriptTeam.TypeScript-40">Visual Studio 2017/2019</a> (<a href="https://github.com/Microsoft/TypeScript/wiki/Updating-TypeScript-in-Visual-Studio-2017">Select new version in project options</a>)</li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/TypeScript/commit/fee3bfbe91b7582f42e2f49814b87353f67e63f4"><code>fee3bfb</code></a> Bump version to 4.0.3 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/2eb5deae4bafe169ec1d2ecf66999003574164bb"><code>2eb5dea</code></a> Update LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/1dde4bbe4ebc7fb210bf124b9590a82573a49806"><code>1dde4bb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/40595">#40595</a> from typescript-bot/pick/39924/release-4.0</li> <li><a href="https://github.com/microsoft/TypeScript/commit/23c77c4e329ee3a27c4dfe7d9f6905aca12281b0"><code>23c77c4</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/40444">#40444</a> from amcasey/Cherry40043</li> <li><a href="https://github.com/microsoft/TypeScript/commit/e3301f7294c759be4141f4a49b691fe2614f93ef"><code>e3301f7</code></a> Cherry-pick PR <a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/39924">#39924</a> into release-4.0</li> <li><a href="https://github.com/microsoft/TypeScript/commit/65b84e707e118b802ad41ca164debd15f4915a95"><code>65b84e7</code></a> Cherry-pick PR <a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/40273">#40273</a> into release-4.0 (<a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/40303">#40303</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/657576ae7c9da142bdbbe43e64d425fa292124fe"><code>657576a</code></a> Set stackTraceLimit to 0 in fileSystemEntryExists</li> <li><a href="https://github.com/microsoft/TypeScript/commit/3e7a8e7e45aed722d7955e35e9fbac14ea75958a"><code>3e7a8e7</code></a> Cherry-pick PR <a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/40348">#40348</a> into release-4.0 (<a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/40349">#40349</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/8890dcb7ca81857678b110a1586f3642d1447ee2"><code>8890dcb</code></a> Cherry-pick PR <a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/40118">#40118</a> into release-4.0 (<a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/40134">#40134</a>)</li> <li>See full diff in <a href="https://github.com/Microsoft/TypeScript/compare/v4.0.2...v4.0.3">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 4 days
push eventkeithamus/deno-protod
commit sha 30b0084b35893a6e97504a731fef981d5494148e
fix: bump protoc_parser version (#3)
push time in 4 days
push eventkeithamus/sort-package-json
commit sha 1e28942555be6b353959cb9fa4e007b6865641e2
chore: update lint-staged instructions (#204) lint-staged no longer wants git-add add ran on it's behalf https://github.com/okonet/lint-staged#v10 > From v10.0.0 onwards any new modifications to originally staged files will be automatically added to the commit. If your task previously contained a git add step, please remove this. The automatic behaviour ensures there are less race-conditions, since trying to run multiple git operations at the same time usually results in an error.
push time in 4 days
PR merged keithamus/sort-package-json
lint-staged no longer wants git-add add ran on it's behalf
https://github.com/okonet/lint-staged#v10
From v10.0.0 onwards any new modifications to originally staged files will be automatically added to the commit. If your task previously contained a git add step, please remove this. The automatic behaviour ensures there are less race-conditions, since trying to run multiple git operations at the same time usually results in an error.
pr closed time in 4 days
push eventkeithamus/sort-package-json
commit sha 89be2c9f4e0fc4ccb2f5f2abaaf3b592c5a75002
fix: `imports` and `exports` sorted together (#203) * Removed `exports` sort, added `imports` * fix: removed "exports" from sort assertion in tests; rebuilt snapshots
push time in 5 days
issue closedkeithamus/sort-package-json
Leave conditional exports alone
https://nodejs.org/api/esm.html#esm_conditional_exports states
Within the "exports" object, key order is significant. During condition matching, earlier entries have higher priority and take precedence over later entries. The general rule is that conditions should be from most specific to least specific in object order.
I found that default was sorted before node.
closed time in 5 days
dandvpull request commentkeithamus/deno-protoc-parser
Done and done
comment created time in 5 days
created tagkeithamus/deno-protoc-parser
Parse Google Protocol Buffer DSL into an AST, which can be converted into JSON or back into the Protocol Buffer DSL.
created time in 5 days
push eventkeithamus/deno-protoc-parser
commit sha 9494cb11b21cc976e7b5bb22de7566010afceafd
fix: leading dot without label (#6)
push time in 5 days
push eventkeithamus/deno-protod
commit sha ac694d83fbecbc58d0094e04e6de0de2dbfad3a9
chore: upgrade protoc_parser (#2)
push time in 6 days
push eventkeithamus/deno-protod
commit sha cae35dbc472c9c3b98a05f7c91464b24ae5f9ad0
fix: upgrade to latest `deno fmt` rules * Bump bench.ts version 0.66.0 errors on TypeScript 4.0. * deno fmt * adapt the generator to fix failings
push time in 6 days
PR merged keithamus/deno-protod
0.66.0 errors on TypeScript 4.0.
pr closed time in 6 days
pull request commentkeithamus/sort-package-json
Removed `exports` sort, added `imports`
Looks good, but snapshot tests are failing. If you run npm t locally you can see them fail. If you need any assistance fixing them up @fisker can hopefully help!
comment created time in 7 days
PR closed keithamus/sort-package-json
Bumps acorn from 7.1.0 to 7.4.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/acornjs/acorn/commit/54efb62138c54f523413fb6a6c00c57c81e81f54"><code>54efb62</code></a> Mark version 7.4.0</li> <li><a href="https://github.com/acornjs/acorn/commit/856b720cc7f971844c5bf3ea2ac072d574cc3bbf"><code>856b720</code></a> Remove link to plugin that's part of the repository now</li> <li><a href="https://github.com/acornjs/acorn/commit/e376a6631a72dff57a20ff11ba527838a555c58a"><code>e376a66</code></a> add numeric separators</li> <li><a href="https://github.com/acornjs/acorn/commit/d20ade2929485f9f875a4bc4f2834b567e82865f"><code>d20ade2</code></a> update test262</li> <li><a href="https://github.com/acornjs/acorn/commit/fe7b3f1ee5fc492beba8cb3d3ba1ad8626dc7265"><code>fe7b3f1</code></a> add logical assignment operators</li> <li><a href="https://github.com/acornjs/acorn/commit/459fa1eb8e8b7771496551e2d6e71937ff3a649c"><code>459fa1e</code></a> update test262</li> <li><a href="https://github.com/acornjs/acorn/commit/4e2c0e21a262990b9b54eb7fc8799870ece84a92"><code>4e2c0e2</code></a> Also add license header to other packages</li> <li><a href="https://github.com/acornjs/acorn/commit/31d3b1c56872c2d88bf1952885eca02187792788"><code>31d3b1c</code></a> Add "MIT License" at the top of acorn License file</li> <li><a href="https://github.com/acornjs/acorn/commit/3b6128e519aeb07521e102fd9ccc54aa4ceb0ac9"><code>3b6128e</code></a> Mark version 7.2.0 of acorn-walk</li> <li><a href="https://github.com/acornjs/acorn/commit/e265eae3499b01b176e71bdab8bdb0fe042f3e3d"><code>e265eae</code></a> Mark version 7.3.1</li> <li>Additional commits viewable in <a href="https://github.com/acornjs/acorn/compare/7.1.0...7.4.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)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill 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.
</details>
pr closed time in 7 days
PR closed keithamus/sort-package-json
Bumps node-fetch from 2.6.0 to 2.6.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/bitinn/node-fetch/releases">node-fetch's releases</a>.</em></p> <blockquote> <h2>v2.6.1</h2> <p><strong>This is an important security release. It is strongly recommended to update as soon as possible.</strong></p> <p>See <a href="https://github.com/node-fetch/node-fetch/blob/master/docs/CHANGELOG.md#v261">CHANGELOG</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/node-fetch/node-fetch/blob/master/docs/CHANGELOG.md">node-fetch's changelog</a>.</em></p> <blockquote> <h2>v2.6.1</h2> <p><strong>This is an important security release. It is strongly recommended to update as soon as possible.</strong></p> <ul> <li>Fix: honor the <code>size</code> option after following a redirect.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/node-fetch/node-fetch/commit/b5e2e41b2b50bf2997720d6125accaf0dd68c0ab"><code>b5e2e41</code></a> update version number</li> <li><a href="https://github.com/node-fetch/node-fetch/commit/2358a6c2563d1730a0cdaccc197c611949f6a334"><code>2358a6c</code></a> Honor the <code>size</code> option after following a redirect and revert data uri support</li> <li><a href="https://github.com/node-fetch/node-fetch/commit/8c197f8982a238b3c345c64b17bfa92e16b4f7c4"><code>8c197f8</code></a> docs: Fix typos and grammatical errors in README.md (<a href="https://github-redirect.dependabot.com/bitinn/node-fetch/issues/686">#686</a>)</li> <li><a href="https://github.com/node-fetch/node-fetch/commit/1e99050f944ac435fce26a9549eadcc2419a968a"><code>1e99050</code></a> fix: Change error message thrown with redirect mode set to error (<a href="https://github-redirect.dependabot.com/bitinn/node-fetch/issues/653">#653</a>)</li> <li><a href="https://github.com/node-fetch/node-fetch/commit/244e6f63d42025465796e3ca4ce813bf2c31fc5b"><code>244e6f6</code></a> docs: Show backers in README</li> <li><a href="https://github.com/node-fetch/node-fetch/commit/6a5d192034a0f438551dffb6d2d8df2c00921d16"><code>6a5d192</code></a> fix: Properly parse meta tag when parameters are reversed (<a href="https://github-redirect.dependabot.com/bitinn/node-fetch/issues/682">#682</a>)</li> <li><a href="https://github.com/node-fetch/node-fetch/commit/47a24a03eb49a49d81b768892aee10074ed54a91"><code>47a24a0</code></a> chore: Add opencollective badge</li> <li><a href="https://github.com/node-fetch/node-fetch/commit/7b136627c537cb24430b0310638c9177a85acee1"><code>7b13662</code></a> chore: Add funding link</li> <li><a href="https://github.com/node-fetch/node-fetch/commit/5535c2ed478d418969ecfd60c16453462de2a53f"><code>5535c2e</code></a> fix: Check for global.fetch before binding it (<a href="https://github-redirect.dependabot.com/bitinn/node-fetch/issues/674">#674</a>)</li> <li><a href="https://github.com/node-fetch/node-fetch/commit/1d5778ad0d910dbd1584fb407a186f5a0bc1ea22"><code>1d5778a</code></a> docs: Add Discord badge</li> <li>Additional commits viewable in <a href="https://github.com/bitinn/node-fetch/compare/v2.6.0...v2.6.1">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~akepinski">akepinski</a>, a new releaser for node-fetch since your current version.</p> </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)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill 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.
</details>
pr closed time in 7 days
PR closed keithamus/sort-package-json
Bumps npm from 6.14.4 to 6.14.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/npm/cli/releases">npm's releases</a>.</em></p> <blockquote> <h2>v6.14.6</h2> <h2>6.14.6 (2020-07-07)</h2> <h3>BUG FIXES</h3> <ul> <li><a href="https://github.com/npm/cli/commit/a9857b8f6869451ff058789c4631fadfde5bbcbc"><code>a9857b8f6</code></a> chore: remove auth info from logs (<a href="https://github.com/claudiahdz">@claudiahdz</a>)</li> <li><a href="https://github.com/npm/cli/commit/b7ad77598112908d60195d0fbc472b3c84275fd5"><code>b7ad77598</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/1416">#1416</a> fix: wrong <code>npm doctor</code> command result (<a href="https://github.com/vanishcode">@vanishcode</a>)</li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><a href="https://github.com/npm/cli/commit/94eca637756376b949edfb697e179a1fdcc231ee"><code>94eca6377</code></a> <code>[email protected]</code> (<a href="https://github.com/claudiahdz">@claudiahdz</a>)</li> <li><a href="https://github.com/npm/cli/commit/c49b6ae28791ff7184288be16654f97168aa9705"><code>c49b6ae28</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/1418">#1418</a> <code>[email protected]</code> (<a href="https://github.com/kemitchell">@kemitchell</a>)</li> </ul> <h2>v6.14.5</h2> <h2>6.14.5 (2020-05-04)</h2> <h3>BUG FIXES</h3> <ul> <li><a href="https://github.com/npm/cli/commit/33ec41f18f557146607cb14a7a38c707fce6d42c"><code>33ec41f18</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/758">#758</a> fix: relativize file links when inflating shrinkwrap (<a href="https://github.com/jsnajdr">@jsnajdr</a>)</li> <li><a href="https://github.com/npm/cli/commit/94ed456dfb0b122fd4192429024f034d06c3c454"><code>94ed456df</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/1162">#1162</a> fix: npm init help output (<a href="https://github.com/mum-never-proud">@mum-never-proud</a>)</li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><a href="https://github.com/npm/cli/commit/5587ac01ffd0d2ea830a6bbb67bb34a611ffc409"><code>5587ac01f</code></a> <code>[email protected]</code> <ul> <li><a href="https://github.com/npm/npm-registry-fetch/commit/fc5d94c39ca218d78df77249ab3a6bf1d9ed9db1"><code>fc5d94c39</code></a> fix: removed default timeout</li> </ul> </li> <li><a href="https://github.com/npm/cli/commit/07a4d8884448359bac485a49c05fd2d23d06834b"><code>07a4d8884</code></a> <code>[email protected]</code></li> <li><a href="https://github.com/npm/cli/commit/8228d1f2e427ad9adee617266108acd1ee39b4a5"><code>8228d1f2e</code></a> <code>[email protected]</code></li> <li><a href="https://github.com/npm/cli/commit/e6d20831740a84aea766da2a2913cf82a4d56ada"><code>e6d208317</code></a> <code>[email protected]</code></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/npm/cli/blob/latest/CHANGELOG.md">npm's changelog</a>.</em></p> <blockquote> <h2>6.14.6 (2020-07-07)</h2> <h3>BUG FIXES</h3> <ul> <li><a href="https://github.com/npm/cli/commit/a9857b8f6869451ff058789c4631fadfde5bbcbc"><code>a9857b8f6</code></a> chore: remove auth info from logs (<a href="https://github.com/claudiahdz">@claudiahdz</a>)</li> <li><a href="https://github.com/npm/cli/commit/b7ad77598112908d60195d0fbc472b3c84275fd5"><code>b7ad77598</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/1416">#1416</a> fix: wrong <code>npm doctor</code> command result (<a href="https://github.com/vanishcode">@vanishcode</a>)</li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><a href="https://github.com/npm/cli/commit/94eca637756376b949edfb697e179a1fdcc231ee"><code>94eca6377</code></a> <code>[email protected]</code> (<a href="https://github.com/claudiahdz">@claudiahdz</a>)</li> <li><a href="https://github.com/npm/cli/commit/c49b6ae28791ff7184288be16654f97168aa9705"><code>c49b6ae28</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/1418">#1418</a> <code>[email protected]</code> (<a href="https://github.com/kemitchell">@kemitchell</a>)</li> </ul> <h3>DOCUMENTATION</h3> <ul> <li><a href="https://github.com/npm/cli/commit/2e052984b08c09115ed75387fb2c961631d85d77"><code>2e052984b</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/1459">#1459</a> chore(docs): fixed links to cli commands (<a href="https://github.com/claudiahdz">@claudiahdz</a>)</li> <li><a href="https://github.com/npm/cli/commit/0ca3509ca940865392daeeabb39192f7d5af9f5e"><code>0ca3509ca</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/1283">#1283</a> Update npm-link.md (<a href="https://github.com/peterfich">@peterfich</a>)</li> <li><a href="https://github.com/npm/cli/commit/3dd429e9aad760ce2ff9e522b34ebfebd85b460c"><code>3dd429e9a</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/1377">#1377</a> Add note about dropped <code>*</code> filenames (<a href="https://github.com/maxwellgerber">@maxwellgerber</a>)</li> <li><a href="https://github.com/npm/cli/commit/9a2e2e797e5c91e7f4f261583a1906e2c440cc2f"><code>9a2e2e797</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/1429">#1429</a> Fix typo (<a href="https://github.com/seanpoulter">@seanpoulter</a>)</li> </ul> <h2>6.14.5 (2020-05-01)</h2> <h3>BUG FIXES</h3> <ul> <li><a href="https://github.com/npm/cli/commit/33ec41f18f557146607cb14a7a38c707fce6d42c"><code>33ec41f18</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/758">#758</a> fix: relativize file links when inflating shrinkwrap (<a href="https://github.com/jsnajdr">@jsnajdr</a>)</li> <li><a href="https://github.com/npm/cli/commit/94ed456dfb0b122fd4192429024f034d06c3c454"><code>94ed456df</code></a> <a href="https://github-redirect.dependabot.com/npm/cli/pull/1162">#1162</a> fix: npm init help output (<a href="https://github.com/mum-never-proud">@mum-never-proud</a>)</li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><a href="https://github.com/npm/cli/commit/5587ac01ffd0d2ea830a6bbb67bb34a611ffc409"><code>5587ac01f</code></a> <code>[email protected]</code> <ul> <li><a href="https://github.com/npm/npm-registry-fetch/commit/fc5d94c39ca218d78df77249ab3a6bf1d9ed9db1"><code>fc5d94c39</code></a> fix: removed default timeout</li> </ul> </li> <li><a href="https://github.com/npm/cli/commit/07a4d8884448359bac485a49c05fd2d23d06834b"><code>07a4d8884</code></a> <code>[email protected]</code></li> <li><a href="https://github.com/npm/cli/commit/8228d1f2e427ad9adee617266108acd1ee39b4a5"><code>8228d1f2e</code></a> <code>[email protected]</code></li> <li><a href="https://github.com/npm/cli/commit/e6d20831740a84aea766da2a2913cf82a4d56ada"><code>e6d208317</code></a> <code>[email protected]</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/npm/cli/commit/7352eb694dd881ff6ceb41f1ae0973dbb2ad233a"><code>7352eb6</code></a> 6.14.6</li> <li><a href="https://github.com/npm/cli/commit/f8a3f0ee2ed20996a98b43482c61ffe7be4c5652"><code>f8a3f0e</code></a> update AUTHORS</li> <li><a href="https://github.com/npm/cli/commit/ccaaaabfc03c65f4a0bf234113fff912631be00f"><code>ccaaaab</code></a> docs: changelog for 6.14.6</li> <li><a href="https://github.com/npm/cli/commit/94eca637756376b949edfb697e179a1fdcc231ee"><code>94eca63</code></a> [email protected]</li> <li><a href="https://github.com/npm/cli/commit/a9857b8f6869451ff058789c4631fadfde5bbcbc"><code>a9857b8</code></a> chore: remove auth info from logs</li> <li><a href="https://github.com/npm/cli/commit/479e45c03be7b452cbe346e96c750d36597c3eb6"><code>479e45c</code></a> style: fix lint error with no trailing comma</li> <li><a href="https://github.com/npm/cli/commit/1aec4cb6effefbf51033d3964cce2a909c918c0d"><code>1aec4cb</code></a> test: add test for <code>npm doctor</code> that ping registry returns error</li> <li><a href="https://github.com/npm/cli/commit/b7ad77598112908d60195d0fbc472b3c84275fd5"><code>b7ad775</code></a> fix: wrong <code>npm doctor</code> command result</li> <li><a href="https://github.com/npm/cli/commit/9a2e2e797e5c91e7f4f261583a1906e2c440cc2f"><code>9a2e2e7</code></a> docs: Fix typo</li> <li><a href="https://github.com/npm/cli/commit/c49b6ae28791ff7184288be16654f97168aa9705"><code>c49b6ae</code></a> [email protected]</li> <li>Additional commits viewable in <a href="https://github.com/npm/cli/compare/v6.14.4...v6.14.6">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)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill 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.
</details>
pr closed time in 7 days
PR closed keithamus/sort-package-json
🚨 Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! 💜 🚚💨 💚
Find out how to migrate to Snyk at greenkeeper.io
The dependency globby was updated from 10.0.0 to 11.0.1.
This version is not covered by your current version range.
If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
Publisher: sindresorhus License: MIT
<details> <summary>Release Notes for v11.0.1</summary>
<ul> <li>Normalize file paths to posix for gitignore calculation (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624450040" data-permission-text="Title is private" data-url="https://github.com/sindresorhus/globby/issues/143" data-hovercard-type="pull_request" data-hovercard-url="/sindresorhus/globby/pull/143/hovercard" href="https://urls.greenkeeper.io/sindresorhus/globby/pull/143">#143</a>) <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/sindresorhus/globby/commit/f2bdce653462e798ee6285c73e2e3eb2c0e89ec5/hovercard" href="https://urls.greenkeeper.io/sindresorhus/globby/commit/f2bdce653462e798ee6285c73e2e3eb2c0e89ec5"><tt>f2bdce6</tt></a></li> </ul> <p><a class="commit-link" href="https://urls.greenkeeper.io/sindresorhus/globby/compare/v11.0.0...v11.0.1"><tt>v11.0.0...v11.0.1</tt></a></p> </details>
<details> <summary>Commits</summary> <p>The new version differs by 13 commits.</p> <ul> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/39b7636370f8d57e9d0462f8bdb3bf9be88f98a6"><code>39b7636</code></a> <code>11.0.1</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/f2bdce653462e798ee6285c73e2e3eb2c0e89ec5"><code>f2bdce6</code></a> <code>Normalize file paths to posix for gitignore calculation (#143)</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/45ac58a95d9f774acd66a8996b777e52d3ed51d6"><code>45ac58a</code></a> <code>11.0.0</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/3c93fa16bc06f141fd21ccc55df4ed4f13f8577d"><code>3c93fa1</code></a> <code>Re-enable test for #97</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/4a471af4ca368b27641a3aa7f88f7083ea428db4"><code>4a471af</code></a> <code>Require Node.js 10</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/d4681a4d5807f2be5b4232dffee6df251c5a4c55"><code>d4681a4</code></a> <code>Get rid of <code>glob</code> dependency (#135)</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/8bc1ab0bfe7117d459e2ab2c841652f5a53b34cd"><code>8bc1ab0</code></a> <code>10.0.2</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/72e775a8ca2ddd4452817eb7b77b3aa658acec8d"><code>72e775a</code></a> <code>Fix using <code>gitignore</code> and <code>absolute</code> options at the same time on Windows (#137)</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/c61561ab38ba8554f292a0c0b4d2db6885294ebe"><code>c61561a</code></a> <code>Fix TypeScript type for the <code>expandDirectories</code> option (#138)</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/51611f5985dc539a67359fd7381c9d6e352a224e"><code>51611f5</code></a> <code>Tidelift tasks</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/4a470444b83882d488eb9c4a1c323896b0fd6c66"><code>4a47044</code></a> <code>10.0.1</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/a226f5dbf42e1c8b12bbf8d9eecc809371a6d9fd"><code>a226f5d</code></a> <code>Don't throw when specifying a non-existing <code>cwd</code> directory (#125)</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/globby/commit/5b0834a494a8d503ff1b2e55782da77934f20c4d"><code>5b0834a</code></a> <code>Readme tweaks</code></li> </ul> <p>See the <a href="https://urls.greenkeeper.io/sindresorhus/globby/compare/878ef6e11ae66d71bce1175e5b2054b5ee63a9e0...39b7636370f8d57e9d0462f8bdb3bf9be88f98a6">full diff</a></p> </details>
<details> <summary>FAQ and help</summary>
There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper. </details>
Your Greenkeeper bot :palm_tree:
pr closed time in 7 days
PR closed keithamus/sort-package-json
☝️ Important announcement: Greenkeeper will be saying goodbye 👋 and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io
The dependency git-hooks-list was updated from 1.0.3 to 2.0.0.
This version is not covered by your current version range.
If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
Publisher: fisker License: MIT
<details> <summary>Release Notes for v2.0.0</summary>
<ul> <li>feat: add p4 submit hooks (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="606940866" data-permission-text="Title is private" data-url="https://github.com/fisker/git-hooks-list/issues/269" data-hovercard-type="pull_request" data-hovercard-url="/fisker/git-hooks-list/pull/269/hovercard" href="https://urls.greenkeeper.io/fisker/git-hooks-list/pull/269">#269</a>) <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/fisker/git-hooks-list/commit/5c507ec3827c6b92cdf24ef7784e9bb5a0d42f03/hovercard" href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/5c507ec3827c6b92cdf24ef7784e9bb5a0d42f03"><tt>5c507ec</tt></a></li> </ul> <p><a class="commit-link" href="https://urls.greenkeeper.io/fisker/git-hooks-list/compare/v1.0.3...v2.0.0"><tt>v1.0.3...v2.0.0</tt></a></p> </details>
<details> <summary>Commits</summary> <p>The new version differs by 64 commits.</p> <ul> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/82d2b6513b74766bb99e1f37b6d0859a35bcc244"><code>82d2b65</code></a> <code>2.0.0</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/5c507ec3827c6b92cdf24ef7784e9bb5a0d42f03"><code>5c507ec</code></a> <code>feat: add p4 submit hooks (#269)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/dce754012b2f0ff1a6f9213a74d2830a6677739c"><code>dce7540</code></a> <code>style: use <code>undefined</code></code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/8d4b54b5ba697e33771176a2e7d7e0794ddf72cb"><code>8d4b54b</code></a> <code>chore(deps): update dependency @fisker/eslint-config to v2.2.1 (#267)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/05f0ded47bd4ff764854c9aa3fbe03aab69f869f"><code>05f0ded</code></a> <code>chore(deps-dev): bump @fisker/eslint-config from 2.1.2 to 2.2.0 (#266)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/dd6b64abe71431a32be9959cf95ccf41135d09c3"><code>dd6b64a</code></a> <code>chore(deps-dev): bump @fisker/prettier-config from 2.1.1 to 2.2.0 (#265)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/fc99dd27b45c58905db74b1b2cae43da1821597f"><code>fc99dd2</code></a> <code>chore(deps-dev): bump lint-staged from 10.1.6 to 10.1.7 (#255)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/8e0d6476607ac55cd685227a2d92e3e62d4cf931"><code>8e0d647</code></a> <code>chore(deps): update dependency lint-staged to v10.1.7 (#254)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/14e5cb54edcb70a394aad863f2e08b967aa34177"><code>14e5cb5</code></a> <code>chore(deps-dev): bump sort-package-json from 1.42.0 to 1.42.1 (#261)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/381158fe750a796b8100d1ef4b91a066860f70d8"><code>381158f</code></a> <code>chore(deps-dev): bump got from 11.0.1 to 11.0.2 (#260)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/a2bc310600511221c9093344f74fa2bcefccce30"><code>a2bc310</code></a> <code>chore(deps-dev): bump prettier from 2.0.4 to 2.0.5 (#257)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/57ba31bec70b9433775c1a63d92349bb444b9500"><code>57ba31b</code></a> <code>chore(deps-dev): bump got from 11.0.0 to 11.0.1 (#253)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/243110f56bcb9579d69aa800d3678ed40dacd5c2"><code>243110f</code></a> <code>chore(deps-dev): bump @fisker/eslint-config from 2.1.0 to 2.1.2 (#251)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/81d1c7115bc00b6f222cf83fdfc429430aa9fe63"><code>81d1c71</code></a> <code>chore(deps-dev): bump @fisker/husky-config from 2.1.0 to 2.1.1 (#250)</code></li> <li><a href="https://urls.greenkeeper.io/fisker/git-hooks-list/commit/a38e5b81e1034cd36fce60a3a814a92ab7d4b8b5"><code>a38e5b8</code></a> <code>chore(deps-dev): bump @fisker/prettier-config from 2.1.0 to 2.1.1 (#249)</code></li> </ul> <p>There are 64 commits in total.</p> <p>See the <a href="https://urls.greenkeeper.io/fisker/git-hooks-list/compare/4b3841511e61b670eac418ebb63448276f1a318a...82d2b6513b74766bb99e1f37b6d0859a35bcc244">full diff</a></p> </details>
<details> <summary>FAQ and help</summary>
There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper. </details>
Your Greenkeeper bot :palm_tree:
pr closed time in 7 days
PR closed keithamus/sort-package-json
☝️ Important announcement: Greenkeeper will be saying goodbye 👋 and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io
The devDependency make-dir was updated from 3.0.2 to 3.1.0.
This version is not covered by your current version range.
If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
Publisher: sindresorhus License: MIT
<details> <summary>Release Notes for v3.1.0</summary>
<ul> <li>Stop using deprecated <code>process.umask()</code> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="604752436" data-permission-text="Title is private" data-url="https://github.com/sindresorhus/make-dir/issues/28" data-hovercard-type="pull_request" data-hovercard-url="/sindresorhus/make-dir/pull/28/hovercard" href="https://urls.greenkeeper.io/sindresorhus/make-dir/pull/28">#28</a>) <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/sindresorhus/make-dir/commit/b5a98efbe37afa91b02c3a62cb0ad0c14f03cc87/hovercard" href="https://urls.greenkeeper.io/sindresorhus/make-dir/commit/b5a98efbe37afa91b02c3a62cb0ad0c14f03cc87"><tt>b5a98ef</tt></a></li> </ul> <p><a class="commit-link" href="https://urls.greenkeeper.io/sindresorhus/make-dir/compare/v3.0.2...v3.1.0"><tt>v3.0.2...v3.1.0</tt></a></p> </details>
<details> <summary>Commits</summary> <p>The new version differs by 3 commits.</p> <ul> <li><a href="https://urls.greenkeeper.io/sindresorhus/make-dir/commit/6d029fe1f75f1a02fcdd7a67f34eadf0941a424f"><code>6d029fe</code></a> <code>3.1.0</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/make-dir/commit/b5a98efbe37afa91b02c3a62cb0ad0c14f03cc87"><code>b5a98ef</code></a> <code>Stop using deprecated <code>process.umask()</code> (#28)</code></li> <li><a href="https://urls.greenkeeper.io/sindresorhus/make-dir/commit/960ecf1ac7f5dd26b012dd867d5f81b80775efd9"><code>960ecf1</code></a> <code>Fix readme typo (#26)</code></li> </ul> <p>See the <a href="https://urls.greenkeeper.io/sindresorhus/make-dir/compare/66ba0d9def1b32054bbb94eaeb27a345e35abdd7...6d029fe1f75f1a02fcdd7a67f34eadf0941a424f">full diff</a></p> </details>
<details> <summary>FAQ and help</summary>
There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper. </details>
Your Greenkeeper bot :palm_tree:
pr closed time in 7 days
PR closed keithamus/sort-package-json
☝️ Important announcement: Greenkeeper will be saying goodbye 👋 and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io
The devDependency semantic-release was updated from 17.0.5 to 17.0.7.
This version is not covered by your current version range.
If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
Publisher: semantic-release-bot License: MIT
<details> <summary>Release Notes for v17.0.7</summary>
<h2><a href="https://urls.greenkeeper.io/semantic-release/semantic-release/compare/v17.0.6...v17.0.7">17.0.7</a> (2020-04-21)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>package:</strong> update marked to version 1.0.0 (<a href="https://urls.greenkeeper.io/semantic-release/semantic-release/issues/1534" data-hovercard-type="pull_request" data-hovercard-url="/semantic-release/semantic-release/pull/1534/hovercard">#1534</a>) (<a href="https://urls.greenkeeper.io/semantic-release/semantic-release/commit/d64db31e7670c394554246b9d686997c3e2c046b">d64db31</a>)</li> </ul> </details>
<details> <summary>Commits</summary> <p>The new version differs by 3 commits.</p> <ul> <li><a href="https://urls.greenkeeper.io/semantic-release/semantic-release/commit/d64db31e7670c394554246b9d686997c3e2c046b"><code>d64db31</code></a> <code>fix(package): update marked to version 1.0.0 (#1534)</code></li> <li><a href="https://urls.greenkeeper.io/semantic-release/semantic-release/commit/2322a7028fc6a5b17b1de50c1cc236d5640ceeda"><code>2322a70</code></a> <code>build(deps): update got to version 11.0.0 (#1533)</code></li> <li><a href="https://urls.greenkeeper.io/semantic-release/semantic-release/commit/431d571a7b7284b2029a55da68a44c65d7c16451"><code>431d571</code></a> <code>fix: adapt for semver to version 7.3.2 (part II) (#1530)</code></li> </ul> <p>See the <a href="https://urls.greenkeeper.io/semantic-release/semantic-release/compare/0363790b8a5f91a8c95fc6905e3e20305db7c539...d64db31e7670c394554246b9d686997c3e2c046b">full diff</a></p> </details>
<details> <summary>FAQ and help</summary>
There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper. </details>
Your Greenkeeper bot :palm_tree:
pr closed time in 7 days
PR closed keithamus/sort-package-json
☝️ Important announcement: Greenkeeper will be saying goodbye 👋 and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io
The devDependency ava was updated from 3.5.1 to 3.7.1.
This version is not covered by your current version range.
If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
Publisher: novemberborn License: MIT
<details> <summary>Release Notes for 3.7.1</summary>
<ul> <li>Support parallel runs that do not need to run test files, courtesy of <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/micaelmbagira/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://urls.greenkeeper.io/micaelmbagira">@micaelmbagira</a> <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/avajs/ava/commit/26c8326baf298d205d19682388259a666c93f640/hovercard" href="https://urls.greenkeeper.io/avajs/ava/commit/26c8326baf298d205d19682388259a666c93f640"><tt>26c8326</tt></a></li> </ul> <p><a class="commit-link" href="https://urls.greenkeeper.io/avajs/ava/compare/v3.7.0...v3.7.1"><tt>v3.7.0...v3.7.1</tt></a></p> </details>
<details> <summary>Commits</summary> <p>The new version differs by 18 commits.</p> <ul> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/3c0fc03cf3374a718dd26cc03fd6468319ac6d03"><code>3c0fc03</code></a> <code>3.7.1</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/26c8326baf298d205d19682388259a666c93f640"><code>26c8326</code></a> <code>Support parallel runs that do not need to run test files</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/7eb23dddcf5a87eb3d371473286a5cce9b246b8f"><code>7eb23dd</code></a> <code>Remove now unnecessary <code>finishPromised()</code> from lib/test.js</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/276c16afc85bddc2c68592a002a96eb4cf3521cc"><code>276c16a</code></a> <code>Use HTTPS links</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/18aeac64db2711d37853175b5e8dc1fd72c66d2a"><code>18aeac6</code></a> <code>3.7.0</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/dce14c6719ebc6d67fa8e23ca02931d33520b5fa"><code>dce14c6</code></a> <code>Update dependencies</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/fc93098219f14a09cf435bbe757dfbe38a78d4c8"><code>fc93098</code></a> <code>Test our type definitions with multiple TS versions</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/cb5f9f70879ee549837c31e577e01f87970164ed"><code>cb5f9f7</code></a> <code>Expose snapshot directory through test.meta</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/447d37153b5af9139c45cf5b0fd97ad92bea0c14"><code>447d371</code></a> <code>3.6.0</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/886b4d7f2d4d7a56e0dccb24e70bf96d22c39d69"><code>886b4d7</code></a> <code>Rebuild lockfile</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/1f59b052d2be35699c39802003e67d75928f4828"><code>1f59b05</code></a> <code>Dependency updates</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/489b13e0be3c0ba9717c3c0eaf1ee86c480be3f5"><code>489b13e</code></a> <code>Fix TypeScript documentation for t.try()</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/4bf64d048e203bb4cbf3b640f901cfd17a92cda9"><code>4bf64d0</code></a> <code>Remove link to previously removed recipe</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/8f312c0f2c978ba39baae0f701015d79af18cbde"><code>8f312c0</code></a> <code>Add t.passed to execution contexts</code></li> <li><a href="https://urls.greenkeeper.io/avajs/ava/commit/ede4f322b4fa6263c8ae14ec04282ab06bb0afd4"><code>ede4f32</code></a> <code>Fix typo in endpoint testing recipe</code></li> </ul> <p>There are 18 commits in total.</p> <p>See the <a href="https://urls.greenkeeper.io/avajs/ava/compare/5d791707bff5586aaeffbf47fa36fd60a0bacf61...3c0fc03cf3374a718dd26cc03fd6468319ac6d03">full diff</a></p> </details>
<details> <summary>FAQ and help</summary>
There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper. </details>
Your Greenkeeper bot :palm_tree:
pr closed time in 7 days
pull request commentkeithamus/deno-protod
Part of the guarantee of this project is I'd like it to generate files that pass deno fmt. We should adapt the generator to fix these failings. It looks like sort order has changed.
comment created time in 8 days
issue commentkeithamus/sort-package-json
Leave conditional exports alone
PRs welcome!
comment created time in 8 days
created tagkeithamus/deno-protoc-parser
Parse Google Protocol Buffer DSL into an AST, which can be converted into JSON or back into the Protocol Buffer DSL.
created time in 10 days
push eventkeithamus/deno-protoc-parser
commit sha 473cd5c90f6db074039d22a776cc758c97c8d0a0
fix(Extend): use Type for name (#5)
push time in 10 days
PR merged keithamus/deno-protoc-parser
Missed this in https://github.com/keithamus/deno-protoc-parser/pull/4.
pr closed time in 10 days
created tagkeithamus/deno-protoc-parser
Parse Google Protocol Buffer DSL into an AST, which can be converted into JSON or back into the Protocol Buffer DSL.
created time in 11 days
push eventkeithamus/deno-protoc-parser
commit sha fc38587ba1d761a278203cce3ed05ce7345e401c
fix: create Type node to parse field types * Fix Option parser * deno fmt * [email protected] * implement Type.parse * fix tests * add test
push time in 11 days
PR merged keithamus/deno-protoc-parser
The scanner consumes too much: https://github.com/keithamus/deno-protoc-parser/runs/1130944246
My proposal:
- Change the definition of
isIdentto match onlyidentandfullIdent - Add a class for parsing type names, including user-defined ones
pr closed time in 11 days
push eventkeithamus/deno-protoc-parser
commit sha c208461d13e35bb7e0faa18233d43f26394ad6cd
test: remove erroneous {write:true}
push time in 13 days
pull request commentkeithamus/deno-protoc-parser
testFile takes {write:true} as a second argument so you can do snapshot style testing so change these https://github.com/keithamus/deno-protoc-parser/blob/8e3ab1800bb019607dcfd949666761803d1e61da/proto_test.ts#L17-L36
You'll need to manually write a test for just the Type node though.
comment created time in 13 days
pull request commentkeithamus/deno-protoc-parser
Yes, right. That seems reasonable. If the current token is not a desired token, advance the scanner and expect the next token to be a desired one, otherwise fail.
comment created time in 13 days
pull request commentkeithamus/deno-protoc-parser
MapField.parse does everything right. It expects a comma token. Type#parse can now be something like:
if (scanner.currentToken === null) await scanner.scan()
let ident = ""
while (true) {
if ((scanner.currentToken !== Token.ident) || (if (scanner.currentToken === Token.token && scanner.contents === ".")) break
ident += scanner.contents
}
if (!ident) throw new Error(`expected an ident or something`)
comment created time in 13 days
pull request commentkeithamus/deno-protoc-parser
Leading dots are acceptable, no? So we can check against various token types?
I trust you to make the right choices here, though!
comment created time in 13 days
pull request commentkeithamus/deno-protoc-parser
Yes exactly
comment created time in 14 days
pull request commentkeithamus/deno-protoc-parser
@seishun I've released v0.2.0 of the Scanner (https://github.com/keithamus/deno-scanner/releases/tag/v0.2.0) which adds currentToken that reflects the last scanned token type. This PR can now be changed to check scanner.currentToken and scanner.contents which should solve this problem.
comment created time in 18 days
created tagkeithamus/deno-scanner
Take a Deno.Reader and perform Lexical Analysis/Tokenization on it, returning a stream of tokens.
created time in 18 days
push eventkeithamus/deno-scanner
commit sha 7e1c17ae883f0ede214e8b41c6efcc2fcc40a916
chore: upgrade deno
commit sha 7b18adb3ecb8d1243556949f97bafbdcb82445fb
feat: add support for `currentToken` property
commit sha 6030f3fe4f450fda95b8b94426a808c333e7d0e0
style: deno fmt
push time in 18 days
pull request commentgithub/hotkey
Use indexOf to check several types
Hey @Link2Twenty thanks for the issue!
What would be the justification for merging this? I'm not sure it offers readability improvements, and without benchmarks to measure we do not know if it faster (my hunch is that it isn't).
comment created time in 19 days
pull request commentkeithamus/deno-protoc-parser
@seishun all Nodes are built on the premise that scanner could (or could not) contain the previous token. It's a bit of tech debt really. I think an ideal solution is to add a lookahead/peek or a rewind to https://github.com/keithamus/deno-scanner and refactor this code to use that.
comment created time in 20 days
Pull request review commentkeithamus/deno-protoc-parser
export class MapField extends ParseNode { keyType: KeyType; constructor( keyType: KeyType | keyof typeof KeyType,
Should keyType also be a type? Perhaps the Type class can have a method like isBaseType or something?
comment created time in 20 days
pull request commentchaijs/pathval
fix: 🐛 fix prototype pollution
The README warning was not merged, as no one has approved it yet (it's sitting here: https://github.com/chaijs/pathval/pull/57).
I'd like to hear from other members of @chaijs/core about this - perhaps @meeber or @lucasfcosta?
comment created time in a month
pull request commentdavidmerfield/randomColor
This looks great!
@davidmerfield this would be great to merge and release with the ES module changes ;).
comment created time in a month
pull request commentchaijs/pathval
fix: 🐛 fix prototype pollution
Hey @AdamGold thanks for making this PR!
I remain unconvinced this is really a security issue. pathval is basically a library implementing = and as such anything you can do with = you can do with pathval.
Additionally, if we were to consider this a security issue, where does the line get drawn? constructor,prototype, & __proto__ are just psuedo protocols like .then or .toString, do we also need to guard against those? Should we guard against methods a user might call, such as .map? It is an intrinsic part of the language that you need to take care that values you pass to functions can be mutated.
See also https://github.com/chaijs/pathval/pull/57
comment created time in a month
issue commentjs-reporters/js-reporters
`todo` property on assertions feels incorrect
@Krinkle the desire is the next major version of Chai (v5) will implement 3.5 Assertion events as part of the CRI. Any failed assertion will emit an assertion event (and if there are no listeners to that event it'll throw). In a CRI world, I would expect assertion library agnostic runners such as Mocha to simply reflect events coming from assertion libraries like Chai - in other words they wouldn't create Assertion event objects, merely listen to the assertion libraries events and re-dispatch them on their own event bus.
Although I'm not an author of a test runner library, I would imagine for uncaught non-assert runtime errors, marking the TestEnd event as failed would be sufficient. Perhaps it should be allowed that errors is an Array<Assertion | Error> meaning that non-assertion errors can be added to the errors property? This is drifting from the topic though.
comment created time in a month
push eventgithub/eslint-plugin-github
commit sha 0fa30183cb009ced3f918ccb97f988170a6c1615
docs(no-query-selector-lib): add docs for rule
push time in a month
create barnchgithub/eslint-plugin-github
branch : feat-no-query-selector-lib-add-query-selector-lint-rule
created branch time in a month
issue commentjs-reporters/js-reporters
`todo` property on assertions feels incorrect
@keithamus Could you elaborate on why Chai can't know about this state?
Chai is an assertion library, not a test runner. It has no knowledge of the test runner under execution; it could be jest, ava, mocha, even QUnit. The only way for Chai to know if a test is todo is for users to somehow pass that state to it on a per-assertion basis. Chai is essentially just a bag of functions that throw errors if the given object does not meet expectations.
comment created time in a month
PR opened mkay581/cookie-store
pr created time in a month
create barnchkeithamus/cookie-store
branch : fix-allow-setting-with-options
created branch time in a month
push eventkeithamus/cookie-store
commit sha a67d0c88dc94cf1ecef1a28e0278f6d44f7524c9
tests: add tests covering undefined cases
push time in a month