Skip to content
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

Bump the minor-updates group across 1 directory with 8 updates #79

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2024

Bumps the minor-updates group with 8 updates in the / directory:

Package From To
@octokit/plugin-paginate-graphql 5.2.3 5.2.4
@octokit/plugin-throttling 9.3.1 9.3.2
astro 4.15.11 4.16.2
lit 3.2.0 3.2.1
@astrojs/check 0.9.3 0.9.4
@types/mocha 10.0.8 10.0.9
@types/node 22.7.4 22.7.5
typescript 5.6.2 5.6.3

Updates @octokit/plugin-paginate-graphql from 5.2.3 to 5.2.4

Release notes

Sourced from @​octokit/plugin-paginate-graphql's releases.

v5.2.4

5.2.4 (2024-10-11)

Bug Fixes

  • TypeError with hasOwnProperty in deepFindPathToProperty (#234) (7b17cc4), closes #137
Commits
  • 7b17cc4 fix: TypeError with hasOwnProperty in deepFindPathToProperty (#234)
  • 3ce6b78 build(deps): lock file maintenance (#241)
  • dc94d99 ci(action): update actions/checkout digest to eef6144 (#240)
  • 9817464 build(deps): lock file maintenance (#237)
  • 6bbf11b chore(deps): update dependency @​octokit/tsconfig to v4 (#235)
  • 64cff1c build(deps): lock file maintenance (#236)
  • 17e58b6 chore(deps): update dependency esbuild to ^0.24.0 (#233)
  • See full diff in compare view

Updates @octokit/plugin-throttling from 9.3.1 to 9.3.2

Release notes

Sourced from @​octokit/plugin-throttling's releases.

v9.3.2

9.3.2 (2024-10-04)

Bug Fixes

  • handle 429 status code when being throttled (#740) (128ecb6)
Commits
  • 128ecb6 fix: handle 429 status code when being throttled (#740)
  • 1d9370f build(deps): lock file maintenance (#737)
  • 4fc08ec ci: correctly use the node version from the matrix (#736)
  • 792a128 chore(deps): update dependency fetch-mock to v11 (#726)
  • 69a1d8b chore(deps): update dependency @​octokit/tsconfig to v4 (#735)
  • 72a7a09 chore(deps): update dependency esbuild to ^0.24.0 (#732)
  • c2b7f78 build(deps): lock file maintenance (#733)
  • 00d4c83 build(deps): lock file maintenance (#729)
  • 555ab44 build(deps): bump vite from 5.4.1 to 5.4.6 (#731)
  • 4882ed6 build(deps): lock file maintenance (#728)
  • Additional commits viewable in compare view

Updates astro from 4.15.11 to 4.16.2

Release notes

Sourced from astro's releases.

astro@4.16.2

Patch Changes

astro@4.16.1

Patch Changes

  • #12177 a4ffbfa Thanks @​matthewp! - Ensure we target scripts for execution in the router

    Using document.scripts is unsafe because if the application has a name="scripts" this will shadow the built-in document.scripts. Fix is to use getElementsByTagName to ensure we're only grabbing real scripts.

  • #12173 2d10de5 Thanks @​ematipico! - Fixes a bug where Astro Actions couldn't redirect to the correct pathname when there was a rewrite involved.

astro@4.16.0

Minor Changes

  • #12039 710a1a1 Thanks @​ematipico! - Adds a markdown.shikiConfig.langAlias option that allows aliasing a non-supported code language to a known language. This is useful when the language of your code samples is not a built-in Shiki language, but you want your Markdown source to contain an accurate language while also displaying syntax highlighting.

    The following example configures Shiki to highlight cjs code blocks using the javascript syntax highlighter:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
    markdown: {
    shikiConfig: {
    langAlias: {
    cjs: 'javascript',
    },
    },
    },
    });

    Then in your Markdown, you can use the alias as the language for a code block for syntax highlighting:

    ```cjs
    'use strict';
    function commonJs() {
    return 'I am a commonjs file';
    }
    </code></pre>
    </li>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/11984">#11984</a> <a href="https://github.com/withastro/astro/commit/3ac2263ff6070136bec9cffb863c38bcc31ccdfe"><code>3ac2263</code></a> Thanks <a href="https://github.com/chaegumi"><code>@​chaegumi</code></a>! - Adds a new <code>build.concurreny</code> configuration option to specify the number of pages to build in parallel</p>
    <p><strong>In most cases, you should not change the default value of <code>1</code>.</strong></p>
    </li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md&quot;&gt;astro's changelog</a>.</em></p>
    <blockquote>
    <h2>4.16.2</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li><a href="https://redirect.github.com/withastro/astro/pull/12206&quot;&gt;#12206&lt;/a> <a href="https://github.com/withastro/astro/commit/12b00225067445629e5ae451d763d03f70065f88&quot;&gt;&lt;code&gt;12b0022&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/bluwy&quot;&gt;&lt;code&gt;@​bluwy&lt;/code&gt;&lt;/a>! - Reverts <a href="https://redirect.github.com/withastro/astro/pull/12173&quot;&gt;withastro/astro#12173&lt;/a> which caused <code>Can't modify immutable headers</code> warnings and 500 errors on Cloudflare Pages</li>
    </ul>
    <h2>4.16.1</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12177&quot;&gt;#12177&lt;/a> <a href="https://github.com/withastro/astro/commit/a4ffbfaa5cb460c12bd486fd75e36147f51d3e5e&quot;&gt;&lt;code&gt;a4ffbfa&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/matthewp&quot;&gt;&lt;code&gt;@​matthewp&lt;/code&gt;&lt;/a>! - Ensure we target scripts for execution in the router</p>
    <p>Using <code>document.scripts</code> is unsafe because if the application has a <code>name=&quot;scripts&quot;</code> this will shadow the built-in <code>document.scripts</code>. Fix is to use <code>getElementsByTagName</code> to ensure we're only grabbing real scripts.</p>
    </li>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12173&quot;&gt;#12173&lt;/a> <a href="https://github.com/withastro/astro/commit/2d10de5f212323e6e19c7ea379826dcc18fe739c&quot;&gt;&lt;code&gt;2d10de5&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/ematipico&quot;&gt;&lt;code&gt;@​ematipico&lt;/code&gt;&lt;/a>! - Fixes a bug where Astro Actions couldn't redirect to the correct pathname when there was a rewrite involved.</p>
    </li>
    </ul>
    <h2>4.16.0</h2>
    <h3>Minor Changes</h3>
    <ul>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12039&quot;&gt;#12039&lt;/a> <a href="https://github.com/withastro/astro/commit/710a1a11f488ff6ed3da6d3e0723b2322ccfe27b&quot;&gt;&lt;code&gt;710a1a1&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/ematipico&quot;&gt;&lt;code&gt;@​ematipico&lt;/code&gt;&lt;/a>! - Adds a <code>markdown.shikiConfig.langAlias</code> option that allows <a href="https://shiki.style/guide/load-lang#custom-language-aliases&quot;&gt;aliasing a non-supported code language to a known language</a>. This is useful when the language of your code samples is not <a href="https://shiki.style/languages&quot;&gt;a built-in Shiki language</a>, but you want your Markdown source to contain an accurate language while also displaying syntax highlighting.</p>
    <p>The following example configures Shiki to highlight <code>cjs</code> code blocks using the <code>javascript</code> syntax highlighter:</p>
    <pre lang="js"><code>import { defineConfig } from 'astro/config';
    export default defineConfig({
    markdown: {
    shikiConfig: {
    langAlias: {
    cjs: 'javascript',
    },
    },
    },
    });
    </code></pre>
    <p>Then in your Markdown, you can use the alias as the language for a code block for syntax highlighting:</p>
    <pre lang="md"><code>```cjs
    'use strict';
    function commonJs() {
    return 'I am a commonjs file';
    }
    

... (truncated)

Commits

Updates lit from 3.2.0 to 3.2.1

Release notes

Sourced from lit's releases.

@​lit-labs/ssr@​3.2.1

Patch Changes

  • #4421 c7134a40 - Fix server template throwing when encountering an attribute binding on the html tag. This is now handled correctly.

  • #4479 ee97d089 - Fix incorrect attribute names being matched to values when attribute expressions are followed by element expressions such as using the ref directive.

lit-html@3.2.1

Patch Changes

  • #4782 99703a03 - Revert the Terser plugin for Rollup to rollup-plugin-terser from @rollup/plugin-terser due to a bug that prevented our minified name prefixing from working.

lit@3.2.1

Patch Changes

  • #4782 99703a03 - Revert the Terser plugin for Rollup to rollup-plugin-terser from @rollup/plugin-terser due to a bug that prevented our minified name prefixing from working.
Changelog

Sourced from lit's changelog.

3.2.1

Patch Changes

  • #4782 99703a03 - Revert the Terser plugin for Rollup to rollup-plugin-terser from @rollup/plugin-terser due to a bug that prevented our minified name prefixing from working.
Commits

Updates @astrojs/check from 0.9.3 to 0.9.4

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.4

Patch Changes

  • 6e62aaa: Upgrades chokidar to v4
  • 5a44072: Fixes formatting not working by default in certain circumstances
  • Updated dependencies [5a44072]
  • Updated dependencies [3a836de]
    • @​astrojs/language-server@​2.15.0
Changelog

Sourced from @​astrojs/check's changelog.

0.9.4

Patch Changes

  • 6e62aaa: Upgrades chokidar to v4
  • 5a44072: Fixes formatting not working by default in certain circumstances
  • Updated dependencies [5a44072]
  • Updated dependencies [3a836de]
    • @​astrojs/language-server@​2.15.0
Commits

Updates @types/mocha from 10.0.8 to 10.0.9

Commits

Updates @types/node from 22.7.4 to 22.7.5

Commits

Updates typescript from 5.6.2 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • See full diff in compare view

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 commands and options

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-updates group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@octokit/plugin-paginate-graphql](https://github.com/octokit/plugin-paginate-graphql.js) | `5.2.3` | `5.2.4` |
| [@octokit/plugin-throttling](https://github.com/octokit/plugin-throttling.js) | `9.3.1` | `9.3.2` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.15.11` | `4.16.2` |
| [lit](https://github.com/lit/lit/tree/HEAD/packages/lit) | `3.2.0` | `3.2.1` |
| [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.9.3` | `0.9.4` |
| [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mocha) | `10.0.8` | `10.0.9` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.7.4` | `22.7.5` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.6.3` |



Updates `@octokit/plugin-paginate-graphql` from 5.2.3 to 5.2.4
- [Release notes](https://github.com/octokit/plugin-paginate-graphql.js/releases)
- [Commits](octokit/plugin-paginate-graphql.js@v5.2.3...v5.2.4)

Updates `@octokit/plugin-throttling` from 9.3.1 to 9.3.2
- [Release notes](https://github.com/octokit/plugin-throttling.js/releases)
- [Commits](octokit/plugin-throttling.js@v9.3.1...v9.3.2)

Updates `astro` from 4.15.11 to 4.16.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@4.16.2/packages/astro)

Updates `lit` from 3.2.0 to 3.2.1
- [Release notes](https://github.com/lit/lit/releases)
- [Changelog](https://github.com/lit/lit/blob/main/packages/lit/CHANGELOG.md)
- [Commits](https://github.com/lit/lit/commits/lit@3.2.1/packages/lit)

Updates `@astrojs/check` from 0.9.3 to 0.9.4
- [Release notes](https://github.com/withastro/language-tools/releases)
- [Changelog](https://github.com/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md)
- [Commits](https://github.com/withastro/language-tools/commits/@astrojs/check@0.9.4/packages/astro-check)

Updates `@types/mocha` from 10.0.8 to 10.0.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mocha)

Updates `@types/node` from 22.7.4 to 22.7.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `typescript` from 5.6.2 to 5.6.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.2...v5.6.3)

---
updated-dependencies:
- dependency-name: "@octokit/plugin-paginate-graphql"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@octokit/plugin-throttling"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: lit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@astrojs/check"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@types/mocha"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 14, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 21, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 21, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-updates-866374e6a0 branch October 21, 2024 06:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants