Tanuki is an MVVM-inspired web framework with balls! Abandoned.
Lookup barcode country, verify checkdigit, display graphical representation.
AngularJS 1.2+ native directives for Twitter Bootstrap 3.
UNMAINTAINED: AnimakitExpander
Dremora/awesome-design-systems 0
💅🏻 ⚒ A collection of awesome design systems
Dremora/awesome-react-render-props 0
Awesome list of React components with render props
Dremora/backbone-agile-tracker 0
A simple Agile/Scrum tracker made as a college project.
startedprisma/prisma
started time in 4 days
issue openedmicrosoft/TypeScript
Infer never type for getters that don't return (e.g. by throwing an error in all codepaths)
Search Terms
getter infer getter never
Suggestion
Consider this code:
const foo = () => {
throw new Error('Not implemented');
};
type Foo = typeof foo;
Foo will be inferred as () => never.
What if I want to use this function as a getter in an object:
const bar = {
get bar() {
throw new Error('Not implemented');
}
};
type Bar = typeof bar.bar;
Here, Bar is inferred as void. I don't see why it should be void as opposed to never.
As a workaround, it's currently possible to hint TypeScript correct type:
const bar = {
get bar(): never {
throw new Error('Not implemented');
}
};
type Bar = typeof bar.bar;
Here Bar is never.
From what I currently understand, this change won't break existing code, but it will make previously invalid code valid.
Use Cases
This has been discovered while trying to implement a React context with default value that throws when used without a context provider. Here I want it become obvious for developers when context provider is not defined, without sacrificing on type safety by making context properties optional, or populating them with default values (which would not make it obvious that provider is absent).
The workaround I have provided above works, but it would be nice for the compiler to figure that out.
Examples
To follow up with a React context example:
interface SystemStatus {
isOnline: boolean;
}
export const SystemStatusContext = createContext<SystemStatus>({
get isOnline() {
throw new Error('Used outside of SystemStatusContext');
}
});
Checklist
My suggestion meets these guidelines:
- [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
- [x] This wouldn't change the runtime behavior of existing JavaScript code
- [x] This could be implemented without emitting different JS based on the types of the expressions
- [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
- [x] This feature would agree with the rest of TypeScript's Design Goals.
created time in 9 days
push eventDremora/foo_musicbrainz
commit sha cc3453bd2429fb4284797d7a9aa51e488f288405
Add maintenance notice
push time in 18 days
push eventDremora/foo_musicbrainz
commit sha 883e7bc3480138314d186e3c93dca4831d685d9f
Add maintenance notice
push time in 18 days
issue commentDremora/foo_musicbrainz
Make MusicBrainz Webservice URL Configurable
Good point on archiving the repo! I will do it now and provide the link to @kbuffington's fork. In regards to the issues not being enabled, have a look at the Hydrogenaudio forum thread.
comment created time in 18 days
issue commentDremora/foo_musicbrainz
Sorry, I'm not maintaining this anymore. Please check this repo.
comment created time in 18 days
push eventDremora/my-music-webapp
commit sha 75944eb1c06e45b209d608e2d3048090bcf94038
Bump react-laag from 1.7.3 to 1.8.0 Bumps [react-laag](https://github.com/everweij/react-laag) from 1.7.3 to 1.8.0. - [Release notes](https://github.com/everweij/react-laag/releases) - [Commits](https://github.com/everweij/react-laag/commits) Signed-off-by: dependabot-preview[bot] <[email protected]>
push time in 18 days
delete branch Dremora/my-music-webapp
delete branch : dependabot/npm_and_yarn/react-laag-1.8.0
delete time in 18 days
PR merged Dremora/my-music-webapp
Bumps react-laag from 1.7.3 to 1.8.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/everweij/react-laag/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.
Dependabot will not automatically merge this PR because it includes a minor update to a production dependency.
<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 badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in the .dependabot/config.yml file in this repo:
- Update frequency
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 18 days
PR opened graphql-nexus/schema
It has been renamed: https://github.com/whitecolor/ts-node-dev/issues/186
pr created time in 21 days
push eventDremora/schema
commit sha 10ccd368e44dff68a3663b97e2c3262a1fc1c0a2
Fix ts-node-dev flag in the docs https://github.com/whitecolor/ts-node-dev/issues/186
push time in 21 days
delete branch Dremora/my-music-webapp
delete branch : dependabot/npm_and_yarn/styled-components-5.2.0
delete time in 23 days
push eventDremora/my-music-webapp
commit sha c1a618e81dd93b1098d0560d1575051a4217c03f
Bump styled-components from 5.1.1 to 5.2.0 Bumps [styled-components](https://github.com/styled-components/styled-components) from 5.1.1 to 5.2.0. - [Release notes](https://github.com/styled-components/styled-components/releases) - [Changelog](https://github.com/styled-components/styled-components/blob/master/CHANGELOG.md) - [Commits](https://github.com/styled-components/styled-components/compare/v5.1.1...v5.2.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
push time in 23 days
PR merged Dremora/my-music-webapp
Bumps styled-components from 5.1.1 to 5.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/styled-components/styled-components/releases">styled-components's releases</a>.</em></p> <blockquote> <h2>v5.2.0</h2> <ul> <li> <p>Make sure <code>StyleSheetManager</code> renders all styles in iframe / child windows (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3159">#3159</a>) thanks <a href="https://github.com/eramdam">@eramdam</a>!</p> </li> <li> <p>Rework how components self-reference in extension scenarios (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3236">#3236</a>); should fix a bunch of subtle bugs around patterns like <code>& + &</code></p> </li> <li> <p>Fix <code>keyframes</code> not receiving a modified stylis instance when using something like <code>stylis-plugin-rtl</code> (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3239">#3239</a>)</p> </li> <li> <p>Big performance gain for components using <a href="https://styled-components.com/docs/advanced#style-objects">style objects</a> (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3239">#3239</a>)</p> </li> <li> <p>We no longer emit dynamic classNames for empty rulesets, so some className churn may occur in snapshots</p> </li> <li> <p>Preallocate global style placement to ensure cGS is consistently inserted at the top of the stylesheet; note that this is done in <em>runtime order</em> so, if you have multiple cGS that have overlapping styles, ensure they're defined in code in the sequence you would want them injected (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3239">#3239</a>)</p> </li> <li> <p>Add "engines" to package.json (currently set to Node 10, the oldest supported LTS distribution) (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3201">#3201</a>) thanks <a href="https://github.com/MichaelDeBoey">@MichaelDeBoey</a>!</p> </li> </ul> <p>Finally, special thanks to <a href="https://github.com/willheslam">@willheslam</a> for testing and some last minute fixes on this release!</p> <h2>v5.2.0-test.10</h2> <p><strong>We are planning to release 5.2 on September 2/3, please help us test!</strong></p> <pre lang="shell"><code>yarn add styled-components@test </code></pre> <ul> <li> <p>Preallocate global style placement to ensure cGS is consistently inserted at the top of the stylesheet; note that this is done in <em>runtime order</em> so, if you have multiple cGS that have overlapping styles, ensure they're defined in code in the sequence you would want them injected (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3239">#3239</a>)</p> <p><strong>NOTE: This is a behavioral change and might require adjustment in your codebase if you have many <code>createGlobalStyle</code> components in use. We do not think it will affect the majority of projects other than fix existing bugs.</strong></p> </li> <li> <p><code>createGlobalStyle</code> is now <code>React.StrictMode</code> compliant</p> </li> <li> <p>Make sure <code>StyleSheetManager</code> renders all styles in iframe / child windows (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3159">#3159</a>) thanks <a href="https://github.com/eramdam">@eramdam</a>!</p> </li> <li> <p>Rework how components self-reference in extension scenarios (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3236">#3236</a>); should fix a bunch of subtle bugs around patterns like <code>& + &</code></p> </li> <li> <p>Fix <code>keyframes</code> not receiving a modified stylis instance when using something like <code>stylis-plugin-rtl</code> (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3239">#3239</a>)</p> </li> <li> <p>Big performance gain for components using <a href="https://styled-components.com/docs/advanced#style-objects">style objects</a> (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3239">#3239</a>)</p> </li> <li> <p>We no longer emit dynamic classNames for empty rulesets, so some className churn may occur in snapshots</p> </li> <li> <p>Add "engines" to package.json (currently set to Node 10, the oldest supported LTS distribution) (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3201">#3201</a>) thanks <a href="https://github.com/MichaelDeBoey">@MichaelDeBoey</a>!</p> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/styled-components/styled-components/blob/master/CHANGELOG.md">styled-components's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <p>All notable changes to this project will be documented in this file. If a contribution does not have a mention next to it, <a href="https://github.com/geelen">@geelen</a> or <a href="https://github.com/mxstbr">@mxstbr</a> did it.</p> <p><em>The format is based on <a href="http://keepachangelog.com/">Keep a Changelog</a> and this project adheres to <a href="http://semver.org/">Semantic Versioning</a>.</em></p> <h2>Unreleased</h2> <ul> <li> <p>Make sure <code>StyleSheetManager</code> renders all styles in iframe / child windows (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3159">#3159</a>) thanks <a href="https://github.com/eramdam">@eramdam</a>!</p> </li> <li> <p>Rework how components self-reference in extension scenarios (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3236">#3236</a>); should fix a bunch of subtle bugs around patterns like <code>& + &</code></p> </li> <li> <p>Fix <code>keyframes</code> not receiving a modified stylis instance when using something like <code>stylis-plugin-rtl</code> (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3239">#3239</a>)</p> </li> <li> <p>Big performance gain for components using <a href="https://styled-components.com/docs/advanced#style-objects">style objects</a> (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3239">#3239</a>)</p> </li> <li> <p>We no longer emit dynamic classNames for empty rulesets, so some className churn may occur in snapshots</p> </li> <li> <p>Preallocate global style placement to ensure cGS is consistently inserted at the top of the stylesheet; note that this is done in <em>runtime order</em> so, if you have multiple cGS that have overlapping styles, ensure they're defined in code in the sequence you would want them injected (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3239">#3239</a>)</p> </li> <li> <p>Add "engines" to package.json (currently set to Node 10, the oldest supported LTS distribution) (see <a href="https://github-redirect.dependabot.com/styled-components/styled-components/pull/3201">#3201</a>) thanks <a href="https://github.com/MichaelDeBoey">@MichaelDeBoey</a>!</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/styled-components/styled-components/commit/4d459d4a89f7e93a214697fe39cae5bbddf96308"><code>4d459d4</code></a> v5.2.0</li> <li><a href="https://github.com/styled-components/styled-components/commit/d4b9ee8a3c1514cac57e22209bcd6102e10f79b1"><code>d4b9ee8</code></a> v5.2.0-test.12</li> <li><a href="https://github.com/styled-components/styled-components/commit/dd6b3028f91dbbf1c026f7ee58d1ec1bea76b765"><code>dd6b302</code></a> speed up hyphenating style names (<a href="https://github-redirect.dependabot.com/styled-components/styled-components/issues/3251">#3251</a>)</li> <li><a href="https://github.com/styled-components/styled-components/commit/792e41d80912bb7c8d4e233996e0eaf00922d607"><code>792e41d</code></a> fix static styles wrapping dynamic styles being wrongly identified as static ...</li> <li><a href="https://github.com/styled-components/styled-components/commit/df65868e6280b1499dc48151febdf4fb550b5399"><code>df65868</code></a> run workflow on push and pull_request (<a href="https://github-redirect.dependabot.com/styled-components/styled-components/issues/3252">#3252</a>)</li> <li><a href="https://github.com/styled-components/styled-components/commit/5f6942f0b16bb5d96424bcb85aa528aab84bb9ae"><code>5f6942f</code></a> v5.2.0-test.11</li> <li><a href="https://github.com/styled-components/styled-components/commit/4351e2b6da2d82f1167a73fe1f4aff23ba264178"><code>4351e2b</code></a> adjust minification mechanism</li> <li><a href="https://github.com/styled-components/styled-components/commit/a6b14070c438e25959403c3a9539844ee981c494"><code>a6b1407</code></a> adjust bundlewatch action config (<a href="https://github-redirect.dependabot.com/styled-components/styled-components/issues/3243">#3243</a>)</li> <li><a href="https://github.com/styled-components/styled-components/commit/106e5bbcf5e3d6de9352ad6a0161610020268d7d"><code>106e5bb</code></a> use github actions (<a href="https://github-redirect.dependabot.com/styled-components/styled-components/issues/3242">#3242</a>)</li> <li><a href="https://github.com/styled-components/styled-components/commit/71c0fb8bc9eb2c40b0a7d78d67132f7d6ca3aee0"><code>71c0fb8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/styled-components/styled-components/issues/3239">#3239</a> from styled-components/include-version-in-haser</li> <li>Additional commits viewable in <a href="https://github.com/styled-components/styled-components/compare/v5.1.1...v5.2.0">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot will not automatically merge this PR because it includes a minor update to a production dependency.
<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 badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in the .dependabot/config.yml file in this repo:
- Update frequency
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 23 days
delete branch Dremora/my-music-webapp
delete branch : dependabot/npm_and_yarn/graphql-tag-2.11.0
delete time in 23 days
push eventDremora/my-music-webapp
commit sha e475192bf53ff9ff4a6c3d2b40086b5998ed8ab6
Bump graphql-tag from 2.10.4 to 2.11.0 Bumps [graphql-tag](https://github.com/apollographql/graphql-tag) from 2.10.4 to 2.11.0. - [Release notes](https://github.com/apollographql/graphql-tag/releases) - [Changelog](https://github.com/apollographql/graphql-tag/blob/master/CHANGELOG.md) - [Commits](https://github.com/apollographql/graphql-tag/commits/v2.11.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
push time in 23 days
PR merged Dremora/my-music-webapp
Bumps graphql-tag from 2.10.4 to 2.11.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/apollographql/graphql-tag/releases">graphql-tag's releases</a>.</em></p> <blockquote> <h2>2.11.0</h2> <ul> <li><code>package.json</code> <code>sideEffects</code> changes to clearly identify that <code>graphql-tag</code> doesn't have side effects. <a href="http://github.com/hwillson">@hwillson</a> in <a href="https://github-redirect.dependabot.com/apollographql/graphql-tag/pull/313">#313</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/apollographql/graphql-tag/blob/master/CHANGELOG.md">graphql-tag's changelog</a>.</em></p> <blockquote> <h3>v2.11.0 (2020-07-28)</h3> <ul> <li><code>package.json</code> <code>sideEffects</code> changes to clearly identify that <code>graphql-tag</code> doesn't have side effects. <!-- raw HTML omitted --> <a href="http://github.com/hwillson">@hwillson</a> in <a href="https://github-redirect.dependabot.com/apollographql/graphql-tag/pull/313">#313</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/apollographql/graphql-tag/commits/v2.11.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.
Dependabot will not automatically merge this PR because it includes a minor update to a production dependency.
<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 badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in the .dependabot/config.yml file in this repo:
- Update frequency
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 23 days
push eventDremora/my-music-webapp
commit sha f04926f5a4d1d5d17115f126c4b24e75a20fb97d
Bump @next/bundle-analyzer from 9.4.4 to 9.5.3 Bumps [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) from 9.4.4 to 9.5.3. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/commits/v9.5.3/packages/next-bundle-analyzer) Signed-off-by: dependabot-preview[bot] <[email protected]>
push time in 23 days
delete branch Dremora/my-music-webapp
delete branch : dependabot/npm_and_yarn/next/bundle-analyzer-9.5.3
delete time in 23 days
PR merged Dremora/my-music-webapp
Bumps @next/bundle-analyzer from 9.4.4 to 9.5.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vercel/next.js/releases">@next/bundle-analyzer's releases</a>.</em></p> <blockquote> <h2>v9.5.3</h2> <h3>Core Changes</h3> <ul> <li>Add codemod documentation: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16067">#16067</a></li> <li>Remove tslint disables: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16116">#16116</a></li> <li>Strongly type PageLoader: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16132">#16132</a></li> <li>Strongly type Head Manager: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16144">#16144</a></li> <li>Improve page loader types: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16145">#16145</a></li> <li>Dedupe ComponentRes type: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16148">#16148</a></li> <li>Remove unused router method: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16149">#16149</a></li> <li>Add initial handling for dynamic route href resolving and rewrites on the client: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/15231">#15231</a></li> <li>Reduce router code: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16159">#16159</a></li> <li>Convert performance relayer to TypeScript: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16161">#16161</a></li> <li>Convert next/client to TypeScript: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16167">#16167</a></li> <li>Remove unused dependency: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16168">#16168</a></li> <li>Share NEXT_DATA type instead of recreating it: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16174">#16174</a></li> <li>Modify low priority files in manifest: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16181">#16181</a></li> <li>fix: add missing dependency caniuse-lite: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16091">#16091</a></li> <li>Refactor <!-- raw HTML omitted --> files: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16184">#16184</a></li> <li>Update rewrite params query appending: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16189">#16189</a></li> <li>Update to Terser 5: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16194">#16194</a></li> <li>Make css-minimizer compatible with webpack 5: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16250">#16250</a></li> <li>Fix data URL with root-catchall and basePath: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16263">#16263</a></li> <li>Handle cases where <code>config</code> is exported after its declaration: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16211">#16211</a></li> <li>ci: add pnp test: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16255">#16255</a></li> <li>Update stylesheets on page navigation: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16126">#16126</a></li> <li>Fix forEach error in CSS commit in ie11: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16282">#16282</a></li> <li>Allow React experimental version without warning: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16140">#16140</a></li> <li>Add experimental webpack 5 cache option: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16307">#16307</a></li> <li>Fix old TypeScript version compatibility: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16288">#16288</a></li> <li>Replace broken <code>prop-types-exact</code> package: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/15953">#15953</a></li> <li>Force browser to recompute layout on page nav: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16318">#16318</a></li> <li>Add <code><link></code> attributes in proper order: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16319">#16319</a></li> <li>Add at attribute to image preload link: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16328">#16328</a></li> <li>Fix IE11 CSS Compatibility: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16336">#16336</a></li> <li>Make <code>loadPage</code> track success of script loading: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16334">#16334</a></li> <li>Normalize request URL/asPath for fallback SSG pages: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16352">#16352</a></li> <li>Reduce filesystem lookups during bootup: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16354">#16354</a></li> <li>Fix basePath and public folder check ending routes early: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16356">#16356</a></li> <li>Fix page checking failing with trailingSlash: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16362">#16362</a></li> <li>Add serialization for mini-css-plugin webpack 5 caching: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16379">#16379</a></li> <li>Correct comment on --help: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16391">#16391</a></li> <li>Fix mini-css-plugin webpack 5 deprecation warnings: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16390">#16390</a></li> <li>Add debug flag for extra build output: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16399">#16399</a></li> <li>Warn on duplicate Sass deps: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16398">#16398</a></li> <li>Ensure unknown static paths 404 for data request: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16401">#16401</a></li> <li>AMP compatibility for Font optimization: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16208">#16208</a></li> <li>Solve last mini-css-plugin webpack 5 warning: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16447">#16447</a></li> <li>Fix optional catch-all <code>/index</code> revalidate params: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16451">#16451</a></li> <li>Do not alias Node modules for webpack 4: <a href="https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer/issues/16452">#16452</a></li> </ul> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vercel/next.js/commit/b6df8104068fb43fc07183390d661470a3bccb95"><code>b6df810</code></a> v9.5.3</li> <li><a href="https://github.com/vercel/next.js/commit/48ce4de0fdc6f3f76d44b704951b607000f8ac33"><code>48ce4de</code></a> v9.5.3-canary.27</li> <li><a href="https://github.com/vercel/next.js/commit/d59f12c41600d001e6ed6d1df98892fb4fb17995"><code>d59f12c</code></a> v9.5.3-canary.26</li> <li><a href="https://github.com/vercel/next.js/commit/f658b7641d5e500eca23b90ad3fa5705970f2525"><code>f658b76</code></a> v9.5.3-canary.25</li> <li><a href="https://github.com/vercel/next.js/commit/42e8dcf281526b5dde27448010e96edcd5ceb196"><code>42e8dcf</code></a> v9.5.3-canary.24</li> <li><a href="https://github.com/vercel/next.js/commit/5fbe50c49ace43edc95f5ca91483bbe6a9e9501a"><code>5fbe50c</code></a> v9.5.3-canary.23</li> <li><a href="https://github.com/vercel/next.js/commit/2e12e86d7c23f76c8cd743d6dee1f93bdc7bbe72"><code>2e12e86</code></a> v9.5.3-canary.22</li> <li><a href="https://github.com/vercel/next.js/commit/885d145ff72aae21e8166070c78fe1321c307a7c"><code>885d145</code></a> v9.5.3-canary.21</li> <li><a href="https://github.com/vercel/next.js/commit/4a981428ae2aa5fb02c84cdb9bfa901262150918"><code>4a98142</code></a> v9.5.3-canary.20</li> <li><a href="https://github.com/vercel/next.js/commit/42e1d5b5dc9c33b07319bdc1952fdddcf7c15aca"><code>42e1d5b</code></a> v9.5.3-canary.19</li> <li>Additional commits viewable in <a href="https://github.com/vercel/next.js/commits/v9.5.3/packages/next-bundle-analyzer">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.
Dependabot will not automatically merge this PR because it includes a minor update to a production dependency.
<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 badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in the .dependabot/config.yml file in this repo:
- Update frequency
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 23 days
push eventDremora/my-music-webapp
commit sha 66f6eab79dc5e2f9d440fe86705d545402777cb8
Bump typescript from 3.9.7 to 4.0.3 Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.9.7 to 4.0.3. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v3.9.7...v4.0.3) Signed-off-by: dependabot-preview[bot] <[email protected]>
push time in 23 days
delete branch Dremora/my-music-webapp
delete branch : dependabot/npm_and_yarn/typescript-4.0.3
delete time in 23 days
PR merged Dremora/my-music-webapp
Bumps typescript from 3.9.7 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> <h2>TypeScript 4.0</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> </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> <h2>TypeScript 4.0 Beta</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-4-0-beta/">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%22+is%3Aclosed+">fixed issues query for Typescript v4.0-beta</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-40beta">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><a href="https://github.com/microsoft/TypeScript/commit/912cbdfcb6b5ed1b0623390fc350c3c313fc8f1b"><code>912cbdf</code></a> Update LKG</li> <li>Additional commits viewable in <a href="https://github.com/Microsoft/TypeScript/compare/v3.9.7...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.
Dependabot will not automatically merge this PR because it includes a major update to a development dependency.
<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 badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in the .dependabot/config.yml file in this repo:
- Update frequency
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
</details>
pr closed time in 23 days
startedseek-oss/capsize
started time in 23 days
delete branch Dremora/game-of-shells
delete branch : dependabot/npm_and_yarn/acorn-5.7.4
delete time in 24 days
push eventDremora/game-of-shells
commit sha 7315913c2e05d76e4a115387a56e174e23fd82e1
Bump acorn from 5.7.3 to 5.7.4 Bumps [acorn](https://github.com/acornjs/acorn) from 5.7.3 to 5.7.4. - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](https://github.com/acornjs/acorn/compare/5.7.3...5.7.4) Signed-off-by: dependabot[bot] <[email protected]>
push time in 24 days
PR merged Dremora/game-of-shells
Bumps acorn from 5.7.3 to 5.7.4. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/acornjs/acorn/commit/6370e90067552022710190319cbbbd8c43001957"><code>6370e90</code></a> Mark version 5.7.4</li> <li><a href="https://github.com/acornjs/acorn/commit/fbc15b1344f6dfb992f67b4bbf1357436247c8a0"><code>fbc15b1</code></a> More rigorously check surrogate pairs in regexp validator</li> <li>See full diff in <a href="https://github.com/acornjs/acorn/compare/5.7.3...5.7.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
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 24 days
push eventDremora/game-of-shells
commit sha 2cd2ce30d142c35826481835ad0e2df130fa1bef
Bump elliptic from 6.5.2 to 6.5.3 Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.2 to 6.5.3. - [Release notes](https://github.com/indutny/elliptic/releases) - [Commits](https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.3) Signed-off-by: dependabot[bot] <[email protected]>
push time in 24 days
delete branch Dremora/game-of-shells
delete branch : dependabot/npm_and_yarn/elliptic-6.5.3
delete time in 24 days
PR merged Dremora/game-of-shells
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 24 days
delete branch Dremora/my-music-webapp
delete branch : dependabot/npm_and_yarn/date-fns-2.16.1
delete time in a month
push eventDremora/my-music-webapp
commit sha 4c5ecc1ac220ba6c0ba028dc73dcc83b0e272db6
Bump date-fns from 2.14.0 to 2.16.1 Bumps [date-fns](https://github.com/date-fns/date-fns) from 2.14.0 to 2.16.1. - [Release notes](https://github.com/date-fns/date-fns/releases) - [Changelog](https://github.com/date-fns/date-fns/blob/master/CHANGELOG.md) - [Commits](https://github.com/date-fns/date-fns/compare/v2.14.0...v2.16.1) Signed-off-by: dependabot-preview[bot] <[email protected]>
push time in a month
PR merged Dremora/my-music-webapp
Bumps date-fns from 2.14.0 to 2.16.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/date-fns/date-fns/releases">date-fns's releases</a>.</em></p> <blockquote> <h2>v2.16.1</h2> <p>Kudos to <a href="https://github.com/aleksaps">@aleksaps</a>, <a href="https://github.com/leedriscoll">@leedriscoll</a> and <a href="https://github.com/BanForFun">@BanForFun</a> for pull-requests!</p> <h3>Fixed</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1925">Fixed a typo in Scottish Gaelic (gd) locale</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1928">Fixed typos in Serbian Latin locale</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1930">Fixed greek grammar for Saturday on <code>formatRelative</code></a>.</li> <li>Removed locale snapshots from the npm package making it lighter.</li> </ul> <h2>v2.16.0</h2> <p>Kudos to <a href="https://github.com/jvpelt">@jvpelt</a>, <a href="https://github.com/piotrl">@piotrl</a>, <a href="https://github.com/yotamofek">@yotamofek</a>, <a href="https://github.com/dwaxweiler">@dwaxweiler</a>, <a href="https://github.com/leedriscoll">@leedriscoll</a> and <a href="https://github.com/bradevans">@bradevans</a> for working on the release. Also thanks to <a href="https://github.com/PascalHonegger">@PascalHonegger</a>, <a href="https://github.com/pickfire">@pickfire</a>, <a href="https://github.com/TheJaredWilcurt">@TheJaredWilcurt</a>, <a href="https://github.com/SidKH">@SidKH</a> and <a href="https://github.com/nfantone">@nfantone</a> for improving the documentation.</p> <h3>Fixed</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1903">Added correct translations for Welsh <code>1 minute</code> and <code>2 days</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1890">Fixed <code>formatRFC3339</code> formatting timezone offset with minutes</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1881">Added missing locale type definition for <code>formatDuration</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1914">Fixed Scottish Gaelic locale issues</a>.</li> </ul> <h3>Changed</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1893">Used shorter Hebrew alternative for "about"</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1910">Improved string arguments warning after upgrading to v2</a>.</li> </ul> <h3>Added</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1900">Added Luxembourgish (lb) locale</a>.</li> </ul> <h2>v2.15.0</h2> <p>Thanks to <a href="https://github.com/belgamo">@belgamo</a>, <a href="https://github.com/Matsuuu">@Matsuuu</a>, <a href="https://github.com/Imballinst">@Imballinst</a>, <a href="https://github.com/arsnyder16">@arsnyder16</a>, <a href="https://github.com/pankajupadhyay29">@pankajupadhyay29</a>, <a href="https://github.com/DCBN">@DCBN</a>, <a href="https://github.com/leedriscoll">@leedriscoll</a>, <a href="https://github.com/gottsohn">@gottsohn</a>, <a href="https://github.com/mukuljainx">@mukuljainx</a> and <a href="https://github.com/dtriana">@dtriana</a> for working on the release. Also kudos to <a href="https://github.com/KidkArolis">@KidkArolis</a>, <a href="https://github.com/imgx64">@imgx64</a>, <a href="https://github.com/fjc0k">@fjc0k</a>, <a href="https://github.com/wmonk">@wmonk</a>, <a href="https://github.com/djD-REK">@djD-REK</a>, <a href="https://github.com/dandv">@dandv</a>, <a href="https://github.com/psimk">@psimk</a> and <a href="https://github.com/brimworks">@brimworks</a> for improving the documentation.</p> <h3>Fixed</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1790">Fixed behavior of <code>addBusinessDays</code> when input date is a weekend day</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1791">Fixed <code>parseISO</code> not returning <code>Invalid Date</code> on incorrect string when there are spaces in it</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1792">Fixed <code>es</code> round-tripping dates with Wednesday</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1795">Fixed round-trip bug with <code>d</code>/<code>EEEE</code> ordering in tokens like <code>PPPPP</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1807">Fixed issues with parsing values in Japanese</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1842">Fixed Hungarian breaking IE11</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1872">Fixed Spanish accents in Saturday and Wednesday</a>.</li> </ul> <h3>Changed</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1641">Improved the message of protected tokens error</a>.</li> </ul> <h3>Added</h3> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/date-fns/date-fns/blob/master/CHANGELOG.md">date-fns's changelog</a>.</em></p> <blockquote> <h2>[2.16.1] - 2020-07-31</h2> <p>Kudos to <a href="https://github.com/aleksaps">@aleksaps</a>, <a href="https://github.com/leedriscoll">@leedriscoll</a> and <a href="https://github.com/BanForFun">@BanForFun</a> for pull-requests!</p> <h3>Fixed</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1925">Fixed a typo in Scottish Gaelic (gd) locale</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1928">Fixed typos in Serbian Latin locale</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1930">Fixed greek grammar for Saturday on <code>formatRelative</code></a>.</li> <li>Removed locale snapshots from the npm package making it lighter.</li> </ul> <h2>[2.16.0] - 2020-08-27</h2> <p>Kudos to <a href="https://github.com/jvpelt">@jvpelt</a>, <a href="https://github.com/piotrl">@piotrl</a>, <a href="https://github.com/yotamofek">@yotamofek</a>, <a href="https://github.com/dwaxweiler">@dwaxweiler</a>, <a href="https://github.com/leedriscoll">@leedriscoll</a> and <a href="https://github.com/bradevans">@bradevans</a> for working on the release. Also thanks to <a href="https://github.com/PascalHonegger">@PascalHonegger</a>, <a href="https://github.com/pickfire">@pickfire</a>, <a href="https://github.com/TheJaredWilcurt">@TheJaredWilcurt</a>, <a href="https://github.com/SidKH">@SidKH</a> and <a href="https://github.com/nfantone">@nfantone</a> for improving the documentation.</p> <h3>Fixed</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1903">Added correct translations for Welsh <code>1 minute</code> and <code>2 days</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1890">Fixed <code>formatRFC3339</code> formatting timezone offset with minutes</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1881">Added missing locale type definition for <code>formatDuration</code></a></li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1914">Fixed Scottish Gaelic locale issues</a>.</li> </ul> <h3>Changed</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1893">Used shorter Hebrew alternative for "about"</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1910">Improved string arguments warning after upgrading to v2</a>.</li> </ul> <h3>Added</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1900">Added Luxembourgish (lb) locale</a>.</li> </ul> <h2>[2.15.0] - 2020-07-17</h2> <p>Thanks to <a href="https://github.com/belgamo">@belgamo</a>, <a href="https://github.com/Matsuuu">@Matsuuu</a>, <a href="https://github.com/Imballinst">@Imballinst</a>, <a href="https://github.com/arsnyder16">@arsnyder16</a>, <a href="https://github.com/pankajupadhyay29">@pankajupadhyay29</a>, <a href="https://github.com/DCBN">@DCBN</a>, <a href="https://github.com/leedriscoll">@leedriscoll</a>, <a href="https://github.com/gottsohn">@gottsohn</a>, <a href="https://github.com/mukuljainx">@mukuljainx</a> and <a href="https://github.com/dtriana">@dtriana</a> for working on the release. Also kudos to <a href="https://github.com/KidkArolis">@KidkArolis</a>, <a href="https://github.com/imgx64">@imgx64</a>, <a href="https://github.com/fjc0k">@fjc0k</a>, <a href="https://github.com/wmonk">@wmonk</a>, <a href="https://github.com/djD-REK">@djD-REK</a>, <a href="https://github.com/dandv">@dandv</a>, <a href="https://github.com/psimk">@psimk</a> and <a href="https://github.com/brimworks">@brimworks</a> for improving the documentation.</p> <h3>Fixed</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1790">Fixed behavior of <code>addBusinessDays</code> when input date is a weekend day</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1791">Fixed <code>parseISO</code> not returning <code>Invalid Date</code> on incorrect string when there are spaces in it</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1792">Fixed <code>es</code> round-tripping dates with Wednesday</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1795">Fixed round-trip bug with <code>d</code>/<code>EEEE</code> ordering in tokens like <code>PPPPP</code></a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1807">Fixed issues with parsing values in Japanese</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1842">Fixed Hungarian breaking IE11</a>.</li> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1872">Fixed Spanish accents in Saturday and Wednesday</a>.</li> </ul> <h3>Changed</h3> <ul> <li><a href="https://github-redirect.dependabot.com/date-fns/date-fns/pull/1641">Improved the message of protected tokens error</a>.</li> </ul> <h3>Added</h3> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/date-fns/date-fns/commit/a66d514f1885256ba8d157b3191e5f6ba82129fd"><code>a66d514</code></a> Update kudos in the changelog</li> <li><a href="https://github.com/date-fns/date-fns/commit/bc7e9ba441175af05612fabb50ed338340feba8d"><code>bc7e9ba</code></a> Update changelog for v2.16.1</li> <li><a href="https://github.com/date-fns/date-fns/commit/242e4e340fd3918d192adc891566b9f8d8d1ddf0"><code>242e4e3</code></a> Fixed Greek grammar for Saturday on formatRelative (<a href="https://github-redirect.dependabot.com/date-fns/date-fns/issues/1930">#1930</a>)</li> <li><a href="https://github.com/date-fns/date-fns/commit/a212191b1d39902b5d89e1957073b407a6228c63"><code>a212191</code></a> Fix changelog after rebase</li> <li><a href="https://github.com/date-fns/date-fns/commit/02080703b48c528a57729457f7f802ebbe7db834"><code>0208070</code></a> Add changelog for v2.16.1</li> <li><a href="https://github.com/date-fns/date-fns/commit/76aaede40d4c41002b5fbc452b8257b3b48636f4"><code>76aaede</code></a> Remove locale snapshots from the package</li> <li><a href="https://github.com/date-fns/date-fns/commit/c5db2d05cab52c3dccff47d04492b78e3c21af51"><code>c5db2d0</code></a> Fix Scottish Gaelic (gd) locale (<a href="https://github-redirect.dependabot.com/date-fns/date-fns/issues/1925">#1925</a>)</li> <li><a href="https://github.com/date-fns/date-fns/commit/eb7de3c2690a752037e783ff47f6f4082881e5d4"><code>eb7de3c</code></a> Fix sr-Latn typos</li> <li><a href="https://github.com/date-fns/date-fns/commit/12ad7432bbdc9b3bafce7efc6687adc641dd5885"><code>12ad743</code></a> Clarifies that strings are still allowed as arguments, but not when a date is...</li> <li><a href="https://github.com/date-fns/date-fns/commit/464c8fdb2473eafdf210e434023c4033e7818c34"><code>464c8fd</code></a> Build the library</li> <li>Additional commits viewable in <a href="https://github.com/date-fns/date-fns/compare/v2.14.0...v2.16.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.
Dependabot will not automatically merge this PR because it includes a minor update to a production dependency.
<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 badge mewill comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in the .dependabot/config.yml file in this repo:
- Update frequency
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- 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 eventDremora/my-music-api-elixir
commit sha 144dd8cef721df291ff46468c70665017b906a94
Bump dataloader from 1.0.7 to 1.0.8 Bumps [dataloader](https://github.com/absinthe-graphql/dataloader) from 1.0.7 to 1.0.8. - [Release notes](https://github.com/absinthe-graphql/dataloader/releases) - [Changelog](https://github.com/absinthe-graphql/dataloader/blob/master/CHANGELOG.md) - [Commits](https://github.com/absinthe-graphql/dataloader/commits) Signed-off-by: dependabot-preview[bot] <[email protected]>
push time in a month
delete branch Dremora/my-music-api-elixir
delete branch : dependabot/hex/dataloader-1.0.8
delete time in a month
PR merged Dremora/my-music-api-elixir
Bumps dataloader from 1.0.7 to 1.0.8. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/absinthe-graphql/dataloader/blob/master/CHANGELOG.md">dataloader's changelog</a>.</em></p> <blockquote> <h2>v1.0.8</h2> <ul> <li>Improvement: Telemetry integration (<a href="https://github-redirect.dependabot.com/absinthe-graphql/dataloader/pull/89">#89</a>)</li> <li>Improvement: limit support via lateral joins (<a href="https://github-redirect.dependabot.com/absinthe-graphql/dataloader/pull/93">#93</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/absinthe-graphql/dataloader/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)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- 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
startedvleandersson/simple-nodejs-threader
started time in a month