A small utility to generate millions or billions of sample CSV data
A better download utility for gulp
atomicpages/codemirror-pastel-on-dark 2
CodeMirror Pastel On Dark theme ported from ACE editor
atomicpages/docusaurus-plugin-react-docgen-typescript 1
A tiny plugin that integrates react-docgen-typescript with docusaurus
atomicpages/all-contributors-cli 0
Tool to help automate adding contributor acknowledgements according to the all-contributors specification ✨
🐜 A UI Design Language
🏗 A collection of official & community @pika/pack build plugins
My cheatsheets
In-browser code editor
atomicpages/cypress-react-unit-test 0
Unit test React components using Cypress
push eventatomicpages/react-docgen-typescript-cli
commit sha 61f365441347c6b308a75aff1a28fb28b621b300
2.0.0
push time in 8 days
push eventatomicpages/react-docgen-typescript-cli
commit sha cba59eee7417f6fc250acaf8eda573cfb1ac72f2
feat(:boom:) renaming
push time in 8 days
push eventatomicpages/semantic-ui-webpack-starter
commit sha 7562823dd5cce72bec048df0f126de442acef2c1
Fixing bad code block
push time in 13 days
push eventatomicpages/semantic-ui-webpack2-boilerplate
commit sha 4689d8d56685f525dff59b6857e317394c61edb0
feat(:boom:) webpak 5 - Upgrading to webpack 5 - Addressing security issues - Simplifying steup steps - Simplifying webpack config - and more...
push time in 13 days
push eventatomicpages/semantic-ui-webpack2-boilerplate
commit sha 4a10cbb9613ca72be847e6f3e60152b28dd62a9c
2.0.0
push time in 13 days
issue commentgatsbyjs/gatsby
Is [partial] sequential plugin execution possible?
@pieh thanks for the reply! I was really probing to see if there was an option to synchronously execute (some or all) plugins.
Of course! I'm building a typescript plugin for Gatsby, but unlike other tools where we can use loadNodeContent the ts compiler wants file paths
comment created time in 14 days
push eventatomicpages/pretty-checkbox
commit sha 580628dbea9f8874f3589839a6d0ce38653b2e4a
:memo:
push time in 15 days
push eventatomicpages/pretty-checkbox
commit sha cdcef7b02e7f7c84e10a954d49345199645a6baa
:memo: Adding docsearch to site
push time in 15 days
issue openedgatsbyjs/gatsby
Is [partial] sequential plugin execution possible?
<!-- To make it easier for us to help you, please include as much useful information as possible.
Useful Links:
- Documentation: https://www.gatsbyjs.org/docs/
- Contributing: https://www.gatsbyjs.org/contributing/
Gatsby has several community support channels, try asking your question on:
- Discord: https://gatsby.dev/discord
- Twitter: https://twitter.com/gatsbyjs
Before opening a new issue, please search existing issues https://github.com/gatsbyjs/gatsby/issues -->
Summary
How can you wait for createNode from one plugin to complete before starting the execution of another plugin?
Relevant information
In my case, I want to wait for gatsby-source-filesystem to complete before starting so I have the full list of sourced files that I can delegate to another plugin for post-processing. I found a few leads in the docs like getNodesByType or getNodes but the issue is the map series which allows for parallel execution of all the plugins.
- Is is possible to wait for one plugin to complete before starting the execution of another?
- If not, can I make a GraphQL query inside of
onCreateNode? Note: I'm guessing no since schemas are generated after this lifecycle hook
Unfortunately the plugin needs access to the list of files and ideally I'd like to source them from gatsby-source-filesystem to avoid adding something like globby
Other wild ideas included:
-
Seeing is there's an event emitted I can wait for
-
Using something like
globbyand let the user of the plugin specify where to read files from:{ resolve: `my-plugin`, options: { files: `src/**/*` } }
File contents
gatsby-config.js:
module.exports = {
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: "pages",
path: `${__dirname}/src/pages/`,
},
},
"my-plugin"
]
};
my-plugin/gatsby-node.js:
exports.onCreateNode = ({ actions }, options) => {
// do something
};
package.json: N/A <!-- Please use a code block or just leave it as is if wasn't changed -->
gatsby-node.js: N/A <!-- Please use a code block or just leave it as is if wasn't changed -->
gatsby-browser.js: N/A <!-- Please use a code block or just leave it as is if wasn't changed -->
gatsby-ssr.js: N/A <!-- Please use a code block or just leave it as is if wasn't changed -->
created time in 15 days
issue commentstyleguidist/react-docgen-typescript
ReactElement proptype becomes very verbose after parsing
@monapasan you're seeing this because React.FC is merging in types. If the components don't do anything particularly special then you can probably get away with letting tsc infer the type for you:
import React from "react";
export interface ChildrenAsStringProps {
/** I would expect this to be string */
children: string;
}
export const ChildrenAsString = ({ children }: ChildrenAsStringProps) => <div>{children}</div>;
By default ChildrenAsString will return JSX.Element.
Extra Info:
Looking at the definition of FC we see:
interface FunctionComponent<P = {}> {
(props: PropsWithChildren<P>, context?: any): ReactElement<any, any> | null;
propTypes?: WeakValidationMap<P>;
contextTypes?: ValidationMap<any>;
defaultProps?: Partial<P>;
displayName?: string;
}
Following PropsWithChildren we see:
type PropsWithChildren<P> = P & { children?: ReactNode };
& merges the types together so your P becomes this when expanded:
{ children: string; } & { children?: ReactNode };
We're seeing all that extra junk in there because of ReactNode:
type ReactText = string | number;
type ReactChild = ReactElement | ReactText;
interface ReactNodeArray extends Array<ReactNode> {}
type ReactFragment = {} | ReactNodeArray;
type ReactNode = ReactChild | ReactFragment | ReactPortal | boolean | null | undefined;
// ^ ^
comment created time in 22 days
issue closedgregberge/svgr
Rollup svgr + url plugin not exporting ReactComponent
In the docs there's an example of the rollup url plugin + @svgr/rollup, but I can't seem to get it working properly. I put together a gist to demonstrate the issue. I'll summarize below:
- SVGR version - 5.4.0
- Rollup Version: 2.23.1
Rollup Config:
import svgr from '@svgr/rollup';
import url from '@rollup/plugin-url';
export default {
input: './src/index.js',
output: {
file: './build/index.js',
format: 'esm'
},
external: ['react'],
plugins: [
url(),
svgr(),
]
}
Index:
import air_play from './icons/airplay.svg';
export { air_play };
When I build I'm seeing this:
import 'react';
var airplay = "data:image/svg+xml,%3Csvg%20%20xmlns%3D%22..."; // clipped text
export { airplay as air_play };
Based on the docs I'd expect to see something like:
import { createEement } from 'react';
function SvgAirPlay() { ... } // generated from svgr
var airplay = "data:image/svg+xml,%3Csvg%20%20xmlns%3D%22..."; // clipped text
export default airplay;
export { SvgAirPlay as ReactComponent };
closed time in 23 days
atomicpagesissue commentgregberge/svgr
Rollup svgr + url plugin not exporting ReactComponent
Nvm, I was being dumb 🤦 . You need to use it like this:
export { ReactComponent as Alert, default as alert_icon } from './src/icons/alert.svg';
or, if you don't wan to use export from, then:
import { ReactComponent as Alert }, alert_icon from './src/icons/alert.svg';
export { Alert, alert_icon };
If you want to mirror the way webpack behaves then you can do:
import { ReactComponent as Alert, default as alert_icon } from './src/icons/alert.svg';
export { Alert };
export default { alert_icon };
Thanks for reading 😥
comment created time in 23 days
issue commentgregberge/svgr
Rollup svgr + url plugin not exporting ReactComponent
I did some more research and it looks like named exports are getting clobbered.
What is Working
Code generation is working as expected. Using the example from my first comment, we see:
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import * as React from "react";
var _ref = /*#__PURE__*/React.createElement("path", {
fill: "...,
d: "..."
});
var _ref2 = /*#__PURE__*/React.createElement("path", {d: "..."});
function SvgAlert(props) {
return /*#__PURE__*/React.createElement("svg", _extends({
viewBox: "0 0 20 20"
}, props), _ref, _ref2);
}
export default "data:image/svg+xml,%3C%3Fxml...";
export { SvgAlert as ReactComponent };
I can see the whole flow from rollup's transform function works as expected. When we get to module generation I see the generated JS file isn't getting written to disk. When rollup parses the entry module all the good work svgr has done gets clobbered.
comment created time in 23 days
startederictooth/react-use-pagination
started time in 24 days
PR closed atomicpages/pretty-checkbox-react
Bumps @types/react from 16.9.49 to 16.9.50. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 1899883c8b456ccd3b7f9687f5a19ebc299aa073
docs(:pencil:) docs - Adding testing docs - Adding data-testid removal in 1.x migration guide - Adding sanity test for label click
push time in a month
created tagatomicpages/pretty-checkbox-react
A tiny react wrapper around pretty-checkbox
created time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 9afc65e073d60665665f0e9158df378214a354ac
3.0.3
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 8f338c8d9f7adc601df64ed401e8c9cb616b4b6d
refactor(:label:) - Exporting SwitchProps - Better code completion for type on Switch - Dependency updates
push time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps ts-jest from 26.3.0 to 26.4.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md">ts-jest's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/kulshekhar/ts-jest/compare/v26.4.0...v26.4.1">26.4.1</a> (2020-09-29)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>utils:</strong> <code>MaybeMockedConstructor</code> returns T (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1976">#1976</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/b7712b2055d8f32dd97999de1d94e8f3515d79e8">b7712b2</a>)</li> <li><strong>utils:</strong> revert <code>path.join</code> and add check on prefix ends with <code>/</code> (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1989">#1989</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/3d9035bd70dc087d4c5a943bb2fe2af2d0822875">3d9035b</a>), closes <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1982">#1982</a></li> </ul> <h1><a href="https://github.com/kulshekhar/ts-jest/compare/v26.3.0...v26.4.0">26.4.0</a> (2020-09-20)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>utils:</strong> <code>pathsToModuleNameMapper</code> resolve path mapping with <code>path.join</code> (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1969">#1969</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/81fce4c090811a1cc071579a99dc193fb976b117">81fce4c</a>), closes <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1968">#1968</a></li> <li>set minimum <code>jest-util</code> version at 26.1.0 (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1914">#1914</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/f00414c6fbf8fc5413fd33d0a271c4a164c50d45">f00414c</a>), closes <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1913">#1913</a></li> </ul> <h3>Features</h3> <ul> <li><strong>config:</strong> allow custom options in custom transformers (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1966">#1966</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/1452ce4afcd36049cddd0db0861f1ac26b66f8c1">1452ce4</a>), closes <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1942">#1942</a></li> <li><strong>transformers:</strong> support hoisting when using <code>@jest/globals</code> (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1937">#1937</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/0e5be1597d755fed11869f67df05eeea54b3106f">0e5be15</a>), closes <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1593">#1593</a></li> <li><strong>transformers:</strong> add <code>path-mapping</code> custom AST transformer (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1927">#1927</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/3325186b6e55f41eb9bf7d81e092a358fc402b13">3325186</a>)</li> </ul> <h3>Performance Improvements</h3> <ul> <li><strong>compiler:</strong> remove <code>createProgram</code> for <code>isolatedModules: true</code> to boost startup speed (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1941">#1941</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/dd8453401840862186f991e2d514e0d328a67987">dd84534</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/kulshekhar/ts-jest/commit/2caeaf4747cc0b61ac503b9b50b08221b261075b"><code>2caeaf4</code></a> chore(release): 26.4.1 (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1991">#1991</a>)</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/3d9035bd70dc087d4c5a943bb2fe2af2d0822875"><code>3d9035b</code></a> fix(utils): revert <code>path.join</code> and add check on prefix ends with <code>/</code> (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1989">#1989</a>)</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/dcd836dcd95853c2ba58b8951823b695450fab5a"><code>dcd836d</code></a> build(deps-dev): bump eslint-plugin-jsdoc from 30.6.0 to 30.6.1 (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1990">#1990</a>)</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/39fc887bdcb3fdda2456b27c5a2ecaf8fa25cb68"><code>39fc887</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1988">#1988</a> from kulshekhar/dependabot/npm_and_yarn/eslint-7.10.0</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/d2b4a2e768d737a6ea593be37968d4cf628591ba"><code>d2b4a2e</code></a> build(deps-dev): bump eslint from 7.9.0 to 7.10.0</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/a876a3de632aa50a369c15ecf92beebc4644cbc5"><code>a876a3d</code></a> build(deps-dev): bump eslint-config-prettier from 6.11.0 to 6.12.0 (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1987">#1987</a>)</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/09470dde421f7c5c2e00819248a4257f2b9930bd"><code>09470dd</code></a> build(deps-dev): bump eslint-plugin-jsdoc from 30.5.1 to 30.6.0 (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1986">#1986</a>)</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/5b2334356930081410d8f93bc578c27a8c3bd8c7"><code>5b23343</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1983">#1983</a> from kulshekhar/dependabot/npm_and_yarn/types/babel_...</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/e6addd2e7201911bf8d2c20dc85f430043e381a4"><code>e6addd2</code></a> build(deps-dev): bump @types/babel__core from 7.1.9 to 7.1.10</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/6d3ef4408293a322f641d17757a99b676238a648"><code>6d3ef44</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1981">#1981</a> from kulshekhar/dependabot/npm_and_yarn/types/yargs-...</li> <li>Additional commits viewable in <a href="https://github.com/kulshekhar/ts-jest/compare/v26.3.0...v26.4.1">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps @testing-library/react-hooks from 3.4.1 to 3.4.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/react-hooks-testing-library/releases">@testing-library/react-hooks's releases</a>.</em></p> <blockquote> <h2>v3.4.2</h2> <h2>Changes</h2> <ul> <li>Update minimum TS definition dependency (<code>@types/testing-library__react-hooks</code>) version (<a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/453">#453</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/90b8c5ca0cbfcf9d1c02898fd88a8765521a138e"><code>90b8c5c</code></a> 3.4.2</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/ce5e3ffddae2553c479888530121d00405c00af8"><code>ce5e3ff</code></a> Bump package-lock</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/daef84a1dbbc1c3b067f3cd9a6dcac100130cbc3"><code>daef84a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/458">#458</a> from testing-library/renovate/eslint-7.x</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/bb02993dc8b9493a6c8bc885d60d1bac8b4795da"><code>bb02993</code></a> chore(deps): update dependency eslint to v7.10.0</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/11351a59c29e79773df0018bd7ba96c3a8d4d123"><code>11351a5</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/457">#457</a> from testing-library/renovate/eslint-config-prettier-6.x</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/b6062d306e64b134af2411627a6084cd3efc4665"><code>b6062d3</code></a> chore(deps): update dependency eslint-config-prettier to v6.12.0</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/9ba87d39746a8d8dea94f3524f52c084395b8adb"><code>9ba87d3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/454">#454</a> from testing-library/renovate/all-contributors-cli-6.x</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/d366c949bcd473b89d98e1d6d975599136ee06e2"><code>d366c94</code></a> chore(deps): update dependency all-contributors-cli to v6.17.4</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/e519ff3ad02cbb17f0fb38388a87fb2074bc2295"><code>e519ff3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/453">#453</a> from cliffzhaobupt/pr/update-types-dependency-version</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/625b2fb863b8d951594ce63b7707697e07eeb3cc"><code>625b2fb</code></a> chore: update <code>@types/testing-library__react-hooks</code> dependency version</li> <li>Additional commits viewable in <a href="https://github.com/testing-library/react-hooks-testing-library/compare/v3.4.1...v3.4.2">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps eslint from 7.9.0 to 7.10.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/releases">eslint's releases</a>.</em></p> <blockquote> <h2>v7.10.0</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/6919fbb83f86552b0f49ae749da866e4edc7c46a"><code>6919fbb</code></a> Docs: Clarify that ignorePattern should be a string (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13029">#13029</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13718">#13718</a>) (Brandon Mills)</li> <li><a href="https://github.com/eslint/eslint/commit/07d9bea7c6f953e8f754afffc9752edcee799431"><code>07d9bea</code></a> Update: Add ignorePattern to no-inline-comments (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13029">#13029</a>) (Edie Lemoine)</li> <li><a href="https://github.com/eslint/eslint/commit/d79bbe982930b53358d34ad91cc6e5eaac8ddede"><code>d79bbe9</code></a> Docs: fix typo (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13717">#13717</a>) (Alexander Liu)</li> <li><a href="https://github.com/eslint/eslint/commit/9b8490ee6391c986b1314540a92b71d8c1e0efc4"><code>9b8490e</code></a> Docs: grammatical error (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13687">#13687</a>) (rajdeep)</li> <li><a href="https://github.com/eslint/eslint/commit/cb44e93f4780e925a75a68ce2f7f6d065b5f756c"><code>cb44e93</code></a> Fix: prefer-destructuring invalid autofix with computed property access (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13704">#13704</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/46c73b159a5ceed2f7f26f254fd97e459fb0e81a"><code>46c73b1</code></a> Upgrade: [email protected] (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13716">#13716</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/b7b12ba0bd4e9c66883f11e97de8ed84b600cdaa"><code>b7b12ba</code></a> Chore: Move comment to make tests more organized (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13707">#13707</a>) (Yusuke Tanaka)</li> <li><a href="https://github.com/eslint/eslint/commit/51674a4113a1ca877094606bbf4938ab06cc1aad"><code>51674a4</code></a> Docs: Add missing quotes (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13714">#13714</a>) (Lucio Paiva)</li> <li><a href="https://github.com/eslint/eslint/commit/7c34a982aaf93a02348f56c9ce887c7dcf51b5bd"><code>7c34a98</code></a> Chore: remove mistakenly added file (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13710">#13710</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/30b76c9a13fae3dff59f7db406d6c66f11152973"><code>30b76c9</code></a> Docs: Clarify package.json requirement in Getting Started (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13549">#13549</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13696">#13696</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044560dcc74db98b28e293da2e2f3b41ecbf5884"><code>044560d</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/54000d13f27d5255851b5ac0606ad027e2b8d331"><code>54000d1</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/blob/master/CHANGELOG.md">eslint's changelog</a>.</em></p> <blockquote> <p>v7.10.0 - September 26, 2020</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/6919fbb83f86552b0f49ae749da866e4edc7c46a"><code>6919fbb</code></a> Docs: Clarify that ignorePattern should be a string (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13029">#13029</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13718">#13718</a>) (Brandon Mills)</li> <li><a href="https://github.com/eslint/eslint/commit/07d9bea7c6f953e8f754afffc9752edcee799431"><code>07d9bea</code></a> Update: Add ignorePattern to no-inline-comments (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13029">#13029</a>) (Edie Lemoine)</li> <li><a href="https://github.com/eslint/eslint/commit/d79bbe982930b53358d34ad91cc6e5eaac8ddede"><code>d79bbe9</code></a> Docs: fix typo (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13717">#13717</a>) (Alexander Liu)</li> <li><a href="https://github.com/eslint/eslint/commit/9b8490ee6391c986b1314540a92b71d8c1e0efc4"><code>9b8490e</code></a> Docs: grammatical error (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13687">#13687</a>) (rajdeep)</li> <li><a href="https://github.com/eslint/eslint/commit/cb44e93f4780e925a75a68ce2f7f6d065b5f756c"><code>cb44e93</code></a> Fix: prefer-destructuring invalid autofix with computed property access (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13704">#13704</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/46c73b159a5ceed2f7f26f254fd97e459fb0e81a"><code>46c73b1</code></a> Upgrade: [email protected] (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13716">#13716</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/b7b12ba0bd4e9c66883f11e97de8ed84b600cdaa"><code>b7b12ba</code></a> Chore: Move comment to make tests more organized (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13707">#13707</a>) (Yusuke Tanaka)</li> <li><a href="https://github.com/eslint/eslint/commit/51674a4113a1ca877094606bbf4938ab06cc1aad"><code>51674a4</code></a> Docs: Add missing quotes (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13714">#13714</a>) (Lucio Paiva)</li> <li><a href="https://github.com/eslint/eslint/commit/7c34a982aaf93a02348f56c9ce887c7dcf51b5bd"><code>7c34a98</code></a> Chore: remove mistakenly added file (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13710">#13710</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/30b76c9a13fae3dff59f7db406d6c66f11152973"><code>30b76c9</code></a> Docs: Clarify package.json requirement in Getting Started (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13549">#13549</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13696">#13696</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044560dcc74db98b28e293da2e2f3b41ecbf5884"><code>044560d</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/54000d13f27d5255851b5ac0606ad027e2b8d331"><code>54000d1</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/1df7fa69967cc514a541c363eb52d845e1b1d8f0"><code>1df7fa6</code></a> 7.10.0</li> <li><a href="https://github.com/eslint/eslint/commit/291142f4b739b343ab4fb48bf5bc4d7b19513178"><code>291142f</code></a> Build: changelog update for 7.10.0</li> <li><a href="https://github.com/eslint/eslint/commit/6919fbb83f86552b0f49ae749da866e4edc7c46a"><code>6919fbb</code></a> Docs: Clarify that ignorePattern should be a string (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13029">#13029</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13718">#13718</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/07d9bea7c6f953e8f754afffc9752edcee799431"><code>07d9bea</code></a> Update: Add ignorePattern to no-inline-comments (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13029">#13029</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/d79bbe982930b53358d34ad91cc6e5eaac8ddede"><code>d79bbe9</code></a> Docs: fix typo (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13717">#13717</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/9b8490ee6391c986b1314540a92b71d8c1e0efc4"><code>9b8490e</code></a> Docs: grammatical error (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13687">#13687</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/cb44e93f4780e925a75a68ce2f7f6d065b5f756c"><code>cb44e93</code></a> Fix: prefer-destructuring invalid autofix with computed property access (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13704">#13704</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/46c73b159a5ceed2f7f26f254fd97e459fb0e81a"><code>46c73b1</code></a> Upgrade: [email protected] (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13716">#13716</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/b7b12ba0bd4e9c66883f11e97de8ed84b600cdaa"><code>b7b12ba</code></a> Chore: Move comment to make tests more organized (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13707">#13707</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/51674a4113a1ca877094606bbf4938ab06cc1aad"><code>51674a4</code></a> Docs: Add missing quotes (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13714">#13714</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v7.9.0...v7.10.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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps @types/node from 14.10.1 to 14.11.2. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
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)@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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps @types/jest from 26.0.13 to 26.0.14. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps prettier from 2.1.1 to 2.1.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p>
<blockquote>
<h2>2.1.2</h2>
<p><a href="https://github.com/prettier/prettier/blob/master/CHANGELOG.md#212">🔗Changelog</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/master/CHANGELOG.md">prettier's changelog</a>.</em></p>
<blockquote>
<h1>2.1.2</h1>
<p><a href="https://github.com/prettier/prettier/compare/2.1.1...2.1.2">diff</a></p>
<h4>Fix formatting for directives in fields (<a href="https://github-redirect.dependabot.com/prettier/prettier/pull/9116">#9116</a> by <a href="https://github.com/sosukesuzuki">@sosukesuzuki</a>)</h4>
<!-- raw HTML omitted -->
<pre lang="graphql"><code># Input
type Query {
someQuery(id: ID!, someOtherData: String!): String! @deprecated @isAuthenticated
versions: Versions!
}
<h1>Prettier stable</h1>
<p>type Query {
someQuery(id: ID!, someOtherData: String!): String!
<a href="https://github.com/deprecated">@deprecated</a>
<a href="https://github.com/isAuthenticated">@isAuthenticated</a>
versions: Versions!
}</p>
<h1>Prettier master</h1>
<p>type Query {
someQuery(id: ID!, someOtherData: String!): String!
<a href="https://github.com/deprecated">@deprecated</a>
<a href="https://github.com/isAuthenticated">@isAuthenticated</a>
versions: Versions!
}</p>
<p></code></pre></p>
<h4>Fix line breaks for CSS in JS (<a href="https://github-redirect.dependabot.com/prettier/prettier/pull/9136">#9136</a> by <a href="https://github.com/sosukesuzuki">@sosukesuzuki</a>)</h4>
<!-- raw HTML omitted -->
<pre lang="js"><code>// Input
styled.div// prettier-ignore @media (aaaaaaaaaaaaa) { z-index: ${(props) => (props.isComplete ? '1' : '0')}; };
styled.div${props => getSize(props.$size.xs)} ${props => getSize(props.$size.sm, 'sm')} ${props => getSize(props.$size.md, 'md')};
<p></tr></table> ... (truncated)
</code></pre></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/prettier/prettier/commit/8eb8f9ed2dc5eb1c3e6f787e5a5e6fe68af2b8d1"><code>8eb8f9e</code></a> Release 2.1.2</li>
<li><a href="https://github.com/prettier/prettier/commit/f75844a453beb6cb16791c14e5ff738c02d0b4df"><code>f75844a</code></a> Fix changelog</li>
<li><a href="https://github.com/prettier/prettier/commit/9153bf20ac2dfcd525b5dd3f3b37d9b6005d20bc"><code>9153bf2</code></a> Build(deps): Bump yaml-unist-parser from 1.3.0 to 1.3.1 (<a href="https://github-redirect.dependabot.com/prettier/prettier/issues/9169">#9169</a>)</li>
<li><a href="https://github.com/prettier/prettier/commit/ec1b4193079a625633dd0dc86f9a9217a3ad9d7e"><code>ec1b419</code></a> YAML: Fix printing doubles a blank line before a comment (<a href="https://github-redirect.dependabot.com/prettier/prettier/issues/9143">#9143</a>)</li>
<li><a href="https://github.com/prettier/prettier/commit/ab9474eacc9c883e588ef2500c6230057328ade5"><code>ab9474e</code></a> Fix line breaks for CSS in JS (<a href="https://github-redirect.dependabot.com/prettier/prettier/issues/9136">#9136</a>)</li>
<li><a href="https://github.com/prettier/prettier/commit/d5da779cb195443c935fd7171f5e81141e2f62e5"><code>d5da779</code></a> GraphQL: Fix formatting for directives in fields (<a href="https://github-redirect.dependabot.com/prettier/prettier/issues/9116">#9116</a>)</li>
<li><a href="https://github.com/prettier/prettier/commit/a8363197118e530d948978da6e5c414a765ba9c0"><code>a836319</code></a> Bump Prettier dependency to 2.1.1</li>
<li>See full diff in <a href="https://github.com/prettier/prettier/compare/2.1.1...2.1.2">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
created tagatomicpages/pretty-checkbox-react
A tiny react wrapper around pretty-checkbox
created time in a month
push eventatomicpages/pretty-checkbox-react
commit sha b680e58ae4f5d1b4eefa68fd76607fb5afcd2790
3.0.2
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 93269279738a0f69c54017e48c3c6de717550beb
fix(:bug) Icons with selectors that contain `type` as a substring weren't getting cloned. Moving a word boundary search
push time in a month
issue openederictooth/react-accessible-form
Type error when using ForwardRefExoticComponent
Passing a custom component to as if it's of type ExoticComponent results in a typescript error:
Type 'ForwardRefExoticComponent<InputHTMLAttributes<HTMLInputElement> & RefAttributes<HTMLInputElement>>'
is not assignable to type 'FunctionComponent<{ className: string; disabled: boolean; id: string; required: boolean; }
& Record<string, unknown> & HTMLAttributes<any> & RefAttributes<any>>'
Not sure how to make this more flexible, but I suspect the issue is stemming from here:
https://github.com/erictooth/react-accessible-form/blob/bb9d539c90ce2791fdc7234ff2918423bdec914b/src/Box.type.ts#L6
This CSB demo outlines the issue
created time in a month
created tagatomicpages/pretty-checkbox-react
A tiny react wrapper around pretty-checkbox
created time in a month
push eventatomicpages/pretty-checkbox-react
commit sha b928a38a4cda89841b74ad26ecfd2506dd75bb3d
3.0.1
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 1c6bbc2b3a564517cffb443e212fa48986cb5631
build(👷) - tsc doesn't import .d.ts files so we need to move all typings to regular ol' .ts files. - removing tests from dist-src
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha b2293cd76e8096739a331aafbd2a2c35b3d0d4ae
build(:construction_worker:) - tsc doesn't import .d.ts files so we need to move all typings to regular ol' .ts files. - removing tests from dist-src
commit sha 9297273b7741a46cd60a4f62d02e132ce3051c76
Merge branch '3.0' of https://github.com/atomicpages/pretty-checkbox-react into 3.0
push time in a month
issue commentstyleguidist/react-docgen-typescript
ReactElement proptype becomes very verbose after parsing
@monapasan see propFilter. Example usage below:
const options = {
propFilter: (prop: PropItem, component: Component) => {
if (prop.parent) {
return !prop.parent.fileName.includes("@types/react"); // omit all types from @types/react
}
return true;
},
};
comment created time in a month
issue openedstyleguidist/react-docgen-typescript
Not an issue, but an idea, Allow users to pass source content of a file instead of file paths. I was poking around the ts compiler and saw transpileModule that might make this happen easily.
Happu to investigate further! LMK if this is something worthwhile for the project 👍
created time in a month
startedstyleguidist/react-docgen-typescript
started time in a month
startedjenkinsci/dark-theme-plugin
started time in a month
Easy to maintain open source documentation websites.
fork in a month
push eventatomicpages/pretty-checkbox-react
commit sha 4ff42b0b40f733b6513bdfcfe4ab680d50ce5e6e
Update on_push.yml
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 48773dc590c6dc292bdd3a96da86c2a6751be94d
Update on_push.yml
push time in a month
issue commentfacebook/docusaurus
@slorber I'd like to stake claim for this issue 😄
comment created time in a month
push eventatomicpages/pretty-checkbox-react
commit sha f01863bb33c927ea5efed27d0568ae1653160b95
Update on_push.yml
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 50c3e97c9ade3ee34f81692cb3489b3d682395a4
Updating 1.x migration guide
commit sha 48e221fe1db1a1189129f81746d3b1282df42853
Update migratig-1.x.md
commit sha f8fd64795a429b7685b2aebbf6db7a39e9cadc5b
ci(:construction_worker:) enabling coveralls
commit sha 3290a6b85b9cb5679aacbd9a62d55da1eca152dc
ci(:green_heart:)
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha f8fd64795a429b7685b2aebbf6db7a39e9cadc5b
ci(:construction_worker:) enabling coveralls
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 48e221fe1db1a1189129f81746d3b1282df42853
Update migratig-1.x.md
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 50c3e97c9ade3ee34f81692cb3489b3d682395a4
Updating 1.x migration guide
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 8cb7014d8a9288ba00f2e0a66c6ca429485402f6
Iniital commit
commit sha e6af5dfddf1beade044d637d823838257d2443bd
3.0.0-dev.0 * Fixing controlled radio error * Adding Object.is for useControlled fn * Implementing Radio * Impelemention Switch * Refining types * and more...
commit sha 33fb43fb9c747c2a2cc83e89d833e3bb329cb385
3.0.0-dev.0 * Adding unit tests * Removing eslint cypress config
commit sha 08be8a2dd4f09b389960beffa0550e48b3f83173
Forgot to commit typings
commit sha cf688a616ae676d9f6424455bf949d7f4a5f521d
3.0.0-dev.1 * Removing npmignore * Adding unit tests * Updating files * Updating playground * Adding jest-imate-snapshot config
commit sha 6e140972fde4ac6fe8346c81f56239227372c565
Fixing build
commit sha 0b9f2ca833d498dd720c6a5a965f9f6075b95e38
Updating readme and adding new workflows
commit sha fa1e95f9b1cc015273d99a565d60d1d59f79eb17
Ensuring release runs for releases and not prereleases
commit sha b8e61ce801c471c99fbfc1b188dfc19d4c3ce23c
3.0.0-dev.1
commit sha 7f7ea720c9682d62b3f0db33fb90cd559555b6a9
Starting docs
commit sha ab146466af3f1a0832407d8d816f883b29eceb43
Smol fixes - Adding more docs - Adding correct ARIA role to switch - Adding typings for CSS Modules in the playground - Squashing some type errors from ts-loader - Fixing typing issue with react-merge-refs
commit sha 87545218c72de709f46c1f26033b792f990f50d7
chore: deps + docs
commit sha 0e5ecd0381d8df37176b991a5f75a785ebd9a0eb
feat (:pencil:) adding indeterminate support - Controlled mode now supports indeterminate mode - Fixing bug in tree checkbox example - Returning state from useControlled hook - Adding react-merge-refs
commit sha 17de72bdf5d05117d00057f3393174d68fdda8ee
docs (:pencil:) docs docs docs - Upgrading docusarus - Adding docs
commit sha 26758b230f3379f301fd8551c38a872457fbd799
Docs - Adding more docs - Upgrading docusarus
commit sha fc00047620b5a75823e14fbc78b280c80b2130c5
Using correct peer dep of React+DOM
commit sha 37522daf84a5d32adbfbd21d1d0adf96a2943e0b
Adding why did you render
commit sha 97f616fcf73fc8da0a27010af703984f56e5e3b8
useIcon hook changes - Adding null check for className - Adding support for data-type attribute for function components (e.g. react-feather) modified: src/components/checkbox/Checkbox.tsx modified: src/components/checkbox/useIndeterminate.ts
commit sha ee61d870c2ad32f0c5b1c46862a4479b9e9b6db1
Removing StrictMode since it's causing issues
commit sha ebf0fc60cf7a1261dac9c3083c27f77f9b740f2f
feat(:pencil:) Adding indeterminate support - Improving type support - Adding stateful indeterminate support from useControlled hook - Adding indeterminate prop for Checkbox - Updating playground examples
push time in a month
created tagatomicpages/pretty-checkbox-react
A tiny react wrapper around pretty-checkbox
created time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 19d5c27e717e97ef49e15ea9dfe156ef598c26c6
3.0.0
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha f3561405fc075237b0ff89f497d8c3ca7de3fe04
chore(:memo:) updating README in prep for GA
push time in a month
created tagatomicpages/pretty-checkbox-react
A tiny react wrapper around pretty-checkbox
created time in a month
push eventatomicpages/pretty-checkbox-react
commit sha e1a9ba1e736b121a355c68bb7e7fd5a86bf6ccaa
3.0.0-rc.1
push time in a month
startedrlamana/docusaurus-plugin-sass
started time in a month
push eventatomicpages/pretty-checkbox-react
commit sha e2f2699a8475ac2a02f572b0861f3d0065628602
ci(:green_heart:)
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha a65af925e046a3a32582d6722c0a3fc3e7deaf60
fix(:bug:) fix isste with useIcon The else condiiton of useIcon would probbaly never execute. In addition, the optional chain of className?.includes was returning false to composite component which might lead to an error condition where a className is improeprly applied to the component
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha f0901fa9f27cc6f35857e6d7bc872feb45034569
ci adding coveralls to on_push action
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha e0e4391d99e258174140681eefa9356ae39377b5
chore(:pencil:) new issue templates
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 3a7a4d5390d7ab61e6c35da2bb1d8c4f0f473bdd
chore(:pencil:) adding contrib guide
push time in a month
issue commentfacebook/docusaurus
I ran into an issuer early on as well while trying to swizzle @docusaurus/theme-live-codeblock. I was able to solve it by using the current next version of docusaurus.
Here's a snipped of the command running fine on macOS Catalina and [email protected]
yarn run swizzle @docusaurus/theme-classic Footer
yarn run v1.22.5
$ docusaurus swizzle @docusaurus/theme-classic Footer
Success! Copied @docusaurus/theme-classic Footer to src/theme/Footer.
✨ Done in 4.88s.
comment created time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps eslint from 7.1.0 to 7.9.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/releases">eslint's releases</a>.</em></p> <blockquote> <h2>v7.9.0</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/3ca27004ece5016ba7aed775f01ad13bc9282296"><code>3ca2700</code></a> Fix: Corrected notice for invalid (:) plugin names (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13473">#13473</a>) (Josh Goldberg)</li> <li><a href="https://github.com/eslint/eslint/commit/fc5783d2ff9e3b0d7a1f9664928d49270b4a6c01"><code>fc5783d</code></a> Docs: Fix leaky anchors in v4 migration page (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13635">#13635</a>) (Timo Tijhof)</li> <li><a href="https://github.com/eslint/eslint/commit/f1d07f112be96c64dfdaa154aa9ac81985b16238"><code>f1d07f1</code></a> Docs: Provide install commands for Yarn (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13661">#13661</a>) (Nikita Baksalyar)</li> <li><a href="https://github.com/eslint/eslint/commit/29d1cdceedd6c056a39149723cf9ff2fbb260cbf"><code>29d1cdc</code></a> Fix: prefer-destructuring removes comments (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13678">#13678</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13682">#13682</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/b4da0a7ca7995435bdfc116fd374eb0649470131"><code>b4da0a7</code></a> Docs: fix typo in working with plugins docs (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13683">#13683</a>) (啸生)</li> <li><a href="https://github.com/eslint/eslint/commit/6f87db7c318225e48ccbbf0bec8b3758ea839b82"><code>6f87db7</code></a> Update: fix id-length false negatives on Object.prototype property names (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13670">#13670</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/361ac4d895c15086fb4351d4dca1405b2fdc4bd5"><code>361ac4d</code></a> Fix: NonOctalDecimalIntegerLiteral is decimal integer (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13588">#13588</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13664">#13664</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/f260716695064e4b4193337107b60401bd4b3f20"><code>f260716</code></a> Docs: update outdated link (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13677">#13677</a>) (klkhan)</li> <li><a href="https://github.com/eslint/eslint/commit/5138c913c256e4266ffb68278783af45bf70af84"><code>5138c91</code></a> Docs: add missing eslint directive comments in no-await-in-loop (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13673">#13673</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/17b58b528df62bf96813d50c087cafdf83306810"><code>17b58b5</code></a> Docs: clarify correct example in no-return-await (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13656">#13656</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13657">#13657</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/9171f0a99bb4d7c53f109b1c2b215004a7c27713"><code>9171f0a</code></a> Chore: fix typo (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13660">#13660</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/6d9f8fbb7ed4361b475fb50d04e6d25744d5b1a2"><code>6d9f8fb</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/97b0dd9a1af1ae4ae3857adcfe6eeac7837101ed"><code>97b0dd9</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/deab125fc9220dab43baeb32c6cf78942ad25a83"><code>deab125</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/bf2e367bf4f6fde9930af9de8b8d8bc3d8b5782f"><code>bf2e367</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/89292084bf91ba5ae5bf966c6c56fa3da139ce57"><code>8929208</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> </ul> <h2>v7.8.1</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/f542b5d0679b73326ad249fc44a54c3f848bd3e6"><code>f542b5d</code></a> Fix: Update broken @eslint/eslintrc version (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13641">#13641</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13647">#13647</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/c1b56966c2354e12d16e8394443de49fa54f4290"><code>c1b5696</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/8ddeda01afdb1e9656a43853b8e25c9c4582e6ad"><code>8ddeda0</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/e02e2fe019a1ed9a34a7b96e4c8961c35093b0ce"><code>e02e2fe</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> </ul> <h2>v7.8.0</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/58abd9311900a8af5a3c0963daaf64675bdd8383"><code>58abd93</code></a> Update: support logical assignments in code path analysis (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13569">#13569</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13612">#13612</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/db7488e6326fd1b7ea04c5062beb1c5f75fc15ed"><code>db7488e</code></a> Update: support logical assignments in core rules (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13569">#13569</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13618">#13618</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/372921924778f2e525535985e17c97b988546210"><code>3729219</code></a> Docs: Update Step 1 of Development Environment documentation (klkhan)</li> <li><a href="https://github.com/eslint/eslint/commit/a32032430a0779a4e3b2d137d4d0682844084b82"><code>a320324</code></a> Chore: Test formatted integers in no-dupe-keys (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13568">#13568</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13626">#13626</a>) (Brandon Mills)</li> <li><a href="https://github.com/eslint/eslint/commit/88a9ade7643bb166efbab45cee15f3269496f4be"><code>88a9ade</code></a> Update: add es2021 environment (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13602">#13602</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13603">#13603</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/0003dc0f966f2b47555595586f84eb3163cb0179"><code>0003dc0</code></a> Update: support numeric separators (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13568">#13568</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13581">#13581</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/96b11a0717bf32b94ec768611574372320fb774b"><code>96b11a0</code></a> Update: Add exceptionPatterns to id-length rule (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13094">#13094</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13576">#13576</a>) (sodam)</li> <li><a href="https://github.com/eslint/eslint/commit/3439fea5c0ed330d01d874b0c9df51dd51ae792c"><code>3439fea</code></a> Update: support numeric-separator in no-loss-of-precision (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13568">#13568</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13574">#13574</a>) (Anix)</li> <li><a href="https://github.com/eslint/eslint/commit/ed64767859d776145d68145419a61f5379b4dd63"><code>ed64767</code></a> Update: add comment to message in no-warning-comments (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/12327">#12327</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13522">#13522</a>) (Anix)</li> <li><a href="https://github.com/eslint/eslint/commit/e60ec07fad0c1d4c966f28d214c5379da753ff4e"><code>e60ec07</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/483bf7f3cc40e0d866798d6ca9ee1c19aa77ddd2"><code>483bf7f</code></a> Docs: fix examples in object-curly-newline (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13605">#13605</a>) (Soobin Bak)</li> <li><a href="https://github.com/eslint/eslint/commit/1c35d57b0a5f374cc55f1727a7561bcab1962e83"><code>1c35d57</code></a> Docs: Remove stale Keybase 2FA instructions (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13622">#13622</a>) (Brandon Mills)</li> <li><a href="https://github.com/eslint/eslint/commit/82669fa66670a00988db5b1d10fe8f3bf30be84e"><code>82669fa</code></a> Chore: Extract some functionality to eslintrc (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13481">#13481</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13613">#13613</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/4111d21a046b73892e2c84f92815a21ef4db63e1"><code>4111d21</code></a> Docs: Fix typo and missing article before noun in docs (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13611">#13611</a>) (Patrice Sandhu)</li> <li><a href="https://github.com/eslint/eslint/commit/091e52ae1ca408f3e668f394c14d214c9ce806e6"><code>091e52a</code></a> Upgrade: [email protected] (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13568">#13568</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13609">#13609</a>) (Kai Cataldo)</li> <li><a href="https://github.com/eslint/eslint/commit/05074fb2c243e904e8c09d714ad9d084acdd80d2"><code>05074fb</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/bdb65ec2e672c9815bee356b61d1cd60a1072152"><code>bdb65ec</code></a> Chore: add 3rd party parsers in BUG_REPORT template (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13606">#13606</a>) (YeonJuan)</li> <li><a href="https://github.com/eslint/eslint/commit/f954476fb6b0664679c73babd5e8a0647572b81f"><code>f954476</code></a> Chore: add common 3rd party parsers to issue template (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13596">#13596</a>) (Kai Cataldo)</li> <li><a href="https://github.com/eslint/eslint/commit/2bee6d256ae0516c9a9003bb3fdca24ff93253b5"><code>2bee6d2</code></a> Chore: Mark config-related files (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13481">#13481</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13597">#13597</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/66442a9faf9872db4a40f56dde28c48f4d02fc7b"><code>66442a9</code></a> Update: Add no-magic-numbers 'ignoreDefaultValues' option (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/12611">#12611</a>) (Dieter Luypaert)</li> <li><a href="https://github.com/eslint/eslint/commit/b487164d01dd0bf66fdf2df0e374ce1c3bdb0339"><code>b487164</code></a> Docs: add exponentiation operators to operator-assignment documentation (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13577">#13577</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/2f27836e989f3dfe236e34054b490febc359bc48"><code>2f27836</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/60eafc15075f38955cb6816bf1f0bcf6e6e6d3a6"><code>60eafc1</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> </ul> <h2>v7.7.0</h2> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/blob/master/CHANGELOG.md">eslint's changelog</a>.</em></p> <blockquote> <p>v7.9.0 - September 12, 2020</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/3ca27004ece5016ba7aed775f01ad13bc9282296"><code>3ca2700</code></a> Fix: Corrected notice for invalid (:) plugin names (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13473">#13473</a>) (Josh Goldberg)</li> <li><a href="https://github.com/eslint/eslint/commit/fc5783d2ff9e3b0d7a1f9664928d49270b4a6c01"><code>fc5783d</code></a> Docs: Fix leaky anchors in v4 migration page (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13635">#13635</a>) (Timo Tijhof)</li> <li><a href="https://github.com/eslint/eslint/commit/f1d07f112be96c64dfdaa154aa9ac81985b16238"><code>f1d07f1</code></a> Docs: Provide install commands for Yarn (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13661">#13661</a>) (Nikita Baksalyar)</li> <li><a href="https://github.com/eslint/eslint/commit/29d1cdceedd6c056a39149723cf9ff2fbb260cbf"><code>29d1cdc</code></a> Fix: prefer-destructuring removes comments (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13678">#13678</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13682">#13682</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/b4da0a7ca7995435bdfc116fd374eb0649470131"><code>b4da0a7</code></a> Docs: fix typo in working with plugins docs (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13683">#13683</a>) (啸生)</li> <li><a href="https://github.com/eslint/eslint/commit/6f87db7c318225e48ccbbf0bec8b3758ea839b82"><code>6f87db7</code></a> Update: fix id-length false negatives on Object.prototype property names (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13670">#13670</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/361ac4d895c15086fb4351d4dca1405b2fdc4bd5"><code>361ac4d</code></a> Fix: NonOctalDecimalIntegerLiteral is decimal integer (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13588">#13588</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13664">#13664</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/f260716695064e4b4193337107b60401bd4b3f20"><code>f260716</code></a> Docs: update outdated link (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13677">#13677</a>) (klkhan)</li> <li><a href="https://github.com/eslint/eslint/commit/5138c913c256e4266ffb68278783af45bf70af84"><code>5138c91</code></a> Docs: add missing eslint directive comments in no-await-in-loop (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13673">#13673</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/17b58b528df62bf96813d50c087cafdf83306810"><code>17b58b5</code></a> Docs: clarify correct example in no-return-await (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13656">#13656</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13657">#13657</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/9171f0a99bb4d7c53f109b1c2b215004a7c27713"><code>9171f0a</code></a> Chore: fix typo (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13660">#13660</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/6d9f8fbb7ed4361b475fb50d04e6d25744d5b1a2"><code>6d9f8fb</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/97b0dd9a1af1ae4ae3857adcfe6eeac7837101ed"><code>97b0dd9</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/deab125fc9220dab43baeb32c6cf78942ad25a83"><code>deab125</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/bf2e367bf4f6fde9930af9de8b8d8bc3d8b5782f"><code>bf2e367</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/89292084bf91ba5ae5bf966c6c56fa3da139ce57"><code>8929208</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> </ul> <p>v7.8.1 - September 1, 2020</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/f542b5d0679b73326ad249fc44a54c3f848bd3e6"><code>f542b5d</code></a> Fix: Update broken @eslint/eslintrc version (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13641">#13641</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13647">#13647</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/c1b56966c2354e12d16e8394443de49fa54f4290"><code>c1b5696</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/8ddeda01afdb1e9656a43853b8e25c9c4582e6ad"><code>8ddeda0</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/e02e2fe019a1ed9a34a7b96e4c8961c35093b0ce"><code>e02e2fe</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> </ul> <p>v7.8.0 - August 31, 2020</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/58abd9311900a8af5a3c0963daaf64675bdd8383"><code>58abd93</code></a> Update: support logical assignments in code path analysis (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13569">#13569</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13612">#13612</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/db7488e6326fd1b7ea04c5062beb1c5f75fc15ed"><code>db7488e</code></a> Update: support logical assignments in core rules (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13569">#13569</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13618">#13618</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/372921924778f2e525535985e17c97b988546210"><code>3729219</code></a> Docs: Update Step 1 of Development Environment documentation (klkhan)</li> <li><a href="https://github.com/eslint/eslint/commit/a32032430a0779a4e3b2d137d4d0682844084b82"><code>a320324</code></a> Chore: Test formatted integers in no-dupe-keys (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13568">#13568</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13626">#13626</a>) (Brandon Mills)</li> <li><a href="https://github.com/eslint/eslint/commit/88a9ade7643bb166efbab45cee15f3269496f4be"><code>88a9ade</code></a> Update: add es2021 environment (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13602">#13602</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13603">#13603</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/0003dc0f966f2b47555595586f84eb3163cb0179"><code>0003dc0</code></a> Update: support numeric separators (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13568">#13568</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13581">#13581</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/96b11a0717bf32b94ec768611574372320fb774b"><code>96b11a0</code></a> Update: Add exceptionPatterns to id-length rule (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13094">#13094</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13576">#13576</a>) (sodam)</li> <li><a href="https://github.com/eslint/eslint/commit/3439fea5c0ed330d01d874b0c9df51dd51ae792c"><code>3439fea</code></a> Update: support numeric-separator in no-loss-of-precision (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13568">#13568</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13574">#13574</a>) (Anix)</li> <li><a href="https://github.com/eslint/eslint/commit/ed64767859d776145d68145419a61f5379b4dd63"><code>ed64767</code></a> Update: add comment to message in no-warning-comments (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/12327">#12327</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13522">#13522</a>) (Anix)</li> <li><a href="https://github.com/eslint/eslint/commit/e60ec07fad0c1d4c966f28d214c5379da753ff4e"><code>e60ec07</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/483bf7f3cc40e0d866798d6ca9ee1c19aa77ddd2"><code>483bf7f</code></a> Docs: fix examples in object-curly-newline (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13605">#13605</a>) (Soobin Bak)</li> <li><a href="https://github.com/eslint/eslint/commit/1c35d57b0a5f374cc55f1727a7561bcab1962e83"><code>1c35d57</code></a> Docs: Remove stale Keybase 2FA instructions (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13622">#13622</a>) (Brandon Mills)</li> <li><a href="https://github.com/eslint/eslint/commit/82669fa66670a00988db5b1d10fe8f3bf30be84e"><code>82669fa</code></a> Chore: Extract some functionality to eslintrc (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13481">#13481</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13613">#13613</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/4111d21a046b73892e2c84f92815a21ef4db63e1"><code>4111d21</code></a> Docs: Fix typo and missing article before noun in docs (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13611">#13611</a>) (Patrice Sandhu)</li> <li><a href="https://github.com/eslint/eslint/commit/091e52ae1ca408f3e668f394c14d214c9ce806e6"><code>091e52a</code></a> Upgrade: [email protected] (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13568">#13568</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13609">#13609</a>) (Kai Cataldo)</li> <li><a href="https://github.com/eslint/eslint/commit/05074fb2c243e904e8c09d714ad9d084acdd80d2"><code>05074fb</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/bdb65ec2e672c9815bee356b61d1cd60a1072152"><code>bdb65ec</code></a> Chore: add 3rd party parsers in BUG_REPORT template (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13606">#13606</a>) (YeonJuan)</li> <li><a href="https://github.com/eslint/eslint/commit/f954476fb6b0664679c73babd5e8a0647572b81f"><code>f954476</code></a> Chore: add common 3rd party parsers to issue template (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13596">#13596</a>) (Kai Cataldo)</li> <li><a href="https://github.com/eslint/eslint/commit/2bee6d256ae0516c9a9003bb3fdca24ff93253b5"><code>2bee6d2</code></a> Chore: Mark config-related files (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13481">#13481</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13597">#13597</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/66442a9faf9872db4a40f56dde28c48f4d02fc7b"><code>66442a9</code></a> Update: Add no-magic-numbers 'ignoreDefaultValues' option (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/12611">#12611</a>) (Dieter Luypaert)</li> <li><a href="https://github.com/eslint/eslint/commit/b487164d01dd0bf66fdf2df0e374ce1c3bdb0339"><code>b487164</code></a> Docs: add exponentiation operators to operator-assignment documentation (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13577">#13577</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/2f27836e989f3dfe236e34054b490febc359bc48"><code>2f27836</code></a> Sponsors: Sync README with website (ESLint Jenkins)</li> </ul> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/022257a71b7579cf88cf3b8b936a696e8d2a09ed"><code>022257a</code></a> 7.9.0</li> <li><a href="https://github.com/eslint/eslint/commit/1f0a4ac09560c2dc93551210f3907cb9f833b868"><code>1f0a4ac</code></a> Build: changelog update for 7.9.0</li> <li><a href="https://github.com/eslint/eslint/commit/3ca27004ece5016ba7aed775f01ad13bc9282296"><code>3ca2700</code></a> Fix: Corrected notice for invalid (:) plugin names (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13473">#13473</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/fc5783d2ff9e3b0d7a1f9664928d49270b4a6c01"><code>fc5783d</code></a> Docs: Fix leaky anchors in v4 migration page (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13635">#13635</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/f1d07f112be96c64dfdaa154aa9ac81985b16238"><code>f1d07f1</code></a> Docs: Provide install commands for Yarn (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13661">#13661</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/29d1cdceedd6c056a39149723cf9ff2fbb260cbf"><code>29d1cdc</code></a> Fix: prefer-destructuring removes comments (refs <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13678">#13678</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13682">#13682</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/b4da0a7ca7995435bdfc116fd374eb0649470131"><code>b4da0a7</code></a> Docs: fix typo in working with plugins docs (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13683">#13683</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/6f87db7c318225e48ccbbf0bec8b3758ea839b82"><code>6f87db7</code></a> Update: fix id-length false negatives on Object.prototype property names (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13">#13</a>...</li> <li><a href="https://github.com/eslint/eslint/commit/361ac4d895c15086fb4351d4dca1405b2fdc4bd5"><code>361ac4d</code></a> Fix: NonOctalDecimalIntegerLiteral is decimal integer (fixes <a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13588">#13588</a>) (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13664">#13664</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/f260716695064e4b4193337107b60401bd4b3f20"><code>f260716</code></a> Docs: update outdated link (<a href="https://github-redirect.dependabot.com/eslint/eslint/issues/13677">#13677</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v7.1.0...v7.9.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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps pika-plugin-legacy-browser from 1.3.0 to 1.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/erictooth/pika-plugin-legacy-browser/releases">pika-plugin-legacy-browser's releases</a>.</em></p> <blockquote> <h2>v1.5.0</h2> <ul> <li>Allow Babel option overrides with the babelConfig.options property.</li> </ul> <h2>v1.4.0</h2> <p>Expose configuration to user for @babel/preset-env</p> <h2>v1.3.1</h2> <p>Allow commonjs to resolve symlinks in node_modules</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/erictooth/pika-plugin-legacy-browser/commit/1fc147a7ad49060b43552d521fccef2d8e27ebcf"><code>1fc147a</code></a> Update package.json</li> <li><a href="https://github.com/erictooth/pika-plugin-legacy-browser/commit/cae918761e9ec7633a847bea7f2e3d1c520eb43f"><code>cae9187</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/erictooth/pika-plugin-legacy-browser/issues/9">#9</a> from gautam1109/master</li> <li><a href="https://github.com/erictooth/pika-plugin-legacy-browser/commit/3637ec2627a55f1d6ac2a48166445b5314b49637"><code>3637ec2</code></a> Update index.ts</li> <li><a href="https://github.com/erictooth/pika-plugin-legacy-browser/commit/b835e5724e75d2bb1effd648f10a73b1b640bfa4"><code>b835e57</code></a> Bump version</li> <li><a href="https://github.com/erictooth/pika-plugin-legacy-browser/commit/e878a6e0906b7ec8f0dc3602d9f653c7a30abe63"><code>e878a6e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/erictooth/pika-plugin-legacy-browser/issues/7">#7</a> from gautam1109/master</li> <li><a href="https://github.com/erictooth/pika-plugin-legacy-browser/commit/d40618ac6de8c7bffaf4da2050ec98beee8317c8"><code>d40618a</code></a> Update index.ts</li> <li><a href="https://github.com/erictooth/pika-plugin-legacy-browser/commit/99691ffc2b6eaaec10ac6c29cf64bddc0063cf49"><code>99691ff</code></a> Update package.json</li> <li><a href="https://github.com/erictooth/pika-plugin-legacy-browser/commit/8154d95f74125c005057f8cc57ea4d33f3daf1ef"><code>8154d95</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/erictooth/pika-plugin-legacy-browser/issues/5">#5</a> from atomicpages/patch-2</li> <li><a href="https://github.com/erictooth/pika-plugin-legacy-browser/commit/2afc66819699d5a9c9e79812953a6ec127b7da6d"><code>2afc668</code></a> Fixes <a href="https://github-redirect.dependabot.com/erictooth/pika-plugin-legacy-browser/issues/4">#4</a></li> <li>See full diff in <a href="https://github.com/erictooth/pika-plugin-legacy-browser/compare/v1.3.0...v1.5.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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps @types/jest from 25.2.3 to 26.0.13. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps @types/react from 16.9.35 to 16.9.49. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps webpack from 4.43.0 to 4.44.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack/webpack/releases">webpack's releases</a>.</em></p> <blockquote> <h2>v4.44.1</h2> <h1>Bugfixes</h1> <ul> <li>fix bug in sideEffects optimization when using <code>export * from "non-esm"</code> and a default export.</li> <li>add missing optional peerDependencies for webpack-cli and webpack-command to support Yarn 2</li> </ul> <h2>v4.44.0</h2> <h1>Features</h1> <ul> <li>Improve <code>sideEffects</code> flag behavior when dynamic modules are part of the tree <ul> <li>Fixes a bug which causes empty modules (or type-only modules) to "break" Tree Shaking</li> </ul> </li> <li>add <code>splitChunks.enforceSizeThreshold</code> to allow enfore splitting larger chunks unrelated from other limiations <ul> <li>Not set by default to avoid breaking change</li> <li>It will be set by default to 50k in webpack 5</li> <li>It's recommended to set it in webpack 4 too</li> </ul> </li> <li>add support for <code>resolve.roots</code> and default <code>resolve.roots: [context]</code> <ul> <li>This allows to resolve server-relative urls (e.g. <code>/src/abc</code>) to the project root (or other locations when configured)</li> <li>This allows to use loaders that rely on that behavior</li> </ul> </li> </ul> <h1>Bugfixes</h1> <ul> <li>fix bug where splitChunks produced non-optimal results when <code>minSize</code> is set to <code>0</code> <ul> <li>This lead to <code>NaN</code>s in some places which breaks ordering</li> </ul> </li> <li>Fix bug which lead to HMR not working for splitChunks in entrypoints</li> <li>force update watchpack and chokidar for chokidar bugfix which causes files to stop being watched</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/webpack/webpack/commit/cd4af164784f3938353102179adfcbcf8f53949d"><code>cd4af16</code></a> 4.44.1</li> <li><a href="https://github.com/webpack/webpack/commit/7895778cacbd1dd1d51659ac32971db279659aaf"><code>7895778</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/webpack/issues/11244">#11244</a> from webpack/bugfix/dynamic-reexport-default</li> <li><a href="https://github.com/webpack/webpack/commit/46304c888f2b066e358339df62ac7fd89606d433"><code>46304c8</code></a> ignore default export when reexporting a dynamic module</li> <li><a href="https://github.com/webpack/webpack/commit/91e81c8d19fa9e03768797a6fda34231b65963b1"><code>91e81c8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/webpack/issues/11190">#11190</a> from merceyz/patch-2</li> <li><a href="https://github.com/webpack/webpack/commit/087af7c2e60c152ab7f7728c44b9f3bba2c0a7d0"><code>087af7c</code></a> Merge branch 'webpack-4' into patch-2</li> <li><a href="https://github.com/webpack/webpack/commit/d4603c6d7ef4acfbe956ef49d8476c7368526989"><code>d4603c6</code></a> 4.44.0</li> <li><a href="https://github.com/webpack/webpack/commit/ea06f033756fe21bc73698e8449a7cbf1fedeb13"><code>ea06f03</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/webpack/issues/11225">#11225</a> from webpack/deps/watchpack</li> <li><a href="https://github.com/webpack/webpack/commit/eae1ba05bb116d0b6db2968e078e6a8d67a2e5c6"><code>eae1ba0</code></a> update watchpack</li> <li><a href="https://github.com/webpack/webpack/commit/42dc03852b4dfddaf33aa3b000ee8c255ba4ffd1"><code>42dc038</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/webpack/issues/11210">#11210</a> from webpack/ci/timeout-4</li> <li><a href="https://github.com/webpack/webpack/commit/21e3c11a26e405395bb7777024a1fc7fb9a99484"><code>21e3c11</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/webpack/webpack/issues/11207">#11207</a> from webpack/backport/add-roots</li> <li>Additional commits viewable in <a href="https://github.com/webpack/webpack/compare/v4.43.0...v4.44.1">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps husky from 4.2.5 to 4.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typicode/husky/releases">husky's releases</a>.</em></p> <blockquote> <h2>v4.3.0</h2> <ul> <li>Add <code>.cjs</code> config file support <a href="https://github-redirect.dependabot.com/typicode/husky/issues/754">#754</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typicode/husky/commit/905fc4fc653eeb4a00bf20e26eb1a7833b8d19da"><code>905fc4f</code></a> update snapshot</li> <li><a href="https://github.com/typicode/husky/commit/28d29e81f92417df4d6dc19c8f4971955bcbdf9b"><code>28d29e8</code></a> 4.3.0</li> <li><a href="https://github.com/typicode/husky/commit/88fe8ea9aa36c8a8d2a79b1651fc42ceecad7704"><code>88fe8ea</code></a> Fix "huskyrc.yml" -> ".huskyrc.yml" (<a href="https://github-redirect.dependabot.com/typicode/husky/issues/739">#739</a>)</li> <li><a href="https://github.com/typicode/husky/commit/4ea1ef54a5a8aa6981756b7ed0a5a171abda5ccf"><code>4ea1ef5</code></a> Bump lodash from 4.17.15 to 4.17.19 (<a href="https://github-redirect.dependabot.com/typicode/husky/issues/744">#744</a>)</li> <li><a href="https://github.com/typicode/husky/commit/6eb57f0350766fa8be5800a5f41b5c8ec963dabf"><code>6eb57f0</code></a> add .cjs suport (<a href="https://github-redirect.dependabot.com/typicode/husky/issues/754">#754</a>)</li> <li><a href="https://github.com/typicode/husky/commit/e5531f1d4ca3c72148660b8ec66d502daf34dd8b"><code>e5531f1</code></a> Update README.md</li> <li><a href="https://github.com/typicode/husky/commit/7259d0fddd97756c210242e7a6f43d196a110aa5"><code>7259d0f</code></a> chore: Adding more supported formats to the README documentation (<a href="https://github-redirect.dependabot.com/typicode/husky/issues/711">#711</a>)</li> <li><a href="https://github.com/typicode/husky/commit/0b4a64d2f81f23dc90977f0a1455a6d24629ef5c"><code>0b4a64d</code></a> Update README.md</li> <li><a href="https://github.com/typicode/husky/commit/275f088ebfaaad761eb7dd083b44aec751653d55"><code>275f088</code></a> Update README.md</li> <li><a href="https://github.com/typicode/husky/commit/5c49052af2a89b5b522b3568e3241bf447d997c1"><code>5c49052</code></a> increase sponsors height</li> <li>See full diff in <a href="https://github.com/typicode/husky/compare/v4.2.5...v4.3.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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps @testing-library/cypress from 6.0.0 to 7.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/kentcdodds/cypress-testing-library/releases">@testing-library/cypress's releases</a>.</em></p> <blockquote> <h2>v7.0.0</h2> <h1><a href="https://github.com/kentcdodds/cypress-testing-library/compare/v6.0.1...v7.0.0">7.0.0</a> (2020-09-03)</h1> <h3>Bug Fixes</h3> <ul> <li>remove deprecated queries (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/152">#152</a>) (<a href="https://github.com/kentcdodds/cypress-testing-library/commit/848bdc014b1ec6f3601831fb04edfef8d3e9d2a3">848bdc0</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>TS:</strong> move types from DefinitelyTyped (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/148">#148</a>) (<a href="https://github.com/kentcdodds/cypress-testing-library/commit/058daff38a6cee84d588c5b295247deeb02c474f">058daff</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li><code>get</code> and <code>query</code> queries (which have been deprecated) have now been removed. Use <code>find</code> queries only.</li> <li><strong>TS:</strong> TypeScript type definitions have been brought into this module and no longer needs to be referenced from DefinitelyTyped</li> </ul> <h2>v7.0.0-beta.2</h2> <h1><a href="https://github.com/kentcdodds/cypress-testing-library/compare/v7.0.0-beta.1...v7.0.0-beta.2">7.0.0-beta.2</a> (2020-09-03)</h1> <h3>Bug Fixes</h3> <ul> <li>remove deprecated queries (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/152">#152</a>) (<a href="https://github.com/kentcdodds/cypress-testing-library/commit/2f7fc37346162a4a5f05ea5b451602571753c028">2f7fc37</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li><code>get</code> and <code>query</code> queries (which have been deprecated) have now been removed. Use <code>find</code> queries only.</li> </ul> <h2>v7.0.0-beta.1</h2> <h1><a href="https://github.com/kentcdodds/cypress-testing-library/compare/v6.0.1...v7.0.0-beta.1">7.0.0-beta.1</a> (2020-08-22)</h1> <h3>Features</h3> <ul> <li><strong>TS:</strong> move types from DefinitelyTyped (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/148">#148</a>) (<a href="https://github.com/kentcdodds/cypress-testing-library/commit/55ba88b76c2e9e0ec6c96d9db80f55c7f4d751e4">55ba88b</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li><strong>TS:</strong> TypeScript type definitions have been brought into this module and no longer needs to be referenced from DefinitelyTyped</li> </ul> <h2>v6.1.0-beta.1</h2> <h1><a href="https://github.com/kentcdodds/cypress-testing-library/compare/v6.0.1...v6.1.0-beta.1">6.1.0-beta.1</a> (2020-08-22)</h1> <h3>Features</h3> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/testing-library/cypress-testing-library/commit/848bdc014b1ec6f3601831fb04edfef8d3e9d2a3"><code>848bdc0</code></a> fix: remove deprecated queries (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/152">#152</a>)</li> <li><a href="https://github.com/testing-library/cypress-testing-library/commit/058daff38a6cee84d588c5b295247deeb02c474f"><code>058daff</code></a> feat(TS): move types from DefinitelyTyped (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/148">#148</a>)</li> <li><a href="https://github.com/testing-library/cypress-testing-library/commit/ae925b4f345148de5b7791eabb168dda6df7ae5f"><code>ae925b4</code></a> fix(peerDependencies): add Cypress v5 to peerDeps</li> <li><a href="https://github.com/testing-library/cypress-testing-library/commit/d13b9a2f56cea5229bfdb72c80d129aa2a99b46c"><code>d13b9a2</code></a> chore: update everything</li> <li><a href="https://github.com/testing-library/cypress-testing-library/commit/97939da7d4707a71049884c0324c0eda56e26fc2"><code>97939da</code></a> chore: Fix ESLint config and failing test (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/144">#144</a>)</li> <li><a href="https://github.com/testing-library/cypress-testing-library/commit/0df29e3d50c879d8c44f9b7719dea62dd4b6bdf1"><code>0df29e3</code></a> docs: Link to new Discord (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/141">#141</a>)</li> <li><a href="https://github.com/testing-library/cypress-testing-library/commit/5af872958acceb85b9906130736c5f8672dd2e52"><code>5af8729</code></a> chore: update coc to v2 (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/140">#140</a>)</li> <li><a href="https://github.com/testing-library/cypress-testing-library/commit/78a365d54fe0e86c8b73cc444e3eb9c2ebf3e531"><code>78a365d</code></a> Update CODE_OF_CONDUCT.md</li> <li><a href="https://github.com/testing-library/cypress-testing-library/commit/17c11b47d2649dc3eb5ff62f66dea566030f4613"><code>17c11b4</code></a> chore: Test on Node 14 (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/138">#138</a>)</li> <li><a href="https://github.com/testing-library/cypress-testing-library/commit/c314ac645eba107ff0132d9e6c63747e0c3510bb"><code>c314ac6</code></a> chore: Only release on original repo (<a href="https://github-redirect.dependabot.com/kentcdodds/cypress-testing-library/issues/139">#139</a>)</li> <li>Additional commits viewable in <a href="https://github.com/kentcdodds/cypress-testing-library/compare/v6.0.0...v7.0.0">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps @types/testing-library__cypress from 5.0.5 to 5.0.6. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/testing-library__cypress">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps nanoid from 3.1.9 to 3.1.12. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ai/nanoid/blob/master/CHANGELOG.md">nanoid's changelog</a>.</em></p> <blockquote> <h2>3.1.12</h2> <ul> <li>Improve IE 11 docs.</li> </ul> <h2>3.1.11</h2> <ul> <li>Fixed asynchronous <code>customAlphabet</code> in browser (by <a href="https://github.com/LoneRifle">@LoneRifle</a>).</li> </ul> <h2>3.1.10</h2> <ul> <li>Fix ES modules support.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ai/nanoid/commit/d5def1a6a068b3bd0a93ca1beaf1bee963f51837"><code>d5def1a</code></a> Release 3.1.12 version</li> <li><a href="https://github.com/ai/nanoid/commit/ae0fbeadfdfe68fa263619cc93d33e813d8afc19"><code>ae0fbea</code></a> Update dependencies</li> <li><a href="https://github.com/ai/nanoid/commit/2ec4ea7eb3257269493705b01658df33f5fcbc91"><code>2ec4ea7</code></a> Improve IE 11 help</li> <li><a href="https://github.com/ai/nanoid/commit/e542e36207351d55aa4dd957e6744d2bc4d56337"><code>e542e36</code></a> Release 3.1.11 version</li> <li><a href="https://github.com/ai/nanoid/commit/b60596a581a8a1c0d621c99810469d0e957ab426"><code>b60596a</code></a> Update size limit</li> <li><a href="https://github.com/ai/nanoid/commit/5a57e02b9c269fbcf048f16eb12b93aef864ee51"><code>5a57e02</code></a> Update dependencies</li> <li><a href="https://github.com/ai/nanoid/commit/1530b7d411f903ebc18ea805eae2bda6fdaf411a"><code>1530b7d</code></a> async/customAlphabet - ensure browser version returns Promise (<a href="https://github-redirect.dependabot.com/ai/nanoid/issues/229">#229</a>)</li> <li><a href="https://github.com/ai/nanoid/commit/5282c5ade73f08ca78fc3e6c593e6a415022a543"><code>5282c5a</code></a> Update dependencies</li> <li><a href="https://github.com/ai/nanoid/commit/908197cf221f57c925ce17b24cdcac7e1347e841"><code>908197c</code></a> Replace kleur to colorette</li> <li><a href="https://github.com/ai/nanoid/commit/8e7b9c237e7d4315c0b1d7fd69c3c92982e9b09c"><code>8e7b9c2</code></a> Update dependencies</li> <li>Additional commits viewable in <a href="https://github.com/ai/nanoid/compare/3.1.9...3.1.12">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
PR closed atomicpages/pretty-checkbox-react
Bumps @types/jquery from 3.3.38 to 3.5.1. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jquery">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 64de516770937206b4e23dcfab41c688bf42d319
docs(:pencil:)
push time in a month
push eventatomicpages/pretty-checkbox-react
commit sha 0e721522a32f601440955e64e78324fa65b9e5ab
Bump eslint-utils from 1.4.0 to 1.4.2 Bumps [eslint-utils](https://github.com/mysticatea/eslint-utils) from 1.4.0 to 1.4.2. - [Release notes](https://github.com/mysticatea/eslint-utils/releases) - [Commits](https://github.com/mysticatea/eslint-utils/compare/v1.4.0...v1.4.2) Signed-off-by: dependabot[bot] <[email protected]>
commit sha 85c16d4d4e626eac484e3e63627271ebb5d4a7de
Merge pull request #5 from atomicpages/dependabot/npm_and_yarn/eslint-utils-1.4.2
commit sha 45f0b51897dbddb6ca588bcd2a50e11c6996ca1a
Bump eslint from 6.1.0 to 6.2.2 Bumps [eslint](https://github.com/eslint/eslint) from 6.1.0 to 6.2.2. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v6.1.0...v6.2.2) Signed-off-by: dependabot-preview[bot] <[email protected]>
commit sha a5c6bf13d9cbff49fac82f56d7604ead625bc728
Bump @testing-library/jest-dom from 4.0.0 to 4.1.0 Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 4.0.0 to 4.1.0. - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/master/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v4.0.0...v4.1.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
commit sha a6a62773a4a4f44022889c30118b9172b864841c
Bump rollup from 1.19.4 to 1.20.2 Bumps [rollup](https://github.com/rollup/rollup) from 1.19.4 to 1.20.2. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v1.19.4...v1.20.2) Signed-off-by: dependabot-preview[bot] <[email protected]>
commit sha 8ac90dc3355fb7d9dcd74f36579144cfd60510bc
Bump flow-bin from 0.105.2 to 0.106.2 Bumps [flow-bin](https://github.com/flowtype/flow-bin) from 0.105.2 to 0.106.2. - [Release notes](https://github.com/flowtype/flow-bin/releases) - [Commits](https://github.com/flowtype/flow-bin/compare/v0.105.2...v0.106.2) Signed-off-by: dependabot-preview[bot] <[email protected]>
commit sha 928bba6b257790972adb15b46de7e8c3d91ce272
Bump eslint-config-prettier from 6.0.0 to 6.1.0 Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/master/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v6.0.0...v6.1.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
commit sha 68ed7679de11612ea870001da1a3e7c826c95598
Merge pull request #10 from atomicpages/dependabot/npm_and_yarn/eslint-config-prettier-6.1.0 Bump eslint-config-prettier from 6.0.0 to 6.1.0
commit sha 9dd1682be82830d5cfcd33206190baf666e376d2
Merge pull request #9 from atomicpages/dependabot/npm_and_yarn/flow-bin-0.106.2 Bump flow-bin from 0.105.2 to 0.106.2
commit sha 89f70bf1bd282862135d7b088921a2dda9cd9559
Merge pull request #8 from atomicpages/dependabot/npm_and_yarn/rollup-1.20.2 Bump rollup from 1.19.4 to 1.20.2
commit sha 991cb15db474c9573f1759da6d8fdd76730f1696
Merge pull request #7 from atomicpages/dependabot/npm_and_yarn/testing-library/jest-dom-4.1.0 Bump @testing-library/jest-dom from 4.0.0 to 4.1.0
commit sha 57725814d0c8755287f6e8c8e8a09b785b2f937e
Merge pull request #6 from atomicpages/dependabot/npm_and_yarn/eslint-6.2.2 Bump eslint from 6.1.0 to 6.2.2
commit sha e4dad7bd9f62c916099086b4be5565ab49a57d5c
Bump rollup from 1.20.2 to 1.20.3 Bumps [rollup](https://github.com/rollup/rollup) from 1.20.2 to 1.20.3. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v1.20.2...v1.20.3) Signed-off-by: dependabot-preview[bot] <[email protected]>
commit sha ee5df112ae29abde62273ca1cb49922ea209a6de
Bump flow-copy-source from 2.0.7 to 2.0.8 Bumps [flow-copy-source](https://github.com/Macil/flow-copy-source) from 2.0.7 to 2.0.8. - [Release notes](https://github.com/Macil/flow-copy-source/releases) - [Changelog](https://github.com/Macil/flow-copy-source/blob/master/CHANGELOG.md) - [Commits](https://github.com/Macil/flow-copy-source/compare/v2.0.7...v2.0.8) Signed-off-by: dependabot-preview[bot] <[email protected]>
commit sha 0641bcab0d18a1d34d5426e027bf00dc62fcb0dc
Bump rollup-plugin-commonjs from 10.0.2 to 10.1.0 Bumps [rollup-plugin-commonjs](https://github.com/rollup/rollup-plugin-commonjs) from 10.0.2 to 10.1.0. - [Release notes](https://github.com/rollup/rollup-plugin-commonjs/releases) - [Changelog](https://github.com/rollup/rollup-plugin-commonjs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup-plugin-commonjs/compare/v10.0.2...v10.1.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
commit sha 4d6f736701a0c00c55b72ae28fc9ff8984c0e574
Bump babel-eslint from 10.0.2 to 10.0.3 Bumps [babel-eslint](https://github.com/babel/babel-eslint) from 10.0.2 to 10.0.3. - [Release notes](https://github.com/babel/babel-eslint/releases) - [Commits](https://github.com/babel/babel-eslint/compare/v10.0.2...v10.0.3) Signed-off-by: dependabot-preview[bot] <[email protected]>
commit sha be29b396e740c64a4085a5f14290d575cfe73aa2
Merge pull request #11 from atomicpages/dependabot/npm_and_yarn/rollup-1.20.3 Bump rollup from 1.20.2 to 1.20.3
commit sha 57aceee47605d18d5f0cbbf9b3ec3da20168f56b
Merge pull request #12 from atomicpages/dependabot/npm_and_yarn/flow-copy-source-2.0.8 Bump flow-copy-source from 2.0.7 to 2.0.8
commit sha 9688506c8c11d433a28824f448693960ddb990c1
Merge pull request #13 from atomicpages/dependabot/npm_and_yarn/rollup-plugin-commonjs-10.1.0 Bump rollup-plugin-commonjs from 10.0.2 to 10.1.0
commit sha 9da3712e71f16c60098d614a8c69c3a6ed5e8db5
Merge pull request #14 from atomicpages/dependabot/npm_and_yarn/babel-eslint-10.0.3 Bump babel-eslint from 10.0.2 to 10.0.3
push time in 2 months
push eventatomicpages/pretty-checkbox-react
commit sha 92fda3746bd16bc836a820f3a89039edfeff14ee
ci(:green_heart:)
push time in 2 months
push eventatomicpages/pretty-checkbox-react
commit sha 5406435f97cb616119a990cc7de3a57e6b6042b4
test(:white_check_mark:)
push time in 2 months
created tagatomicpages/pretty-checkbox-react
A tiny react wrapper around pretty-checkbox
created time in 2 months
push eventatomicpages/pretty-checkbox-react
commit sha 5fa23e95f2ffffa8fd13669c02100b1c52df15cd
3.0.0-rc.0
push time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps @types/node from 14.0.5 to 14.10.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps @testing-library/react from 10.0.4 to 11.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/react-testing-library/releases">@testing-library/react's releases</a>.</em></p> <blockquote> <h2>v11.0.2</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v11.0.1...v11.0.2">11.0.2</a> (2020-09-03)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>cleanup:</strong> remove unnecessary async/await (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/778">#778</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/220d8d4fd1f29c64e5094a6efa46fdee7b8105de">220d8d4</a>)</li> </ul> <h2>v11.0.1</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v11.0.0...v11.0.1">11.0.1</a> (2020-09-03)</h2> <h3>Bug Fixes</h3> <ul> <li>Update typings for cleanup (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/776">#776</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/9191890c882314c0048206e23a1fff40561b7ee4">9191890</a>)</li> </ul> <h2>v11.0.0</h2> <h1><a href="https://github.com/testing-library/react-testing-library/compare/v10.4.9...v11.0.0">11.0.0</a> (2020-09-02)</h1> <h3>Features</h3> <ul> <li>use act to flush instead of custom implementation (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/768">#768</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/693228ce10f23e2b695730ea88dbdaa35506e00e">693228c</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>cleanup is now synchronous and wraps the unmounting process in <code>act</code>.</li> </ul> <h2>v11.0.0-beta.1</h2> <h1><a href="https://github.com/testing-library/react-testing-library/compare/v10.4.9...v11.0.0-beta.1">11.0.0-beta.1</a> (2020-08-30)</h1> <h3>Features</h3> <ul> <li>use act to flush instead of custom implementation (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/768">#768</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/9b626346f7f78f16cd99a25e46db4b175a987129">9b62634</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>cleanup is now synchronous and wraps the unmounting process in <code>act</code>.</li> </ul> <h2>v10.4.9</h2> <h2><a href="https://github.com/testing-library/react-testing-library/compare/v10.4.8...v10.4.9">10.4.9</a> (2020-08-21)</h2> <h3>Bug Fixes</h3> <ul> <li>Bump @testing-library/dom to 7.22.3 (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/766">#766</a>) (<a href="https://github.com/testing-library/react-testing-library/commit/276eb656feffed6e3da14b34965df889ed31b0cd">276eb65</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/testing-library/react-testing-library/commit/220d8d4fd1f29c64e5094a6efa46fdee7b8105de"><code>220d8d4</code></a> fix(cleanup): remove unnecessary async/await (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/778">#778</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/20acad35b1a9a3f614fa183b82a5bd606336889f"><code>20acad3</code></a> docs: add artem-malko as a contributor (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/777">#777</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/9191890c882314c0048206e23a1fff40561b7ee4"><code>9191890</code></a> fix: Update typings for cleanup (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/776">#776</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/491bedc294f7bfc56127ecfc396430aa0d3debb1"><code>491bedc</code></a> docs: add antonhalim as a contributor (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/775">#775</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/88d42769f1d13a43e2e073677bf9fcff844b2d49"><code>88d4276</code></a> Improve some documentation (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/770">#770</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/534ea33d514297ed368530f39e210675e1553979"><code>534ea33</code></a> chore: update all deps</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/693228ce10f23e2b695730ea88dbdaa35506e00e"><code>693228c</code></a> feat: use act to flush instead of custom implementation (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/768">#768</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/5a10621fd081f44074a3a77a2ebc9e246c1c4db2"><code>5a10621</code></a> docs: add radar as a contributor (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/767">#767</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/276eb656feffed6e3da14b34965df889ed31b0cd"><code>276eb65</code></a> fix: Bump @testing-library/dom to 7.22.3 (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/766">#766</a>)</li> <li><a href="https://github.com/testing-library/react-testing-library/commit/9aac1570d8bccfdf4584b22196cc23a479b47aff"><code>9aac157</code></a> fix(fireEvent): Make sure react dispatches focus/blur events (<a href="https://github-redirect.dependabot.com/testing-library/react-testing-library/issues/758">#758</a>)</li> <li>Additional commits viewable in <a href="https://github.com/testing-library/react-testing-library/compare/v10.0.4...v11.0.2">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps react-docgen-typescript from 1.16.4 to 1.20.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/styleguidist/react-docgen-typescript/releases">react-docgen-typescript's releases</a>.</em></p> <blockquote> <h2>v1.20.4</h2> <ul> <li>fix jsDoc visibleName support thanks to <a href="https://github.com/hipstersmoothie">@hipstersmoothie</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/289">#289</a></li> </ul> <h2>v1.20.3</h2> <ul> <li>fix docgen for default exports wrapped in React.memo or React.forwardRef - thanks to <a href="https://github.com/hipstersmoothie">@hipstersmoothie</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/288">#288</a></li> <li>follow default props that are PropertyAccessExpressions - thanks to <a href="https://github.com/hipstersmoothie">@hipstersmoothie</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/286">#286</a></li> </ul> <h2>v1.20.2</h2> <ul> <li>use just the description for JSDoc comment instead of full comment - thanks to <a href="https://github.com/hipstersmoothie">@hipstersmoothie</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/283">#283</a></li> <li>respect base apparentProperties in unions - thanks to <a href="https://github.com/hipstersmoothie">@hipstersmoothie</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/272">#272</a></li> </ul> <h2>v1.20.1</h2> <ul> <li>fix - Cannot read property 'getSourceFile' of undefined thanks to <a href="https://github.com/buhichan">@buhichan</a> PR 276</li> </ul> <h2>v1.20.0</h2> <ul> <li>handle complex generic props - thanks to <a href="https://github.com/hipstersmoothie">@hipstersmoothie</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/268">#268</a></li> <li>added ability to handle more complex union types - thanks to <a href="https://github.com/davidlindley">@davidlindley</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/269">#269</a></li> <li>Added filter to remove same name components - thanks to <a href="https://github.com/davidlindley">@davidlindley</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/270">#270</a></li> <li>Read default prop values from inside a forwardRef - thanks to <a href="https://github.com/Tigge">@Tigge</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/271">#271</a></li> </ul> <h2>v1.18.0</h2> <ul> <li>feat: adds the ability to generate docs for static sub-components - thanks to <a href="https://github.com/hipstersmoothie">@hipstersmoothie</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/265">#265</a></li> </ul> <h2>v1.17.1</h2> <ul> <li>fix: Components using React.forwardRef get the name ForwardRefExoticComponent (<a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/215">#215</a>) - thanks to <a href="https://github.com/hipstersmoothie">@hipstersmoothie</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/263">#263</a></li> </ul> <h2>v1.17.0</h2> <ul> <li>Added shouldExtractValuesFromUnion option - thanks to <a href="https://github.com/hipstersmoothie">@hipstersmoothie</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/261">#261</a></li> </ul> <h2>v1.16.6</h2> <ul> <li>feat: allow jsdoc <a href="https://github.com/type">@type</a> to override a prop's type - thanks to <a href="https://github.com/CyriacBr">@CyriacBr</a> PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/258">#258</a></li> </ul> <h2>v1.16.5</h2> <ul> <li>fixes: <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/176">#176</a> Incorrectly parse props with several named exports and consts - thanks to <a href="https://github.com/hipstersmoothie">@hipstersmoothie</a> and his PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/253">#253</a></li> <li>fix parse error for export default interface - thanks to <a href="https://github.com/ddelbondio">@ddelbondio</a> and his PR <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/257">#257</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/styleguidist/react-docgen-typescript/commit/be298ce82642c0feb2c4ff014994dec21e1a9556"><code>be298ce</code></a> Update package.json</li> <li><a href="https://github.com/styleguidist/react-docgen-typescript/commit/39e962571d9532aa1a77f3d1bcc8c06f50ac6672"><code>39e9625</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/289">#289</a> from hipstersmoothie/visibleName</li> <li><a href="https://github.com/styleguidist/react-docgen-typescript/commit/efe624acfcc6a058f819c95220aad1abe69c0313"><code>efe624a</code></a> fix jsDoc visibleName support</li> <li><a href="https://github.com/styleguidist/react-docgen-typescript/commit/dc9ba096cacd9d572ad1f27d7b500ee6cbb19948"><code>dc9ba09</code></a> Update package.json</li> <li><a href="https://github.com/styleguidist/react-docgen-typescript/commit/b89fd1e033c510fdd2399f4a8a51d6efddf80e22"><code>b89fd1e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/288">#288</a> from hipstersmoothie/react-memo</li> <li><a href="https://github.com/styleguidist/react-docgen-typescript/commit/cd8cc15e668ce061d1262f76ae30419bf3e599ab"><code>cd8cc15</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/styleguidist/react-docgen-typescript/issues/286">#286</a> from hipstersmoothie/defaults</li> <li><a href="https://github.com/styleguidist/react-docgen-typescript/commit/afc4ef97a2e95f247b37676f829169d66f8efe2e"><code>afc4ef9</code></a> fix wrapping default export in React.forwardRef</li> <li><a href="https://github.com/styleguidist/react-docgen-typescript/commit/974a73a14b2641ee4b054376a8cf41b67a8d247b"><code>974a73a</code></a> fix docgen for components wrapped in React.memo</li> <li><a href="https://github.com/styleguidist/react-docgen-typescript/commit/6765eb2944b71f188feb34507812e2779b487671"><code>6765eb2</code></a> follow default props that are PropertyAccessExpressions</li> <li><a href="https://github.com/styleguidist/react-docgen-typescript/commit/756f8493916c82f1906dd4edbef67a6b2fb411ed"><code>756f849</code></a> Update package.json</li> <li>Additional commits viewable in <a href="https://github.com/styleguidist/react-docgen-typescript/compare/v1.16.4...v1.20.4">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps ts-jest from 26.0.0 to 26.3.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md">ts-jest's changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/kulshekhar/ts-jest/compare/v26.2.0...v26.3.0">26.3.0</a> (2020-08-25)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>config:</strong> compute cache key without reading <code>package.json</code> (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1893">#1893</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/4875a58345666e0407f9f5b3f95049ae2c9d056d">4875a58</a>), closes <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1892">#1892</a></li> </ul> <h3>Features</h3> <ul> <li>support TypeScript 4.0 (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1889">#1889</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/f070e9334a9cf31fa6f0d73b3f69d805be72601d">f070e93</a>)</li> </ul> <h1><a href="https://github.com/kulshekhar/ts-jest/compare/v26.1.4...v26.2.0">26.2.0</a> (2020-08-11)</h1> <h3>Bug Fixes</h3> <ul> <li>move <code>@types/jest</code> to dependencies to work well with yarn 2 (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1859">#1859</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/5eb1389caaa0431e49ae6ca26b18e290208e0a0a">5eb1389</a>), closes <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1857">#1857</a></li> </ul> <h3>Features</h3> <ul> <li><strong>config:</strong> support <code>after</code> and <code>afterDeclarations</code> AST transformers (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1831">#1831</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/be20a7c78c97027b33aec178da0f533095790871">be20a7c</a>)</li> <li>allow opt-out version warning message by environment variable <code>TS_JEST_DISABLE_VER_CHECKER</code> (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1821">#1821</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/e6b42fcd7a75c7b14e636a45cda04de18a46908b">e6b42fc</a>), closes <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1774">#1774</a></li> </ul> <h2><a href="https://github.com/kulshekhar/ts-jest/compare/v26.1.3...v26.1.4">26.1.4</a> (2020-07-28)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>compiler:</strong> check if test file exists before doing type check (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1827">#1827</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/cc89d5b1f912975cd29114c5b3b0bf18426816da">cc89d5b</a>), closes <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1506">#1506</a></li> </ul> <h2><a href="https://github.com/kulshekhar/ts-jest/compare/v26.1.2...v26.1.3">26.1.3</a> (2020-07-16)</h2> <h3>Bug Fixes</h3> <ul> <li>revert <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1793">#1793</a> (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1804">#1804</a>) (<a href="https://github.com/kulshekhar/ts-jest/commit/5095525333c8579c9c5e7f3149294b31f28d6774">5095525</a>)</li> </ul> <h2><a href="https://github.com/kulshekhar/ts-jest/compare/v26.1.1...v26.1.2">26.1.2</a> (2020-07-13)</h2> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/kulshekhar/ts-jest/commit/46e4c9faa4a1e42c206ebcf4c88d5b883ded5284"><code>46e4c9f</code></a> chore(release): 26.3.0 (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1900">#1900</a>)</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/f0e6ec187dbc15ace70d4349f736ab749a2ce3a5"><code>f0e6ec1</code></a> build(deps-dev): bump lint-staged from 10.2.11 to 10.2.13 (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1904">#1904</a>)</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/2c738c4db73c9026d9772dc3b0121ad52504163e"><code>2c738c4</code></a> build(deps-dev): bump @typescript-eslint/eslint-plugin (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1902">#1902</a>)</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/3e062a886c0460f6fff065d098d4822d3e24d159"><code>3e062a8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1903">#1903</a> from kulshekhar/dependabot/npm_and_yarn/types/react-...</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/219456869c2f0af0a5320c0f6f02fd72a528ce7b"><code>2194568</code></a> build(deps-dev): bump @types/react from 16.9.46 to 16.9.47</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/26d00c9b4e298438508215cab9586b13b10f09c4"><code>26d00c9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1901">#1901</a> from kulshekhar/dependabot/npm_and_yarn/typescript-e...</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/9bec2ca35c84ecf8193c929bb5b1bba4c1925f93"><code>9bec2ca</code></a> build(deps-dev): bump @typescript-eslint/parser from 3.10.0 to 3.10.1</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/93046fbeb1f2b53ffe99c0be85a952d4759cf322"><code>93046fb</code></a> build(deps-dev): bump @typescript-eslint/eslint-plugin (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1899">#1899</a>)</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/490039accce4010ed1d3379c2adad7925aa3450a"><code>490039a</code></a> build(deps-dev): bump @typescript-eslint/parser from 3.9.1 to 3.10.0 (<a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1898">#1898</a>)</li> <li><a href="https://github.com/kulshekhar/ts-jest/commit/4ad118c801101142f804141ccbb17874d044679d"><code>4ad118c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/kulshekhar/ts-jest/issues/1897">#1897</a> from kulshekhar/dependabot/npm_and_yarn/prettier-2.1.0</li> <li>Additional commits viewable in <a href="https://github.com/kulshekhar/ts-jest/compare/v26.0.0...v26.3.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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps ts-loader from 7.0.4 to 8.0.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TypeStrong/ts-loader/releases">ts-loader's releases</a>.</em></p> <blockquote> <h2>v8.0.3</h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1170">Fix the wrong instance caching when using <code>appendTsSuffixTo</code> and <code>appendTsxSuffixTo</code> together</a> - thanks <a href="https://github.com/meowtec">@meowtec</a></li> </ul> <h2>v8.0.2</h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1159">Fix 2 issues with experimentalWatchApi</a> - thanks <a href="https://github.com/appzuka">@appzuka</a></li> </ul> <h2>v8.0.2 attempt <a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/2">#2</a></h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1159">Fix 2 issues with experimentalWatchApi</a> - thanks <a href="https://github.com/appzuka">@appzuka</a></li> </ul> <p>Required a fix to the release mechanism <a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1166">TypeStrong/ts-loader#1166</a></p> <h2>v8.0.1</h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1135">Fix webpack deprecations</a> - thanks <a href="https://github.com/g-plane">@g-plane</a></li> </ul> <h2>v8.0.0</h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1136">Support for symlinks in project references</a> - thanks <a href="https://github.com/sheetalkamat">@sheetalkamat</a>!</li> <li><code>ts-loader</code> now supports TypeScript 3.6 and greater <strong>BREAKING CHANGE</strong></li> </ul> <h2>v7.0.5</h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1115">Apply other loaders when updating files in watch mode</a> - thanks <a href="https://github.com/iorate">@iorate</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/TypeStrong/ts-loader/blob/master/CHANGELOG.md">ts-loader's changelog</a>.</em></p> <blockquote> <h2>v8.0.3</h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1170">Fix the wrong instance caching when using <code>appendTsSuffixTo</code> and <code>appendTsxSuffixTo</code> together</a> - thanks <a href="https://github.com/meowtec">@meowtec</a></li> </ul> <h2>v8.0.2</h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1159">Fix 2 issues with experimentalWatchApi</a> - thanks <a href="https://github.com/appzuka">@appzuka</a></li> </ul> <h2>v8.0.1</h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1135">Fix webpack deprecations</a> - thanks <a href="https://github.com/g-plane">@g-plane</a></li> </ul> <h2>v8.0.0</h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1136">Support for symlinks in project references</a> - thanks <a href="https://github.com/sheetalkamat">@sheetalkamat</a>!</li> <li><code>ts-loader</code> now supports TypeScript 3.6 and greater <strong>BREAKING CHANGE</strong></li> </ul> <h2>v7.0.5</h2> <ul> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1109">Add a delay before starting the comparison tests to avoid failures under WSL</a> - thanks <a href="https://github.com/appzuka">@appzuka</a></li> <li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1115">Apply other loaders when updating files in watch mode</a> - thanks <a href="https://github.com/iorate">@iorate</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TypeStrong/ts-loader/commit/0e64ceb53012aeabfcce98bed5b76e5b5a866812"><code>0e64ceb</code></a> Fix getOptionsHash when two options has different props but same values. (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1170">#1170</a>)</li> <li><a href="https://github.com/TypeStrong/ts-loader/commit/562b631e24f61d0dd4084e1e6db86e70f4772982"><code>562b631</code></a> doc: fix links (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1168">#1168</a>)</li> <li><a href="https://github.com/TypeStrong/ts-loader/commit/961e83cae0dd94a698b4a6b29b31772d52e26ae8"><code>961e83c</code></a> dont' install chrome (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1166">#1166</a>)</li> <li><a href="https://github.com/TypeStrong/ts-loader/commit/2f6cbe84777e07364f89be5db97d1a02358554c5"><code>2f6cbe8</code></a> Fix 2 issues with experimentalWatchApi (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1159">#1159</a>)</li> <li><a href="https://github.com/TypeStrong/ts-loader/commit/a77470f9072bf24dc7165653c2ee86b243b65040"><code>a77470f</code></a> Bump elliptic from 6.4.0 to 6.5.3 in /examples/react-babel-karma-gulp (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1165">#1165</a>)</li> <li><a href="https://github.com/TypeStrong/ts-loader/commit/fb8a90ec5b0e5be2cc17a5a7495efb2dd1b724c2"><code>fb8a90e</code></a> Bump elliptic from 6.4.0 to 6.5.3 in /examples/thread-loader (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1164">#1164</a>)</li> <li><a href="https://github.com/TypeStrong/ts-loader/commit/83ab73b03f67e7defb19fb0ed203632296a4654a"><code>83ab73b</code></a> Bump elliptic from 6.4.1 to 6.5.3 in /examples/vanilla (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1163">#1163</a>)</li> <li><a href="https://github.com/TypeStrong/ts-loader/commit/8d40313075a77ecff612e42fa293cc44162d56bb"><code>8d40313</code></a> Bump elliptic in /examples/fork-ts-checker-webpack-plugin (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1162">#1162</a>)</li> <li><a href="https://github.com/TypeStrong/ts-loader/commit/dfee22bbb09c4d016b013657e9357c404b9f26e1"><code>dfee22b</code></a> Bump lodash in /test/execution-tests/2.1.4_babel-allowJsImportTypes (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1149">#1149</a>)</li> <li><a href="https://github.com/TypeStrong/ts-loader/commit/cd59216c2a46e64116bdedb664ce20249624b89d"><code>cd59216</code></a> Fixed TsconfigPathsPlugin config path in Readme (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1081">#1081</a>)</li> <li>Additional commits viewable in <a href="https://github.com/TypeStrong/ts-loader/compare/v7.0.4...v8.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)@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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps @testing-library/jest-dom from 5.8.0 to 5.11.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/jest-dom/releases">@testing-library/jest-dom's releases</a>.</em></p> <blockquote> <h2>v5.11.4</h2> <h2><a href="https://github.com/testing-library/jest-dom/compare/v5.11.3...v5.11.4">5.11.4</a> (2020-08-22)</h2> <h3>Bug Fixes</h3> <ul> <li>do not explicitly depend on jest assertion utils (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/250">#250</a>) (<a href="https://github.com/testing-library/jest-dom/commit/2da8c71eef4bdfaf7787710a29cbc7956d8529d9">2da8c71</a>)</li> </ul> <h2>v5.11.3</h2> <h2><a href="https://github.com/testing-library/jest-dom/compare/v5.11.2...v5.11.3">5.11.3</a> (2020-08-11)</h2> <h3>Bug Fixes</h3> <ul> <li>Changed toHaveStyle to use getPropertyValue instead of accessing the property directly (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/285">#285</a>) (<a href="https://github.com/testing-library/jest-dom/commit/92176e1ae018a9c4077e25cfefd3907ab8b61c85">92176e1</a>)</li> </ul> <h2>v5.11.2</h2> <h2><a href="https://github.com/testing-library/jest-dom/compare/v5.11.1...v5.11.2">5.11.2</a> (2020-07-28)</h2> <h3>Bug Fixes</h3> <ul> <li>Suggest using toBeEmptyDOMElement instead of toBeEmpty (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/284">#284</a>) (<a href="https://github.com/testing-library/jest-dom/commit/2cd17d34acd67529e5f87b66ca380e9302cdcb23">2cd17d3</a>)</li> </ul> <h2>v5.11.1</h2> <h2><a href="https://github.com/testing-library/jest-dom/compare/v5.11.0...v5.11.1">5.11.1</a> (2020-07-15)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>toHaveStyle:</strong> strictly match empty values (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/276">#276</a>) (<a href="https://github.com/testing-library/jest-dom/commit/5bea35075d54a7ccf4c93b1bd06a7182307dd809">5bea350</a>), closes <a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/272">#272</a></li> </ul> <h2>v5.11.0</h2> <h1><a href="https://github.com/testing-library/jest-dom/compare/v5.10.1...v5.11.0">5.11.0</a> (2020-06-25)</h1> <h3>Features</h3> <ul> <li>extend toBeChecked to support any role that's compatible (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/267">#267</a>) (<a href="https://github.com/testing-library/jest-dom/commit/c135d0be8370af61c8f34b3125765f5bba813133">c135d0b</a>)</li> </ul> <h2>v5.10.1</h2> <h2><a href="https://github.com/testing-library/jest-dom/compare/v5.10.0...v5.10.1">5.10.1</a> (2020-06-14)</h2> <h3>Bug Fixes</h3> <ul> <li>element not allowed to be disabled being returned as disabled (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/261">#261</a>) (<a href="https://github.com/testing-library/jest-dom/commit/5e392226d34b2318f21a4f5ffcfd8c9a16d6377b">5e39222</a>)</li> </ul> <h2>v5.10.0</h2> <h1><a href="https://github.com/testing-library/jest-dom/compare/v5.9.0...v5.10.0">5.10.0</a> (2020-06-11)</h1> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/testing-library/jest-dom/commit/2da8c71eef4bdfaf7787710a29cbc7956d8529d9"><code>2da8c71</code></a> fix: do not explicitly depend on jest assertion utils (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/250">#250</a>)</li> <li><a href="https://github.com/testing-library/jest-dom/commit/92176e1ae018a9c4077e25cfefd3907ab8b61c85"><code>92176e1</code></a> fix: Changed toHaveStyle to use getPropertyValue instead of accessing the pro...</li> <li><a href="https://github.com/testing-library/jest-dom/commit/9b0510ba6e75e6358e55f9f80224632d5ce48713"><code>9b0510b</code></a> doc: match toBeInTheDocument examples with good practices (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/287">#287</a>)</li> <li><a href="https://github.com/testing-library/jest-dom/commit/2cd17d34acd67529e5f87b66ca380e9302cdcb23"><code>2cd17d3</code></a> fix: Suggest using toBeEmptyDOMElement instead of toBeEmpty (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/284">#284</a>)</li> <li><a href="https://github.com/testing-library/jest-dom/commit/51ed5bfddd18c89ece27b659b792f86dc74c43ee"><code>51ed5bf</code></a> docs: add just-boris as a contributor (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/279">#279</a>)</li> <li><a href="https://github.com/testing-library/jest-dom/commit/5bea35075d54a7ccf4c93b1bd06a7182307dd809"><code>5bea350</code></a> fix(toHaveStyle): strictly match empty values (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/276">#276</a>)</li> <li><a href="https://github.com/testing-library/jest-dom/commit/33c35c66c2cfec472a45c8cbd331b29610875541"><code>33c35c6</code></a> docs: add brrianalexis as a contributor (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/275">#275</a>)</li> <li><a href="https://github.com/testing-library/jest-dom/commit/f36fe540c891870970b9ca3374eaad86e9c00a4b"><code>f36fe54</code></a> test: removed duplicate assertion (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/274">#274</a>)</li> <li><a href="https://github.com/testing-library/jest-dom/commit/7ea936d62cfda3aaa6f4ee9a2b7a0aa576e2e55a"><code>7ea936d</code></a> docs: add kboedges as a contributor (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/271">#271</a>)</li> <li><a href="https://github.com/testing-library/jest-dom/commit/0b2c57ee677e08772674c9e66611a518265d9a09"><code>0b2c57e</code></a> build: update css dependency to latest version (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/270">#270</a>)</li> <li>Additional commits viewable in <a href="https://github.com/testing-library/jest-dom/compare/v5.8.0...v5.11.4">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps dot-prop from 4.2.0 to 4.2.1. This update includes a security fix. <details> <summary>Vulnerabilities fixed</summary> <p><em>Sourced from <a href="https://github.com/advisories/GHSA-ff7x-qrg7-qggm">The GitHub Security Advisory Database</a>.</em></p> <blockquote> <p><strong>Prototype Pollution in dot-prop</strong> Prototype pollution vulnerability in dot-prop npm package before versions 4.2.1 and 5.1.1 allows an attacker to add arbitrary properties to JavaScript language constructs such as objects.</p> <p>Affected versions: < 4.2.1</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/sindresorhus/dot-prop/commits">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps cypress from 4.6.0 to 4.12.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cypress-io/cypress/releases">cypress's releases</a>.</em></p> <blockquote> <h2>4.12.1</h2> <p><em>Released 8/5/2020</em></p> <p><strong>Bugfixes:</strong></p> <ul> <li>The error <code>Cannot set property 'err' of undefined</code> will no longer incorrectly throw when rerunning tests in the Test Runner. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/7874">#7874</a>.</li> <li>Skipping the last test before a nested suite with a <code>before</code> hook will now correctly run the tests in the suite following the skipped test. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8086">#8086</a>.</li> </ul> <p><strong>Dependency Updates:</strong></p> <ul> <li>Upgraded <code>md5</code> from <code>2.2.1</code> to <code>2.3.0</code>. Addressed in <a href="https://github-redirect.dependabot.com/cypress-io/cypress/pull/8161">#8161</a>.</li> <li>Upgraded <code>electron-context-menu</code> from <code>0.15.1</code> to <code>2.2.0</code>. Addressed in <a href="https://github-redirect.dependabot.com/cypress-io/cypress/pull/8180">#8180</a>.</li> </ul> <h2>4.12.0</h2> <p><em>Released 8/3/2020</em></p> <p><strong>Features:</strong></p> <ul> <li>Now you can control whether screenshots are automatically taken on test failure during <code>cypress run</code> by setting <a href="https://on.cypress.io/configuration#Screenshots">screenshotOnRunFailure</a> in your configuration. Addresses <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/5029">#5029</a>.</li> <li>The <code>pluginsFile</code> now has access to a readonly <code>version</code> property within the <code>config</code> object that returns the current Cypress version being run. This will allow plugins to better target specific Cypress versions. Addresses <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/6352">#6352</a>.</li> <li>During <code>cypress open</code>, you can now run a subset of all specs by <a href="https://on.cypress.io/writing-and-organizing-tests#Run-filtered-specs">entering a text search filter and clicking 'Run n tests'</a>. Addresses <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/6581">#6581</a>.</li> </ul> <p><strong>Bugfixes:</strong></p> <ul> <li><code>position: fixed</code> elements that have a parent with <code>pointer-events: none</code> will now correctly evaluate as visible. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/6675">#6675</a>.</li> <li>Applications using custom elements will no longer trigger infinite XHR request loops. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/1068">#1068</a>.</li> <li>When snapshotting the DOM, Cypress no longer causes <code>attributeChangedCallback</code> to be triggered on custom elements. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/7187">#7187</a>.</li> <li>Spec files containing <code>+</code> characters now properly run in Cypress. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/5909">#5909</a>.</li> <li>When using the <code>fx</code> shortcut in <a href="https://on.cypress.io/route"><code>cy.route()</code></a>, an error is now thrown when the fixture file cannot be found. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/7818">#7818</a>.</li> <li>Cypress no longer thrown <code>Cannot read property '__error' of null</code> error when passing a file containing <code>null</code> content to <a href="https://on.cypress.io/fixture"><code>cy.fixture()</code></a>. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8010">#8010</a>.</li> <li>Values containing exponential operators passed to <code>--env</code> via the command line are now properly read. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/6891">#6891</a>.</li> <li>The "Open in IDE" button no longer disappears from hooks when the tests are manually rerun. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8094">#8094</a>.</li> <li>When <a href="https://on.cypress.io/experiments"><code>experimentalSourceRewriting</code></a> is enabled, AST rewriting will no longer return an output before the body is done being written. This would happen when the response body was too large and the response would be sent while the body was still being modified. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8043">#8043</a>.</li> <li>When using <a href="https://on.cypress.io/type"><code>.type()</code></a>, Cypress now properly types into an input within an iframe that auto focuses the input. Fixes <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8111">#8111</a>.</li> </ul> <p><strong>Misc:</strong></p> <ul> <li>Dependencies for our <code>cypress</code> npm package are no longer pinned to a specific version. This allows the use of <code>npm audit fix</code> to fix security vulnerabilities without needing a patch release from Cypress. Addresses <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8046">#8046</a>.</li> <li>We now collect environment variables for AWS CodeBuild when recording to the Dashboard. Addressed <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8101">#8101</a>.</li> <li>Types inside Module API are now accessible via the <code>CypressCommandLine</code> namespace. Addresses <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/7309">#7309</a>.</li> <li>We added more type definitions for the <a href="https://on.cypress.io/should"><code>.should()</code></a> command. Addresses <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/5573">#5573</a>.</li> <li>Cookie command's <code>expiry</code> property type is now a Number instead of a String. Addresses <a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8144">#8144</a>.</li> <li>There are some minor visual improvements to the Test Runner's Command Log when hovering, focusing and clicking on hook titles and pending tests. Addressed in <a href="https://github-redirect.dependabot.com/cypress-io/cypress/pull/8153">#8153</a>.</li> </ul> <p><strong>Dependency Updates:</strong></p> <ul> <li>Upgraded <code>jimp</code> from <code>0.13.0</code> to <code>0.14.0</code>. Addressed in <a href="https://github-redirect.dependabot.com/cypress-io/cypress/pull/8102">#8102</a>.</li> <li>Upgraded <code>moment</code> from <code>2.26.0</code> to <code>2.27.0</code>. Addressed in <a href="https://github-redirect.dependabot.com/cypress-io/cypress/pull/8122">#8122</a>.</li> </ul> <h2>4.11.0</h2> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cypress-io/cypress/commit/2156e3e409aa9394ea558f6f41c3280ec3ea3da7"><code>2156e3e</code></a> release 4.12.1 [skip ci]</li> <li><a href="https://github.com/cypress-io/cypress/commit/a54d79312e72a666e6082d3adbf8e08277bee8c3"><code>a54d793</code></a> chore(deps): update dependency markdown-it to version .x 🌟 (<a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8183">#8183</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/640505e1df835bf2e2d96e40991ca13668ea99f8"><code>640505e</code></a> chore(deps): update dependency react-inspector to version .x 🌟 (<a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8182">#8182</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/d3e90d6c8c2337476abb8c5958ddabccf81dbc85"><code>d3e90d6</code></a> fix(deps): update dependency electron-context-menu to version .x 🌟 (<a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8180">#8180</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/996fe97ee8f3eaf59d4afca571452f4f6674c3ee"><code>996fe97</code></a> fix(deps): update dependency md5 to version 2.3.0 🌟 (<a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8161">#8161</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/3ad06dba54760cbeac36b993f1fdcd6492d0b619"><code>3ad06db</code></a> fix: it.skip no longer causes hooks to be assigned to the wrong test (<a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8113">#8113</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/580087d5dc082c5a4b83465a19d87dbb1b75fb1b"><code>580087d</code></a> release 4.12.0 [skip ci]</li> <li><a href="https://github.com/cypress-io/cypress/commit/9d19a9f0efba3dd69eb8f93b6bd0d8dfeda7f637"><code>9d19a9f</code></a> fix: Capture env vars from AWS Code Build (<a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8159">#8159</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/e0f587e5b74aa5217374547e5ce9b601b6472583"><code>e0f587e</code></a> fix: iFrame input focus should not cause blur if input already activeElement ...</li> <li><a href="https://github.com/cypress-io/cypress/commit/19393e09d14123aa65f21cdbde1ba9b25a77b3e2"><code>19393e0</code></a> fix(reporter): minor UI fixes and improvements (<a href="https://github-redirect.dependabot.com/cypress-io/cypress/issues/8153">#8153</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cypress-io/cypress/compare/v4.6.0...v4.12.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/~chrisbreiding">chrisbreiding</a>, a new releaser for cypress 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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps elliptic from 6.5.2 to 6.5.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/indutny/elliptic/commit/8647803dc3d90506aa03021737f7b061ba959ae1"><code>8647803</code></a> 6.5.3</li> <li><a href="https://github.com/indutny/elliptic/commit/856fe4d99fe7b6200556e6400b3bf585b1721bec"><code>856fe4d</code></a> signature: prevent malleability and overflows</li> <li>See full diff in <a href="https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.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)@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 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps elliptic from 6.5.2 to 6.5.3. This update includes a security fix. <details> <summary>Vulnerabilities fixed</summary> <p><em>Sourced from <a href="https://github.com/advisories/GHSA-vh7m-p724-62c2">The GitHub Security Advisory Database</a>.</em></p> <blockquote> <p><strong>Signature Malleabillity in elliptic</strong> The Elliptic package before version 6.5.3 for Node.js allows ECDSA signature malleability via variations in encoding, leading '\0' bytes, or integer overflows. This could conceivably have a security-relevant impact if an application relied on a single canonical signature.</p> <p>Affected versions: < 6.5.3</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/indutny/elliptic/commit/8647803dc3d90506aa03021737f7b061ba959ae1"><code>8647803</code></a> 6.5.3</li> <li><a href="https://github.com/indutny/elliptic/commit/856fe4d99fe7b6200556e6400b3bf585b1721bec"><code>856fe4d</code></a> signature: prevent malleability and overflows</li> <li>See full diff in <a href="https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.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)@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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps @testing-library/react-hooks from 3.2.1 to 3.4.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/react-hooks-testing-library/releases">@testing-library/react-hooks's releases</a>.</em></p> <blockquote> <h2>v3.4.1</h2> <h2>Changes</h2> <ul> <li>The <code>wait</code> async util has been deprecated and replaced with <code>waitFor</code> (<a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/408">#408</a>)</li> <li><code>waitFor</code> and <code>waitForValueToChange</code> async utils can now test their conditions periodically, even if the hook has not rerendered, using the new <code>interval</code> option (<a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/408">#408</a>)</li> <li>Bumped minimum type definition version (<a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/414">#414</a>)</li> <li>Docs have been updated to show how props can be passed to <code>wrapper</code> components (<a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/414">#414</a>)</li> </ul> <h2>v3.4.0</h2> <h2>⚠️ DO NOT USE THIS VERSION ⚠️</h2> <p>This version was accidentally published with some experimental code in the in the babel output directory and should not be used. IT has been deprecated in NPM and <code>3.4.1</code> has been published with the correct output.</p> <h2>V3.3.0</h2> <h2>Changes</h2> <ul> <li><code>wrapper</code> component can now access the <code>initialProps</code> and new props from <code>rerender</code> calls when creating providers (<a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/322">#322</a>, <a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/381">#381</a>)</li> <li>cleanup functionality has been updated to support <code>mocha</code>/<code>esm</code> environments (<a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/375">#375</a>, <a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/377">#377</a>)</li> <li>dependency updates (thanks <a href="https://github.com/renovate-bot">@renovate-bot</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/c075dd33c621a5bb7db231522f50a7a286db72ce"><code>c075dd3</code></a> 3.4.1</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/f1779f87b558af371ac92397be5140898a629e81"><code>f1779f8</code></a> 3.4.0</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/682042d09a6b18e196b84a7751cdee926687d593"><code>682042d</code></a> Bump package lock</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/50c97202d40e36a8338e375f6c49016038730276"><code>50c9720</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/408">#408</a> from testing-library/pr/wait-intervals</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/b7a21031687e8826a2deb5a4cb148115a50ddaf7"><code>b7a2103</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/testing-library/react-hooks-testing-library/issues/414">#414</a> from erozak/pr/update-typings</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/e88a323275b8f7eed7c53de4b41a574e38ddd73b"><code>e88a323</code></a> Update the docs</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/18008d5665cc3bf2b3b628f486298327c2b35c5b"><code>18008d5</code></a> Revert "Update docs"</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/2b02d313d6cec3716658e77349f4ba76994ba7ee"><code>2b02d31</code></a> Update package-lock.json</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/482ee460783439f6eeb97e3da68bb26cccc53030"><code>482ee46</code></a> Update docs</li> <li><a href="https://github.com/testing-library/react-hooks-testing-library/commit/b94af2b0d753952af7a203d3b3a4c83feb223053"><code>b94af2b</code></a> Upgrade typings to v3.3.0</li> <li>Additional commits viewable in <a href="https://github.com/testing-library/react-hooks-testing-library/compare/v3.2.1...v3.4.1">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps lodash from 4.17.15 to 4.17.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lodash/lodash/releases">lodash's releases</a>.</em></p> <blockquote> <h2>4.17.16</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/d7fbc52ee0466a6d248f047b5d5c3e6d1e099056"><code>d7fbc52</code></a> Bump to v4.17.19</li> <li><a href="https://github.com/lodash/lodash/commit/2e1c0f22f425e9c013815b2cd7c2ebd51f49a8d6"><code>2e1c0f2</code></a> Add npm-package</li> <li><a href="https://github.com/lodash/lodash/commit/1b6c282299f4e0271f932b466c67f0f822aa308e"><code>1b6c282</code></a> Bump to v4.17.18</li> <li><a href="https://github.com/lodash/lodash/commit/a370ac81408de2da77a82b3c4b61a01a3b9c2fac"><code>a370ac8</code></a> Bump to v4.17.17</li> <li><a href="https://github.com/lodash/lodash/commit/1144918f3578a84fcc4986da9b806e63a6175cbb"><code>1144918</code></a> Rebuild lodash and docs</li> <li><a href="https://github.com/lodash/lodash/commit/3a3b0fd339c2109563f7e8167dc95265ed82ef3e"><code>3a3b0fd</code></a> Bump to v4.17.16</li> <li><a href="https://github.com/lodash/lodash/commit/c84fe82760fb2d3e03a63379b297a1cc1a2fce12"><code>c84fe82</code></a> fix(zipObjectDeep): prototype pollution (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4759">#4759</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/e7b28ea6cb17b4ca021e7c9d66218c8c89782f32"><code>e7b28ea</code></a> Sanitize sourceURL so it cannot affect evaled code (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4518">#4518</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/0cec225778d4ac26c2bac95031ecc92a94f08bbb"><code>0cec225</code></a> Fix lodash.isEqual for circular references (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4320">#4320</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4515">#4515</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/94c3a8133cb4fcdb50db72b4fd14dd884b195cd5"><code>94c3a81</code></a> Document matches* shorthands for over* methods (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4510">#4510</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4514">#4514</a>)</li> <li>Additional commits viewable in <a href="https://github.com/lodash/lodash/compare/4.17.15...4.17.19">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/~mathias">mathias</a>, a new releaser for lodash 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 2 months
PR closed atomicpages/pretty-checkbox-react
Bumps typescript from 3.9.3 to 3.9.7. <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 3.9.7</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-3-9/">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+3.9.0%22+is%3Aclosed+">fixed issues query for Typescript v3.9.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.1%22+is%3Aclosed+">fixed issues query for Typescript v3.9.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.2%22+is%3Aclosed+">fixed issues query for Typescript v3.9.2 (Final)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.3%22+is%3Aclosed+">fixed issues query for Typescript v3.9.3 (patch release)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.5%22+is%3Aclosed+">fixed issues query for Typescript v3.9.5 (patch release)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.6%22+is%3Aclosed+">fixed issues query for Typescript v3.9.6 (patch release)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?q=milestone%3A%22TypeScript+3.9.7%22+is%3Aclosed+">fixed issues query for Typescript v3.9.7 (patch release)</a>.</li> </ul> <p>(note, 3.9.4 was intentionally skipped due to minor complications in publishing)</p> <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-397">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> <h2>TypeScript 3.9.6</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-3-9/">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+3.9.0%22+is%3Aclosed+">fixed issues query for Typescript v3.9.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.1%22+is%3Aclosed+">fixed issues query for Typescript v3.9.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.2%22+is%3Aclosed+">fixed issues query for Typescript v3.9.2 (Final)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.3%22+is%3Aclosed+">fixed issues query for Typescript v3.9.3 (patch release)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.5%22+is%3Aclosed+">fixed issues query for Typescript v3.9.5 (patch release)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.6%22+is%3Aclosed+">fixed issues query for Typescript v3.9.6 (patch release)</a>.</li> </ul> <p>(note, 3.9.4 was intentionally skipped due to minor complications in publishing)</p> <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-396">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> <h2>TypeScript 3.9.5</h2> <p>This release contains <a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.5%22+is%3Aclosed+">bug fixes in type-checking, emit, and editor scenarios</a>.</p> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-3-9/">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+3.9.0%22+is%3Aclosed+">fixed issues query for Typescript v3.9.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.1%22+is%3Aclosed+">fixed issues query for Typescript v3.9.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.2%22+is%3Aclosed+">fixed issues query for Typescript v3.9.2 (Final)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.9.3%22+is%3Aclosed+">fixed issues query for Typescript v3.9.3 (patch release)</a>.</li> </ul> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/TypeScript/commit/a7d801176ca6cdfe45162c7d7cc80b2fdd144240"><code>a7d8011</code></a> Bump version to 3.9.7 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/761a9ed6dba3a010a5c6385d04afcd3e170bd63e"><code>761a9ed</code></a> Cherry-pick PR <a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/39599">#39599</a> into release-3.9 (<a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/39601">#39601</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/75d6648f89c3dbc8ec0b600bab51ba458c7ca696"><code>75d6648</code></a> Cherry-pick PR <a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/39573">#39573</a> into release-3.9 (<a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/39602">#39602</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/c6f934381cf6ba7400495268919d82e0ed66d5c7"><code>c6f9343</code></a> Bump version to 3.9.6 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/1ee1212952668c671fe9a7a3827a08b1473bd845"><code>1ee1212</code></a> isDynamicName skips parentheses for element access</li> <li><a href="https://github.com/microsoft/TypeScript/commit/986e9dd252b24d61772d3ddfb1487c43d25025b8"><code>986e9dd</code></a> Fix crash when serializing the return type of a generic call to Array.prototy...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/9ec5fc5f35d9262be46d7b7f21ad5d6b8cc16ad5"><code>9ec5fc5</code></a> Cherry-pick PR <a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/38653">#38653</a> into release-3.9 (<a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/38687">#38687</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/2fff32561967615177f1910e66c02afe409af28c"><code>2fff325</code></a> Fix recently added test so it is cross-plat</li> <li><a href="https://github.com/microsoft/TypeScript/commit/c88ed727ded5f2b63d1ba40ca94c02bc1678e96f"><code>c88ed72</code></a> Patch to use this.timeout() > 0 rather than this.enableTimeout() to work with...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/338e42fabe3b73b0e563c291f321123d37b98d24"><code>338e42f</code></a> Update request-pr-review script to latest version of octokit (<a href="https://github-redirect.dependabot.com/Microsoft/TypeScript/issues/39031">#39031</a>)</li> <li>Additional commits viewable in <a href="https://github.com/Microsoft/TypeScript/compare/v3.9.3...v3.9.7">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@dependabot badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot dashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 2 months