-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): Bump @cheqd/sdk from 3.5.4 to 3.5.6 #186
chore(deps): Bump @cheqd/sdk from 3.5.4 to 3.5.6 #186
Commits on Jun 19, 2023
-
chore(deps-dev): Bump @semantic-release/github from 8.1.0 to 9.0.3
Bumps [@semantic-release/github](https://github.com/semantic-release/github) from 8.1.0 to 9.0.3. - [Release notes](https://github.com/semantic-release/github/releases) - [Commits](semantic-release/github@v8.1.0...v9.0.3) --- updated-dependencies: - dependency-name: "@semantic-release/github" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ac4cebb - Browse repository at this point
Copy the full SHA ac4cebbView commit details -
chore(deps): Bump dotenv from 16.1.4 to 16.3.1
Bumps [dotenv](https://github.com/motdotla/dotenv) from 16.1.4 to 16.3.1. - [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md) - [Commits](motdotla/dotenv@v16.1.4...v16.3.1) --- updated-dependencies: - dependency-name: dotenv dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c95ca65 - Browse repository at this point
Copy the full SHA c95ca65View commit details
Commits on Jun 26, 2023
-
chore(deps): Bump @cheqd/sdk from 3.5.4 to 3.5.6
Bumps [@cheqd/sdk](https://github.com/cheqd/sdk) from 3.5.4 to 3.5.6. - [Release notes](https://github.com/cheqd/sdk/releases) - [Changelog](https://github.com/cheqd/sdk/blob/main/CHANGELOG.md) - [Commits](cheqd/sdk@3.5.4...3.5.6) --- updated-dependencies: - dependency-name: "@cheqd/sdk" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7969dc2 - Browse repository at this point
Copy the full SHA 7969dc2View commit details
Commits on Jun 28, 2023
-
chore(deps-dev): Bump esbuild from 0.17.19 to 0.18.9 (#187)
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.17.19 to 0.18.9. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.18.9</h2> <ul> <li> <p>Fix <code>await using</code> declarations inside <code>async</code> generator functions</p> <p>I forgot about the new <code>await using</code> declarations when implementing lowering for <code>async</code> generator functions in the previous release. This change fixes the transformation of <code>await using</code> declarations when they are inside lowered <code>async</code> generator functions:</p> <pre lang="js"><code>// Original code async function* foo() { await using x = await y } <p>// Old output (with --supported:async-generator=false) function foo() { return __asyncGenerator(this, null, function* () { await using x = yield new __await(y); }); }</p> <p>// New output (with --supported:async-generator=false) function foo() { return __asyncGenerator(this, null, function* () { var _stack = []; try { const x = __using(<em>stack, yield new __await(y), true); } catch (</em>) { var _error = _, _hasError = true; } finally { var _promise = __callDispose(_stack, _error, _hasError); _promise && (yield new __await(_promise)); } }); } </code></pre></p> </li> <li> <p>Insert some prefixed CSS properties when appropriate (<a href="https://redirect.github.com/evanw/esbuild/issues/3122">#3122</a>)</p> <p>With this release, esbuild will now insert prefixed CSS properties in certain cases when the <code>target</code> setting includes browsers that require a certain prefix. This is currently done for the following properties:</p> <ul> <li><code>appearance: *;</code> => <code>-webkit-appearance: *; -moz-appearance: *;</code></li> <li><code>backdrop-filter: *;</code> => <code>-webkit-backdrop-filter: *;</code></li> <li><code>background-clip: text</code> => <code>-webkit-background-clip: text;</code></li> <li><code>box-decoration-break: *;</code> => <code>-webkit-box-decoration-break: *;</code></li> <li><code>clip-path: *;</code> => <code>-webkit-clip-path: *;</code></li> <li><code>font-kerning: *;</code> => <code>-webkit-font-kerning: *;</code></li> <li><code>hyphens: *;</code> => <code>-webkit-hyphens: *;</code></li> <li><code>initial-letter: *;</code> => <code>-webkit-initial-letter: *;</code></li> <li><code>mask-image: *;</code> => <code>-webkit-mask-image: *;</code></li> <li><code>mask-origin: *;</code> => <code>-webkit-mask-origin: *;</code></li> <li><code>mask-position: *;</code> => <code>-webkit-mask-position: *;</code></li> <li><code>mask-repeat: *;</code> => <code>-webkit-mask-repeat: *;</code></li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG.md">esbuild's changelog</a>.</em></p> <blockquote> <h2>0.18.9</h2> <ul> <li> <p>Fix <code>await using</code> declarations inside <code>async</code> generator functions</p> <p>I forgot about the new <code>await using</code> declarations when implementing lowering for <code>async</code> generator functions in the previous release. This change fixes the transformation of <code>await using</code> declarations when they are inside lowered <code>async</code> generator functions:</p> <pre lang="js"><code>// Original code async function* foo() { await using x = await y } <p>// Old output (with --supported:async-generator=false) function foo() { return __asyncGenerator(this, null, function* () { await using x = yield new __await(y); }); }</p> <p>// New output (with --supported:async-generator=false) function foo() { return __asyncGenerator(this, null, function* () { var _stack = []; try { const x = __using(<em>stack, yield new __await(y), true); } catch (</em>) { var _error = _, _hasError = true; } finally { var _promise = __callDispose(_stack, _error, _hasError); _promise && (yield new __await(_promise)); } }); } </code></pre></p> </li> <li> <p>Insert some prefixed CSS properties when appropriate (<a href="https://redirect.github.com/evanw/esbuild/issues/3122">#3122</a>)</p> <p>With this release, esbuild will now insert prefixed CSS properties in certain cases when the <code>target</code> setting includes browsers that require a certain prefix. This is currently done for the following properties:</p> <ul> <li><code>appearance: *;</code> => <code>-webkit-appearance: *; -moz-appearance: *;</code></li> <li><code>backdrop-filter: *;</code> => <code>-webkit-backdrop-filter: *;</code></li> <li><code>background-clip: text</code> => <code>-webkit-background-clip: text;</code></li> <li><code>box-decoration-break: *;</code> => <code>-webkit-box-decoration-break: *;</code></li> <li><code>clip-path: *;</code> => <code>-webkit-clip-path: *;</code></li> <li><code>font-kerning: *;</code> => <code>-webkit-font-kerning: *;</code></li> <li><code>hyphens: *;</code> => <code>-webkit-hyphens: *;</code></li> <li><code>initial-letter: *;</code> => <code>-webkit-initial-letter: *;</code></li> <li><code>mask-image: *;</code> => <code>-webkit-mask-image: *;</code></li> <li><code>mask-origin: *;</code> => <code>-webkit-mask-origin: *;</code></li> <li><code>mask-position: *;</code> => <code>-webkit-mask-position: *;</code></li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/d568ff038d012a7894a9d4334b75f8559bf2532e"><code>d568ff0</code></a> publish 0.18.9 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/7e10dd60f9ff830c26aae12ecc2d2c2bc4ab45aa"><code>7e10dd6</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/2041">#2041</a>: add text loader data to source maps</li> <li><a href="https://github.com/evanw/esbuild/commit/9ed47f51d29917f410c1e3ec632aa68361c43d31"><code>9ed47f5</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3122">#3122</a>: prefix some more css properties</li> <li><a href="https://github.com/evanw/esbuild/commit/9d8a7e5115e9dd95fe2e67ececd8aef595857791"><code>9d8a7e5</code></a> prefix some css properties (<a href="https://redirect.github.com/evanw/esbuild/issues/3122">#3122</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/33322d2e4a84c075055ab5caf7c0726e6d5c1c0d"><code>33322d2</code></a> switch css minify from in-place to a new array</li> <li><a href="https://github.com/evanw/esbuild/commit/a4e2a1e50dc3813b51a12bef79d8dc646e917c56"><code>a4e2a1e</code></a> minify: shorter printing of ts enum property keys</li> <li><a href="https://github.com/evanw/esbuild/commit/dc913df9ff26e5aa7c3dd71db9787f488dd26c17"><code>dc913df</code></a> printer: extract enum inlining into a helper</li> <li><a href="https://github.com/evanw/esbuild/commit/dd659951f4d1224a4fd5abb2c15cc993e8e00944"><code>dd65995</code></a> move release notes to the right place</li> <li><a href="https://github.com/evanw/esbuild/commit/50f78c1c368dd084e9dfe19892087c6afa792406"><code>50f78c1</code></a> fix(compat-table): refine Destructuring support status (<a href="https://redirect.github.com/evanw/esbuild/issues/3179">#3179</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/a7236e4d36f60f367c0583fba8204454a9cc6754"><code>a7236e4</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/2809">#2809</a>: an obscure identifier minification bug</li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.17.19...v0.18.9">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=esbuild&package-manager=npm_and_yarn&previous-version=0.17.19&new-version=0.18.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
Configuration menu - View commit details
-
Copy full SHA for 7126605 - Browse repository at this point
Copy the full SHA 7126605View commit details -
Configuration menu - View commit details
-
Copy full SHA for b6e4891 - Browse repository at this point
Copy the full SHA b6e4891View commit details -
chore(deps): Bump dotenv from 16.1.4 to 16.3.1 (#184)
Bumps [dotenv](https://github.com/motdotla/dotenv) from 16.1.4 to 16.3.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md">dotenv's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/motdotla/dotenv/compare/v16.3.0...v16.3.1">16.3.1</a> (2023-06-17)</h2> <h3>Added</h3> <ul> <li>Add missing type definitions for <code>processEnv</code> and <code>DOTENV_KEY</code> options. <a href="https://redirect.github.com/motdotla/dotenv/pull/756">#756</a></li> </ul> <h2><a href="https://github.com/motdotla/dotenv/compare/v16.2.0...v16.3.0">16.3.0</a> (2023-06-16)</h2> <h3>Added</h3> <ul> <li>Optionally pass <code>DOTENV_KEY</code> to options rather than relying on <code>process.env.DOTENV_KEY</code>. Defaults to <code>process.env.DOTENV_KEY</code> <a href="https://redirect.github.com/motdotla/dotenv/pull/754">#754</a></li> </ul> <h2><a href="https://github.com/motdotla/dotenv/compare/v16.1.4...v16.2.0">16.2.0</a> (2023-06-15)</h2> <h3>Added</h3> <ul> <li>Optionally write to your own target object rather than <code>process.env</code>. Defaults to <code>process.env</code>. <a href="https://redirect.github.com/motdotla/dotenv/pull/753">#753</a></li> <li>Add import type URL to types file <a href="https://redirect.github.com/motdotla/dotenv/pull/751">#751</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/motdotla/dotenv/commit/b13ca7bbdae868e2565db1188a033761ff59cb47"><code>b13ca7b</code></a> 16.3.1</li> <li><a href="https://github.com/motdotla/dotenv/commit/9bcc2e716c5dc6c9aa00efdd95f60e5fdf316623"><code>9bcc2e7</code></a> Merge pull request <a href="https://redirect.github.com/motdotla/dotenv/issues/756">#756</a> from motdotla/type-fix</li> <li><a href="https://github.com/motdotla/dotenv/commit/80fff4bbf052c68e51b7a3efcca6e9322621202a"><code>80fff4b</code></a> Add type definition for DOTENV_KEY</li> <li><a href="https://github.com/motdotla/dotenv/commit/50163a1de9ae392fef03600350fef7d043e26361"><code>50163a1</code></a> update type file</li> <li><a href="https://github.com/motdotla/dotenv/commit/5c7d7f5f3ffa7b130a9630ff9b9639c0dea1ca77"><code>5c7d7f5</code></a> Add example demonstrating setting DOTENV_KEY</li> <li><a href="https://github.com/motdotla/dotenv/commit/76d3682e104f10440c8c6085fe27556f828cb48e"><code>76d3682</code></a> 16.3.0</li> <li><a href="https://github.com/motdotla/dotenv/commit/80219ae50e64443f1bc21e87c6eeb74d639a297c"><code>80219ae</code></a> Merge pull request <a href="https://redirect.github.com/motdotla/dotenv/issues/754">#754</a> from motdotla/dotenv-key-option</li> <li><a href="https://github.com/motdotla/dotenv/commit/dacd4501580e3830ee6298cc6556a33ba88a94d4"><code>dacd450</code></a> Add DOTENV_KEY to cli config and environment config options</li> <li><a href="https://github.com/motdotla/dotenv/commit/f20e646603bfe11d0444529774be5afce31a3089"><code>f20e646</code></a> Add options.DOTENV_KEY</li> <li><a href="https://github.com/motdotla/dotenv/commit/5861f6a94abceddb6746f4b459919c548db95f47"><code>5861f6a</code></a> Add failing test demonstrating need for DOTENV_KEY option</li> <li>Additional commits viewable in <a href="https://github.com/motdotla/dotenv/compare/v16.1.4...v16.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=dotenv&package-manager=npm_and_yarn&previous-version=16.1.4&new-version=16.3.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
Configuration menu - View commit details
-
Copy full SHA for 92b0a84 - Browse repository at this point
Copy the full SHA 92b0a84View commit details -
Merge branch 'develop' into dependabot/npm_and_yarn/develop/semantic-…
…release/github-9.0.3
Configuration menu - View commit details
-
Copy full SHA for 498cb68 - Browse repository at this point
Copy the full SHA 498cb68View commit details -
chore(deps-dev): Bump @semantic-release/github from 8.1.0 to 9.0.3 (#182
) Bumps [@semantic-release/github](https://github.com/semantic-release/github) from 8.1.0 to 9.0.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/semantic-release/github/releases"><code>@semantic-release/github</code>'s releases</a>.</em></p> <blockquote> <h2>v9.0.3</h2> <h2><a href="https://github.com/semantic-release/github/compare/v9.0.2...v9.0.3">9.0.3</a> (2023-06-08)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> update dependency <code>@semantic-release/error</code> to v4 (<a href="https://redirect.github.com/semantic-release/github/issues/649">#649</a>) (<a href="https://github.com/semantic-release/github/commit/09e43e6bbca41f5398202b0192444bd7e106db39">09e43e6</a>)</li> </ul> <h2>v9.0.2</h2> <h2><a href="https://github.com/semantic-release/github/compare/v9.0.1...v9.0.2">9.0.2</a> (2023-06-03)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> update dependency <code>@octokit/plugin-paginate-rest</code> to v7 (<a href="https://redirect.github.com/semantic-release/github/issues/646">#646</a>) (<a href="https://github.com/semantic-release/github/commit/86a75627e5804dcce452b16356649c77da098ff7">86a7562</a>)</li> </ul> <h2>v9.0.1</h2> <h2><a href="https://github.com/semantic-release/github/compare/v9.0.0...v9.0.1">9.0.1</a> (2023-06-03)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> update dependency <code>@octokit/plugin-retry</code> to v5 (<a href="https://redirect.github.com/semantic-release/github/issues/647">#647</a>) (<a href="https://github.com/semantic-release/github/commit/ecb8fa87fb1dc20a20d687db488c5d0770380892">ecb8fa8</a>)</li> </ul> <h2>v9.0.0</h2> <h3>BREAKING CHANGES</h3> <ul> <li><code>@semantic-release/github</code> is now a native ES Module</li> <li>Node 14 and 16 are no longer supported</li> </ul> <h2>v9.0.0-beta.2</h2> <h1><a href="https://github.com/semantic-release/github/compare/v9.0.0-beta.1...v9.0.0-beta.2">9.0.0-beta.2</a> (2023-05-29)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> update dependency https-proxy-agent to v7 (<a href="https://redirect.github.com/semantic-release/github/issues/636">#636</a>) (<a href="https://github.com/semantic-release/github/commit/0f1201009c24c5c9129a187c29b0b3c44c7af650">0f12010</a>)</li> </ul> <h3>Features</h3> <ul> <li>add 'draftRelease' option (<a href="https://redirect.github.com/semantic-release/github/issues/379">#379</a>) (<a href="https://github.com/semantic-release/github/commit/3c42e0233d90178020e79d2e99cfa84be3d76c01">3c42e02</a>)</li> </ul> <h2>v9.0.0-beta.1</h2> <h1><a href="https://github.com/semantic-release/github/compare/v8.0.8...v9.0.0-beta.1">9.0.0-beta.1</a> (2023-05-29)</h1> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/semantic-release/github/commit/09e43e6bbca41f5398202b0192444bd7e106db39"><code>09e43e6</code></a> fix(deps): update dependency <code>@semantic-release/error</code> to v4 (<a href="https://redirect.github.com/semantic-release/github/issues/649">#649</a>)</li> <li><a href="https://github.com/semantic-release/github/commit/4b203f7fcef709007447b2b441efaa84b8fe7d92"><code>4b203f7</code></a> chore(deps): lock file maintenance (<a href="https://redirect.github.com/semantic-release/github/issues/648">#648</a>)</li> <li><a href="https://github.com/semantic-release/github/commit/86a75627e5804dcce452b16356649c77da098ff7"><code>86a7562</code></a> fix(deps): update dependency <code>@octokit/plugin-paginate-rest</code> to v7 (<a href="https://redirect.github.com/semantic-release/github/issues/646">#646</a>)</li> <li><a href="https://github.com/semantic-release/github/commit/ecb8fa87fb1dc20a20d687db488c5d0770380892"><code>ecb8fa8</code></a> fix(deps): update dependency <code>@octokit/plugin-retry</code> to v5 (<a href="https://redirect.github.com/semantic-release/github/issues/647">#647</a>)</li> <li><a href="https://github.com/semantic-release/github/commit/acac0426fc0e4788d1cf8e72917c41fc35f3e16f"><code>acac042</code></a> chore(deps): update dependency semantic-release to v21.0.3 (<a href="https://redirect.github.com/semantic-release/github/issues/645">#645</a>)</li> <li><a href="https://github.com/semantic-release/github/commit/a589e18413490f293d668c5d665e3f21c15be047"><code>a589e18</code></a> v9 (<a href="https://redirect.github.com/semantic-release/github/issues/639">#639</a>)</li> <li><a href="https://github.com/semantic-release/github/commit/d78b44ab2d2e1b14ea9368892a278313beaed89e"><code>d78b44a</code></a> chore(deps): lock file maintenance (<a href="https://redirect.github.com/semantic-release/github/issues/638">#638</a>)</li> <li>See full diff in <a href="https://github.com/semantic-release/github/compare/v8.1.0...v9.0.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@semantic-release/github&package-manager=npm_and_yarn&previous-version=8.1.0&new-version=9.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
Configuration menu - View commit details
-
Copy full SHA for 878a7d1 - Browse repository at this point
Copy the full SHA 878a7d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for d6d2294 - Browse repository at this point
Copy the full SHA d6d2294View commit details