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

chore: 🤖 bump the minor-and-patch group with 11 updates #298

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 30, 2024

Bumps the minor-and-patch group with 11 updates:

Package From To
cobertura 1.0.2 1.0.3
eslint-import-resolver-typescript 3.6.3 3.7.0
prettier 3.3.3 3.4.2
release-it 17.10.0 17.11.0
rollup 4.27.3 4.29.1
typedoc 0.26.11 0.27.6
typedoc-plugin-frontmatter 1.0.0 1.1.2
typedoc-plugin-markdown 4.2.10 4.4.0
typedoc-plugin-remark 1.0.3 1.2.2
typedoc-plugin-rename-defaults 0.7.1 0.7.2
typescript 5.6.3 5.7.2

Updates cobertura from 1.0.2 to 1.0.3

Release notes

Sourced from cobertura's releases.

v1.0.3

Changelog

Sourced from cobertura's changelog.

1.0.3 27 December 2024

Commits

Updates eslint-import-resolver-typescript from 3.6.3 to 3.7.0

Release notes

Sourced from eslint-import-resolver-typescript's releases.

v3.7.0

Minor Changes

  • #326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    module.exports = {
    settings: {
    'import-x/resolver-next': [
    createTypeScriptImportResolver({
    alwaysTryTypes: true,
    }),
    ],
    },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

Changelog

Sourced from eslint-import-resolver-typescript's changelog.

3.7.0

Minor Changes

  • #326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    module.exports = {
    settings: {
    'import-x/resolver-next': [
    createTypeScriptImportResolver({
    alwaysTryTypes: true,
    }),
    ],
    },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

Commits
  • c5da700 chore: release eslint-import-resolver-typescript (#327)
  • 93ea130 feat: implement import-x resolver interface v3 (#326)
  • e6256b7 chore(deps): update dependency simple-git-hooks to ^2.11.1 (#325)
  • da56f17 chore(deps): update dependency react to ^18.3.1 (#324)
  • 88a6d44 chore(deps): update node.js to v18.20.5 (#323)
  • bed664f chore(deps): update dependency @​changesets/cli to ^2.27.10 (#322)
  • 42e7cc3 chore(deps): update dependency @​types/node to ^18.19.63 (#320)
  • 13fa760 chore(deps): update dependency @​changesets/cli to ^2.27.9 (#319)
  • 5ee5879 fix(deps): update dependency debug to ^4.3.7 (#316)
  • f5b09f5 chore(deps): update dependency eslint to ^8.57.1 (#315)
  • Additional commits viewable in compare view

Updates prettier from 3.3.3 to 3.4.2

Release notes

Sourced from prettier's releases.

3.4.2

🔗 Changelog

3.4.1

🔗 Changelog

3.4.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.4.2

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#16891 by @​fisker)

// Input
class A {
  @decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
// Prettier 3.4.1
class A {
@​decorator
async /**
</tr></table>

... (truncated)

Commits

Updates release-it from 17.10.0 to 17.11.0

Release notes

Sourced from release-it's releases.

Release 17.11.0

  • Update dependencies (182e992)
  • GitLab Generic Package Repository for assets (#1189) (54399c9)
  • fix(gitlab): don't set Content-Type header when uploading release assets (#1183) (04a36d2)
  • Fixed GitBase.getLatestVersion to computed formatted tagTemplate before using it for latestTag computation (#1170) (09d7d1b)
  • Add git-cliff example (#1176) (b161114)
  • Move configuration options to existing doc pages + table format, shorten (28213bf)
  • Add docs for configuration options (#1155) (667cd6a)
  • Improve docs on Tag Match (#1165) (716b44f)
Commits
  • 2ec1d60 Release 17.11.0
  • 182e992 Update dependencies
  • 54399c9 GitLab Generic Package Repository for assets (#1189)
  • 04a36d2 fix(gitlab): don't set Content-Type header when uploading release assets (#1183)
  • 09d7d1b Fixed GitBase.getLatestVersion to computed formatted tagTemplate before using...
  • b161114 Add git-cliff example (#1176)
  • 28213bf Move configuration options to existing doc pages + table format, shorten
  • 667cd6a Add docs for configuration options (#1155)
  • 716b44f Improve docs on Tag Match (#1165)
  • See full diff in compare view

Updates rollup from 4.27.3 to 4.29.1

Release notes

Sourced from rollup's releases.

v4.29.1

4.29.1

2024-12-21

Bug Fixes

  • Fix crash from deoptimized logical expressions (#5771)

Pull Requests

v4.29.0

4.29.0

2024-12-20

Features

  • Treat objects as truthy and always check second argument to better simplify logical expressions (#5763)

Pull Requests

v4.28.1

4.28.1

2024-12-06

Bug Fixes

  • Support running Rollup natively on LoongArch (#5749)
  • Add optional debugId to SourceMap types (#5751)

Pull Requests

... (truncated)

Changelog

Sourced from rollup's changelog.

4.29.1

2024-12-21

Bug Fixes

  • Fix crash from deoptimized logical expressions (#5771)

Pull Requests

4.29.0

2024-12-20

Features

  • Treat objects as truthy and always check second argument to better simplify logical expressions (#5763)

Pull Requests

4.28.1

2024-12-06

Bug Fixes

  • Support running Rollup natively on LoongArch (#5749)
  • Add optional debugId to SourceMap types (#5751)

Pull Requests

4.28.0

... (truncated)

Commits
  • 5d37778 4.29.1
  • 86e1f43 fix: do not optimize the literal value if the cache is deoptimized (#5771)
  • f116952 Remove unnecessary lifetimes (#5769)
  • dadd488 4.29.0
  • a4b78eb fix(deps): lock file maintenance minor/patch updates (#5767)
  • d52f00d fix: introduce UnknownFalsyValue for enhancing if statement tree-shaking (#5763)
  • 65c8901 chore(deps): update dependency @​rollup/plugin-node-resolve to v16 (#5766)
  • 7a8ac46 docs: add utf-8 encoding to JSON file reading (#5759)
  • 31f1670 fix(deps): lock file maintenance minor/patch updates (#5760)
  • e60fb1c 4.28.1
  • Additional commits viewable in compare view

Updates typedoc from 0.26.11 to 0.27.6

Release notes

Sourced from typedoc's releases.

v0.27.6

Features

  • Added ignoredHighlightLanguages option to specify languages which will be allowed in code blocks but not highlighted, #2819.

Bug Fixes

  • @include and @includeCode now work in the readme file, #2814.
  • TypeDoc will now avoid making references to references, #2811.
  • Fixed output specific option specification, #2818.
  • Improved type reference conversion to avoid including defaulted type arguments, #2820.
  • Fixed parsing of declaration references which include a module and a local reference, #2810.
  • Improved link resolution logic to prioritize type alias properties with the same symbol over type literal properties within function parameters.

v0.27.5

Bug Fixes

  • Possibly Breaking: TypeDoc will no longer render anchors within the page for deeply nested properties. This only affects links to properties of properties of types, which did not have a clickable link exposed so are unlikely to have been linked to. Furthermore, these links were not always created by TypeDoc, only being created if all parent properties contained comments, #2808.
  • TypeDoc will now warn if a property which does not have a URL within the rendered document and the parent property/page will be linked to instead, #2808. These warnings can be disabled with the validation.rewrittenLink option.
  • Fix restoration of groups/categories including documents, #2801.
  • Fixed missed relative paths within markdown link references in documents.
  • Improved handling of incomplete inline code blocks within markdown.
  • Direct https:// links under the hostedBaseUrl option's URL will no longer be treated as external, #2809.

Thanks!

v0.27.4

Features

  • API: Introduced new Converter.EVENT_CREATE_PROJECT event which fires when a project is created by the converter, #2800.

Bug Fixes

  • Switch from gzip to deflate for compressing assets to make output consistent across different operating systems, #2796.

... (truncated)

Changelog

Sourced from typedoc's changelog.

v0.27.6 (2024-12-26)

Features

  • Added ignoredHighlightLanguages option to specify languages which will be allowed in code blocks but not highlighted, #2819.

Bug Fixes

  • @include and @includeCode now work in the readme file, #2814.
  • TypeDoc will now avoid making references to references, #2811.
  • Fixed output specific option specification, #2818.
  • Improved type reference conversion to avoid including defaulted type arguments, #2820.
  • Fixed parsing of declaration references which include a module and a local reference, #2810.
  • Improved link resolution logic to prioritize type alias properties with the same symbol over type literal properties within function parameters.

v0.27.5 (2024-12-14)

Bug Fixes

  • Possibly Breaking: TypeDoc will no longer render anchors within the page for deeply nested properties. This only affects links to properties of properties of types, which did not have a clickable link exposed so are unlikely to have been linked to. Furthermore, these links were not always created by TypeDoc, only being created if all parent properties contained comments, #2808.
  • TypeDoc will now warn if a property which does not have a URL within the rendered document and the parent property/page will be linked to instead, #2808. These warnings can be disabled with the validation.rewrittenLink option.
  • Fix restoration of groups/categories including documents, #2801.
  • Fixed missed relative paths within markdown link references in documents.
  • Improved handling of incomplete inline code blocks within markdown.
  • Direct https:// links under the hostedBaseUrl option's URL will no longer be treated as external, #2809.

Thanks!

v0.27.4 (2024-12-09)

Features

  • API: Introduced new Converter.EVENT_CREATE_PROJECT event which fires when a project is created by the converter, #2800.

Bug Fixes

  • Switch from gzip to deflate for compressing assets to make output consistent across different operating systems, #2796.

... (truncated)

Commits
  • 9a1a719 Update changelog for release
  • 44bffe8 Release v0.27.6
  • d626468 Fix @link with declaration reference using !~
  • 9e667d0 Add ignoredHighlightLanguages option
  • 9b62f09 Fix output specific option specification
  • 53fa22e Avoid including defaulted type arguments
  • b9177b4 Update contributing docs
  • 23008f6 Improve link resolution prioritization
  • 2c10f67 Avoid references to references
  • 016e6a1 Lock npm to 10 for CI
  • Additional commits viewable in compare view

Updates typedoc-plugin-frontmatter from 1.0.0 to 1.1.2

Release notes

Sourced from typedoc-plugin-frontmatter's releases.

v2.0.1 - v2.05

  • Bug fixing / teething issues
Changelog

Sourced from typedoc-plugin-frontmatter's changelog.

1.1.2 (2024-12-11)

Patch Changes

  • Export PluginOptions for external use (#737).

1.1.1 (2024-12-11)

  • Empty release due to unintended publication.

1.1.0 (2024-11-27)

Minor Changes

  • typedoc@0.27 / typedoc-plugin-markdown@4.3 support
Commits
  • 7566492 Version Packages
  • 88b354b Merge branch 'issue-737'
  • 3fa8a7e fix(frontmatter): export PluginOptions for external use
  • 71f9cdc chore(docs): updated changelog date
  • 2128e10 Version Packages
  • 5e73533 fix(frontmatter): export PluginOptions for external use
  • 292b7be chore(docs): updated changelog dates
  • 6f80d78 Version Packages
  • 4d466c9 chore(all): prepare sub-packages
  • 19c21a3 Version Packages
  • Additional commits viewable in compare view

Updates typedoc-plugin-markdown from 4.2.10 to 4.4.0

Release notes

Sourced from typedoc-plugin-markdown's releases.

typedoc-plugin-markdown@4.4.0

Minor Changes

  • Expose "isDeprecated" flag to navigation model (#747).
  • Moved source link inline and exposed to all parent symbols (#746).
  • Remove extraneous "Index" headings.
  • Always assign HTML anchor ids to linkable symbols within table rows.

Patch Changes

  • Always display inline object for tuple types (#745).
  • Strikeout deprecated items in reflection indexes.
  • Fix inline formatting of types when when "useCodeBlocks" is used (#742).
  • Expose group descriptions to module indexes.
  • Expose global documents with "packages" entryPointStrategy.

typedoc-plugin-markdown@4.3.3

Patch Changes

  • Correctly handle anchor resolutions with table formats.
  • Fix invalid typescript syntax for type aliases inside declaration code blocks when "useCodeBlocks" is true (#741).

typedoc-plugin-markdown@4.3.2

Patch Changes

  • Enable {@link} resolution on type alias properties (#732).
  • Remove superfluous name attribute when "useHtmlAnchors" is true..
  • Escape characters inside @link tags.
  • Fixed spacing around inline object declarations.
  • Always expose type arguments of reference types as per default theme (#733).

typedoc-plugin-markdown@4.3.1

Patch Changes

  • Expose type declarations to array types.
  • Correctly wrap array of unions in parenthesis (#719).
  • Omit inline parameter declarations when not useful (#720).

typedoc-plugin-markdown@4.3.0

Minor Changes

  • Implemented typedoc 0.27 compatibility support.
  • Exposed "typeDeclarationVisibility" option to provide a "compact" output structure (#703).
  • Exposed "pageTitleTemplates" option that accepts a string with placeholder or function arguments to control page titles (#715).
  • Exposed formatting with prettier options "formatWithPrettier" and "prettierConfigFile" that enables additional formatting of output if Prettier is installed on a project.

Patch Changes

  • Improved structure of curried and overloaded signatures (#714) (#718)
  • The "hideGroupHeadings" option respects group order (#716)

... (truncated)

Changelog

Sourced from typedoc-plugin-markdown's changelog.

4.4.0 (2024-12-30)

This release introduces structural enhancements to the user interface and bug fixes to enhance overall functionality.

Structural Changes

  • Source file links are now placed inline rather than under separate "Defined in" headings. This change aligns with the default HTML theme, generates more compact output, and improves the readability of automatically generated Table of Contents (TOCs).
  • Extraneous "Index" headings on module landing pages have been removed, bringing the structure in line with the default HTML theme and reducing unnecessary clutter.
  • Anchor IDs are now applied to linkable symbols within table rows by default. Previously, the useHTMLAnchors option was required, but since there is no alternative way to link to these items, this behaviour is now the default.

Minor Changes

  • Expose "isDeprecated" flag to navigation model (#747).
  • Moved source link inline and exposed to all parent symbols (#746).
  • Remove extraneous "Index" headings.
  • Always assign HTML anchor ids to linkable symbols within table rows.

Patch Changes

  • Always display inline object for tuple types (#745).
  • Strikeout deprecated items in reflection indexes.
  • Fix inline formatting of types when when "useCodeBlocks" is used (#742).
  • Expose group descriptions to module indexes.
  • Expose global documents with "packages" entryPointStrategy.

4.3.3 (2024-12-18)

Patch Changes

  • Correctly handle anchor resolutions with table formats.
  • Fix invalid typescript syntax for type aliases inside declaration code blocks when "useCodeBlocks" is true (#741).

4.3.2 (2024-12-08)

Patch Changes

  • Enable {@link} resolution on type alias properties (#732).
  • Remove superfluous name attribute when "useHtmlAnchors" is true..
  • Escape characters inside @link tags.
  • Fixed spacing around inline object declarations.
  • Always expose type arguments of reference types as per default theme (#733).

4.3.1 (2024-12-01)

Patch Changes

  • Expose type declarations to array types.
  • Correctly wrap array of unions in parenthesis (#719).
  • Omit inline parameter declarations when not useful (#720).

... (truncated)

Commits
  • 1b0d04b Version Packages
  • 28e23bc chore(all): updated dev docs
  • 591939c fix(core): fix index generation issues
  • 75cf255 chore(docs): moved api docs
  • 640b9ca feat(core): always assign header ids to linkable symbols within table rows
  • 5fd0f09 chore(core): updated packages
  • ad41189 fix(core): isDeprecated logic updates
  • 87d044e fix(core): expose group descriptions to module indexes
  • e798507 fix(core): moved source link inline and exposed to all parent symbols
  • 09f6e97 fix(core): always display inline object for tuple type
  • Additional commits viewable in compare view

Updates typedoc-plugin-remark from 1.0.3 to 1.2.2

Release notes

Sourced from typedoc-plugin-remark's releases.

v2.0.1 - v2.05

  • Bug fixing / teething issues

v1.2.1

  • #55: Links not parsed in return comments.

v1.2.0

  • #54 Added support for optional Docusaurus formatting

v1.1.27

  • #52 Disable HTML escaping in inline code blocks

v1.1.26

  • Additional fix to #50 (code block formatting).

v1.1.25

  • Fixed comment tags layout (#50)

v1.1.24

  • Escaped pipe character in comments (#49)

v1.1.23

  • Escaped pipe character in type defs (#49)

v1.1.22

  • FIxed rendering bug with Type Parameters (#48 )

v1.1.21

  • Fixed typedoc 0.14.0 compatibility (#44)

v1.1.20

  • Fixed #43 Properties with multiple allowable types render incorrectly
Changelog

Sourced from typedoc-plugin-remark's changelog.

1.2.2 (2024-12-23)

Patch Changes

  • Remove heading count restriction when adding toc placeholder heading (for usage with remark-toc).

1.2.1 (2024-12-11)

Patch Changes

  • Export PluginOptions for external use (#737)

1.2.0 (2024-12-09)

Minor Changes

  • Exposed "defaultRemarkPlugins" option to configure which remark plugins are loaded by default (#735).

1.1.1 (2024-12-03)

Patch Changes

  • Resolve local plugins from process.cwd().

1.1.0 (2024-11-27)

Minor Changes

  • typedoc@0.27 / typedoc-plugin-markdown@4.3 support
Commits
  • e3bd652 Version Packages
  • c100fc7 fix(remark): remove heading count restriction when adding toc placeholder
  • 31d39ee feat(remark): refactor remark-toc implementation
  • 71f9cdc chore(docs): updated changelog date
  • 2128e10 Version Packages
  • 1cbdb24 fix(remark): export PluginOptions for external use
  • 496dacb chore(docs): updated changelog date
  • 0f9facd Version Packages
  • 3d54350 feat(remark): exposed "defaultRemarkPlugins" option
  • 34d8d65 chore(docs): updated changelog date
  • Additional commits viewable in compare view

Updates typedoc-plugin-rename-defaults from 0.7.1 to 0.7.2

Commits

Updates typescript from 5.6.3 to 5.7.2

Release notes

Sourced from typescript's releases.

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.7 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d701d90 Bump version to 5.7.2 and LKG
  • 0503a63 🤖 Pick PR #60450 (Move to file: fix detection of refe...) into release-5.7 (#...
  • 3140dbb 🤖 Pick PR #60488 (Stub out copilotRelated command) into release-5.7 (#60495)
  • c1216de Update LKG
  • 3ee2b95 🤖 Pick PR #60415 (Fix false positive rewriteRelativeI...) into release-5.7 (#...
  • 44bd3f2 Bump version to 5.7.1-rc and LKG
  • 5925c81 Update LKG
  • 84d58cf Merge remote-tracking branch 'origin/main' into release-5.7
  • 0ec4d30 Fixing exception on unsaved file (#60362)
  • 11b2930 Add compatible overloads that accept ArrayBuffer to BigInt64Array/BigUint64Ar...
  • Additional commits viewable 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-and-patch group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [cobertura](https://github.com/bacebu4/cobertura) | `1.0.2` | `1.0.3` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `3.6.3` | `3.7.0` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.4.2` |
| [release-it](https://github.com/release-it/release-it) | `17.10.0` | `17.11.0` |
| [rollup](https://github.com/rollup/rollup) | `4.27.3` | `4.29.1` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.26.11` | `0.27.6` |
| [typedoc-plugin-frontmatter](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-frontmatter) | `1.0.0` | `1.1.2` |
| [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown) | `4.2.10` | `4.4.0` |
| [typedoc-plugin-remark](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-remark) | `1.0.3` | `1.2.2` |
| [typedoc-plugin-rename-defaults](https://github.com/felipecrs/typedoc-plugin-rename-defaults) | `0.7.1` | `0.7.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.7.2` |


Updates `cobertura` from 1.0.2 to 1.0.3
- [Release notes](https://github.com/bacebu4/cobertura/releases)
- [Changelog](https://github.com/bacebu4/cobertura/blob/master/CHANGELOG.md)
- [Commits](bacebu4/cobertura@v1.0.2...v1.0.3)

Updates `eslint-import-resolver-typescript` from 3.6.3 to 3.7.0
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.6.3...v3.7.0)

Updates `prettier` from 3.3.3 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.3...3.4.2)

Updates `release-it` from 17.10.0 to 17.11.0
- [Release notes](https://github.com/release-it/release-it/releases)
- [Changelog](https://github.com/release-it/release-it/blob/main/CHANGELOG.md)
- [Commits](release-it/release-it@17.10.0...17.11.0)

Updates `rollup` from 4.27.3 to 4.29.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.27.3...v4.29.1)

Updates `typedoc` from 0.26.11 to 0.27.6
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.26.11...v0.27.6)

Updates `typedoc-plugin-frontmatter` from 1.0.0 to 1.1.2
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-frontmatter/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-frontmatter@1.1.2/packages/typedoc-plugin-frontmatter)

Updates `typedoc-plugin-markdown` from 4.2.10 to 4.4.0
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-markdown@4.4.0/packages/typedoc-plugin-markdown)

Updates `typedoc-plugin-remark` from 1.0.3 to 1.2.2
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-remark/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-remark@1.2.2/packages/typedoc-plugin-remark)

Updates `typedoc-plugin-rename-defaults` from 0.7.1 to 0.7.2
- [Commits](felipecrs/typedoc-plugin-rename-defaults@v0.7.1...v0.7.2)

Updates `typescript` from 5.6.3 to 5.7.2
- [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.3...v5.7.2)

---
updated-dependencies:
- dependency-name: cobertura
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: eslint-import-resolver-typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: release-it
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typedoc-plugin-frontmatter
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typedoc-plugin-markdown
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typedoc-plugin-remark
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typedoc-plugin-rename-defaults
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Copy link

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/cobertura@1.0.3 None 0 14.9 kB bacebu4
npm/eslint-import-resolver-typescript@3.7.0 Transitive: environment, filesystem, unsafe +18 811 kB jounqin
npm/postcss-cli@8.3.1 environment, filesystem +34 1.17 MB ryanzim
npm/postcss@8.4.49 environment, filesystem +2 232 kB ai

🚮 Removed packages: npm/cobertura@1.0.2, npm/eslint-import-resolver-typescript@3.6.3

View full report↗︎

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 6, 2025

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

@dependabot dependabot bot closed this Jan 6, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-4ba0117c22 branch January 6, 2025 23:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant