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(deps): update devdependencies (major) #124

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 2, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rightcapital/eslint-config (source) 38.0.0 -> 40.0.1 age adoption passing confidence
@rightcapital/prettier-config (source) 6.0.12 -> 7.1.11 age adoption passing confidence
concurrently 8.2.2 -> 9.1.0 age adoption passing confidence
inquirer (source) 9.2.13 -> 12.3.0 age adoption passing confidence
typedoc-plugin-markdown (source) 3.17.1 -> 4.3.3 age adoption passing confidence

Release Notes

RightCapitalHQ/frontend-style-guide (@​rightcapital/eslint-config)

v40.0.1

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (79bbd58)

v40.0.0

Compare Source

Major changes
  • feat(eslint-config): add @typescript-eslint/consistent-type-definitions rule (95ff644)

v39.0.1

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (c181541)

v39.0.0

Compare Source

Major changes
  • fix(deps): update eslint rule and plugin updates (50fce2e)

v38.0.1

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (b1d750e)
RightCapitalHQ/frontend-style-guide (@​rightcapital/prettier-config)

v7.1.11

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (79bbd58)

v7.1.10

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (c181541)

v7.1.9

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (b1d750e)

v7.1.8

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (fb75aa4)

v7.1.7

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (d39d5a4)

v7.1.6

Compare Source

Patches
  • chore(deps): update pnpm to v9.6.0 (4e6d77f)

v7.1.5

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (8bc9e55)

v7.1.4

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (c3609db)

v7.1.3

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (99f3128)

v7.1.2

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (c3adf41)

v7.1.1

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (3396d79)

v7.1.0

Compare Source

Minor changes
  • feat: add types to packages (4a977ee)

v7.0.4

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (491ecdd)

v7.0.3

Compare Source

Patches
  • fix(deps): update dependencies (non-major) (cff58b9)

v7.0.2

Compare Source

Patches
  • chore(deps): update pnpm to v9 (f553292)

v7.0.1

Compare Source

Thu, 25 Apr 2024 05:29:31 GMT

7.0.1 (2024-4-25)
  • fix(deps): pin dependency prettier-plugin-packagejson to 2.5.0 (a3a7202)

v7.0.0

Compare Source

Tue, 16 Apr 2024 01:58:14 GMT

v6.0.16

Compare Source

Thu, 11 Apr 2024 02:57:31 GMT

6.0.16 (2024-4-11)
  • fix(deps): update dependencies (non-major) (1df49a6)

v6.0.15

Compare Source

Tue, 19 Mar 2024 01:43:17 GMT

6.0.15 (2024-3-19)
  • fix(deps): update dependencies (non-major) (b045435)

v6.0.14

Compare Source

Mon, 26 Feb 2024 05:50:35 GMT

6.0.14 (2024-2-26)
  • fix(deps): update dependencies (non-major) (7f2eb99)

v6.0.13

Compare Source

Sun, 18 Feb 2024 02:27:42 GMT

6.0.13 (2024-2-18)
  • fix(deps): update dependencies (non-major) (4f884d7)
open-cli-tools/concurrently (concurrently)

v9.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v9.0.1...v9.1.0

v9.0.1

Compare Source

What's Changed

Full Changelog: open-cli-tools/concurrently@v9.0.0...v9.0.1

v9.0.0

Compare Source

SBoudrias/Inquirer.js (inquirer)

v12.3.0

Compare Source

  • Checkbox prompt: re-added support for an array of default to be provided listing pre-checked checkboxes. This is a legacy interface brought back given this feature removal was an involuntary breaking change during the v12 release. The preferred interface is to provide the checked property to choices { value: 'bar', checked: true }.

v12.2.0

Compare Source

v12.1.0

Compare Source

v12.0.1

Compare Source

v12.0.0

Compare Source

  • @types/node is now only a peerDependencies. This reduces the install size of inquirer dramatically for folks not using Typescript. It's unlikely to break your builds if you used TS already, if it does run npm install --dev @​types/node/yarn add --dev @​types/node.

v11.1.0

Compare Source

  • Now exports base utility Typescript types: import type { Question, DistinctQuestion, Answers } from 'inquirer';

You should use as follow to keep the inference working properly:

const questions = [
    { ... }
] as const satisfies Question[];
// If you're not using inquirer plugins, `Question` could alternatively be replaced by `DistinctQuestion` for stricter checks.

v11.0.2

Compare Source

  • Fix #​1555: when behaviour changed unexpectedly when returning a falsy value.

v11.0.1

Compare Source

v11.0.0

Compare Source

No technical breaking changes; but we changed the style of the question prefix once the answer is provided. Once a question is answer, the prefix becomes a tick mark (previously it was the same ? as when the prompt is idle.)

This is theme-able, and so can be overwritten to with theme.prefix.

v10.2.2

Compare Source

  • Fix the filter option not working.
  • The signal: AbortSignal didn't work with class based prompts (OSS plugins.) Now it should work consistently with legacy style prompts.

v10.2.1

Compare Source

  • Fix expand prompt being broken if a Separator was in the choices array.

v10.2.0

Compare Source

  • Includes various fixes & new features to the different built-in prompts
  • Fix: Major rework of the Typescript types. Hoping to reduce the amount of finicky type errors (or wrong types) you might've ran into.

v10.1.8

Compare Source

v10.1.7

Compare Source

v10.1.6

Compare Source

v10.1.5

Compare Source

v10.1.4

Compare Source

v10.1.3

Compare Source

v10.1.2

Compare Source

v10.1.1

Compare Source

v10.1.0

Compare Source

  • Adds the new { type: 'search' } prompt.

v10.0.4

Compare Source

v10.0.3

Compare Source

v10.0.2

Compare Source

v10.0.1

Compare Source

v10.0.0

Compare Source

  • Re-implemented with Typescript.
  • Adding CJS support (now inquirer is publishes a dual-build CJS/ESM.)
  • All core prompts are now coming from @inquirer/prompt.
  • Custom prompts now should be implemented with @inquirer/core. Custom prompts built on [email protected] will keep working, but should plan a migration.
  • inquirer.ui.BottomBar is deleted.

My expectation is that this release should be a drop-in replacement for people using inquirer.prompt() and built-ins 🤞🏻. Please open an issue on Github if you run into issues migrating; it's a large rewrite and there might be a few sharp edges to cut! Hope you'll like this new release.

v9.3.7

Compare Source

v9.3.6

Compare Source

v9.3.5

Compare Source

  • Fix issue with plugins relying on internal inquirer packages file structure.

v9.3.4

Compare Source

v9.3.3

Compare Source

v9.3.2

Compare Source

v9.3.1

Compare Source

  • Fix risk of prototype injection.

v9.3.0

Compare Source

  • Replace chalk with picolors.
  • Drop many dependencies in favour of native functions when possible.

No impact expected, but it's a large changes in dependencies. Let us know if you run into any issues upgrading!

v9.2.23

Compare Source

v9.2.22

Compare Source

  • editor prompt: Fixed compatibility issue between default and waitUserInput options. #​1405

v9.2.21

Compare Source

v9.2.20

Compare Source

v9.2.19

Compare Source

v9.2.18

Compare Source

v9.2.17

Compare Source

v9.2.16

Compare Source

v9.2.15

Compare Source

v9.2.14

Compare Source

typedoc2md/typedoc-plugin-markdown (typedoc-plugin-markdown)

v4.3.3

Compare Source

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).

v4.3.2

Compare Source

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).

v4.3.1

Compare Source

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

v4.3.0

Compare Source

This release introduces support for TypeDoc 0.27 and some additional UX features and improvements in addition to some bug fixes.

TypeDoc 0.27 Support

Please see for full TypeDoc changelog for additional information.

There are two TypeDoc breaking changes that might effect users of this plugin:

  • TypeDoc has converted to ESM and therefore all public and local CommonJs plugins will need to be refactored to ESM.
  • TypeScript <5.0 is no longer supported.
UX Changes
  • Parameters list views have been updated to separate params with markdown headings to improve readability when parameters have detailed explanations examples, or sub-properties. If parameters are straightforward and few in number switching to parametersFormat=table might be preferable.
  • Improved structure of curried and overloaded signatures.
  • Page headings have been simplified to simply display project title as per default theme.
Features
  • Exposed formatting with prettier options "formatWithPrettier" and "prettierConfigFile" that enables additional formatting of Markdown if Prettier is installed on a project.
  • 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).
Patch Changes
  • Improved structure of curried and overloaded signatures (#​714) (#​718)
  • The "hideGroupHeadings" option respects group order (#​716)
  • Handle Optional types correctly (#​719).

v4.2.10

Compare Source

Patch Changes
  • Enhanced the formatting and structure of accessor output (#​711)

v4.2.9

Compare Source

Patch Changes
  • Expose @return block tags on declarations (#​694)
  • Add parentheses on function names in type declaration table views (#​696)

v4.2.8

Compare Source

Patch Changes
  • Fix missing slash when public path is prefixed with http (#​688)

v4.2.7

Compare Source

Patch Changes
  • Correctly handle top level custom groups in navigation (#​685)
  • Fix missing index descriptions for some signatures (#​670)
  • Add '?' for optional type declarations in tables

v4.2.6

Compare Source

Patch Changes
  • Expose missing entrypoints to navigation (#​663)
  • Fix missing function descriptions in indexes

v4.2.5

Compare Source

Patch Changes
  • Expose comment for arrow functions in type declarations (#​670)
  • Tables generated with the "htmlTable" key will include <thead> and <tbody> elements to fix MDX compatibility issues (#​671)
  • Expose missing descriptions with accessor keyword (#​664)

v4.2.4

Compare Source

Patch Changes
  • Expose comments to reflections with the accessor keyword (#​664)
  • Omit constructors from category groups (#​661)
  • Update categories structure in navigation to match interface model

v4.2.3

Compare Source

Patch Changes
  • Fix missing return comments for const functions (#​656)

v4.2.2

Compare Source

Patch Changes
  • Correctly resolve comment summary for const functions (#​656)
  • Fix anchor links containing generics (#​655)

v4.2.1

Compare Source

Patch Changes
  • Fix missing index descriptions for signatures (#​618)

v4.2.0

Compare Source

Minor Changes
  • Exposed "modulesFileName" option (#​647)
  • Write .nojekyll file if TypeDocs "githubPages" option is true (#​650)
  • Exposed "blockTagsPreserveOrder" option to configure ordering of comment block tags (#​627).
  • Exposed "useHTMLEncodedBrackets" option for alternative angle bracket escaping(#​564).

v4.1.2

Compare Source

Patch Changes
  • Support TypeDoc 0.26 relative links implementation (#​645).

v4.1.1

Compare Source

Patch Changes
  • Normalize window paths when "publicPath" is set (#​639)

v4.1.0

Compare Source

New Features
  • Theme support for TypeDoc’s 0.26 localization model.
  • Theme support for TypeDoc’s 0.26 documents implementation.
  • Exposed a new key "htmlTable" to formatting options enabling block elements to render as intended inside table cells. Affects all existing formatting options. Fixes (#​618).
  • Added new formatting options --classPropertiesFormat, --interfacePropertiesFormat and --propertyMembersFormat to further control formatting of different declaration structures.
  • Supports the ability to control what table columns are rendered with the --tableColumnSettings option.
Patch Changes
  • Handle duplicate files when tagged in same group (#​625)
  • Fix issues with tables and block tags (#​618)

v4.0.3

Compare Source

Patch Changes
  • Remove superfluous quotes from prop names (#​619)
  • Fix display of index descriptions in tables (#​618)

v4.0.2

Compare Source

Patch Changes
  • Fix symbol url anchors when "flattenOutputFiles" is "true" (#​616)
  • Normalize line breaks and tags within table columns (#​615)
  • Remove superfluous spaces and symbol on external links (#​614)
  • Escape all angle brackets with "santizeComments" (#​612)
  • Correctly handle quoted symbol names (#​611)
  • Correctly handle excludeScopesInPaths in windows (#​610)

v4.0.1

Compare Source

Patch Changes
  • Remove superfluous newlines from table column descriptions (#​591).
  • Handle multiple @example tags on same reflection.
  • Fix missing extended by definitions.
  • Escape Symbols with signatures correctly.

v4.0.0

Compare Source

v4 is a major release that includes a number of bug fixes, new features and UI improvements.

Architectural Changes
  • Handlebars as a dependency has been removed.
  • Updated customization model with the ability to set hooks, events and custom theming.
  • Exposed navigation structure.
New Features
  • Updated output file structure.
  • Improved and cleaner UI.
  • A set of updated and additional new options with comprehensive documentation.
  • Exported option types and JSON schema.
Structural Changes
  • Each module member is now output to its own file by default. See option --outputFileStrategy. To achieve the same output as v3 (whereby only Classes, Enums and Interfaces have their own file), set the option membersWithOwnFile option.
  • Parameters are output as a list by default. To achieve the same output as v3 (where parameters are output as a table), use option --parametersFormat=table.
Breaking Changes
  • Because the file structure has changed you may need to update any cross references to files in your documentation.
  • Setting theme to "markdown" is no longer required and should be removed.
  • The option indexTitle has been removed. Please use the "title.indexPage" key with option --textContentMappings.
  • The option allReflectionsHaveOwnDocument has been removed (this behaviour is now the default). Please see option outputFileStrategy](/docs/options#outputfilestrategy).
  • The option entryDocument has been renamed to entryFileName to better reflect its purpose.
  • The option namedAnchors has been renamed to useHTMLAnchors to better reflect its purpose.
  • The option hideInPageTOC has been removed. In-page TOC are no longer included by default. You can include in-page TOCs by using typedoc-plugin-remark and the remark-toc plugin.
  • The option objectLiteralTypeDeclarationStyle has been removed. Please use option --typeDeclarationFormat=list.
Bug Fixes
  • Duplication in callback/callable/function properties. (#​581).
  • @​experimental / @​internal annotations. (#​556)
  • Fix events output and strike-through deprecated items. (#​534)
  • Class static functions are no longer marked. (#​533)
  • @​example block not rendered with Headline (#​501)
  • Support for categories (#​499)
  • Correctly resolve package readme urls from member pages. (#​483)
  • Add the ability to add a separate frontmatter for readme file. (#​469)
  • Items in tables are not linkable. (#​463)
  • Custom i18n texts. (#​458)
  • How to improve the formatting for types?. (#​456)
  • How to change title format. (#​450)
  • Export Docusaurus plugin options type. (#​440)
  • How to export interface as a table. (#​403)
  • Broken Link caused by Typescript class being defined in an index file. (#​402)
  • Markdown plugin inserts unnecessary escape characters. (#​398)
  • Potential bug with optional function argument. (#​396)
  • Respect monorepo readmeFile configuration (#​383)
  • Embed all objects under a Module/Namespace onto single page. (#​338)
  • Extra spaces when merging lines in a table. (#​331)
  • Does not support namespace (or module) and interface with same name. (#​300)
  • Integration with VitePress? (#​287)
  • Typedoc comments with text wrapped in < and > breaks Docusaurus Markdown parser. (#​276)
  • Navigation support? (#​262)
  • Sidebar Category Support? (#​213)
  • Properties as Table like function properties. (#​109)
  • Provide a link/excerpt/screenshot to a demo/example rendered output (#​102)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Change in project dependencies. label Aug 2, 2024
@renovate renovate bot assigned rainx Aug 2, 2024
@renovate renovate bot requested a review from rainx August 2, 2024 08:23
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch 3 times, most recently from 6397eb4 to b02c02c Compare August 5, 2024 22:23
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch 3 times, most recently from 5e406d0 to a8f5c2a Compare August 15, 2024 23:02
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch 3 times, most recently from 5522481 to 4937be3 Compare August 26, 2024 03:10
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch 5 times, most recently from 63eda80 to f62b551 Compare September 8, 2024 13:14
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch 4 times, most recently from c830ffa to 4d9f737 Compare September 17, 2024 23:32
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch 2 times, most recently from 345a119 to a356eea Compare September 27, 2024 22:35
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from a356eea to 35554b3 Compare September 30, 2024 02:50
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 35554b3 to 97ec9c2 Compare September 30, 2024 02:51
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 97ec9c2 to c019ca5 Compare September 30, 2024 03:17
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from c019ca5 to ab9103f Compare September 30, 2024 03:18
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from ab9103f to 31cc17c Compare October 1, 2024 22:40
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 31cc17c to e565abc Compare October 1, 2024 22:40
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from e565abc to 0959bf7 Compare October 6, 2024 22:26
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 372dd5c to 342b02a Compare November 28, 2024 07:43
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 342b02a to 99a13f9 Compare December 2, 2024 01:22
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 99a13f9 to 522cee2 Compare December 2, 2024 01:23
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 522cee2 to 85d5208 Compare December 2, 2024 04:44
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 85d5208 to 28e4252 Compare December 2, 2024 04:45
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 28e4252 to d46434b Compare December 7, 2024 22:01
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from d46434b to fcebefd Compare December 7, 2024 22:02
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from fcebefd to ed32c11 Compare December 8, 2024 20:01
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from ed32c11 to 87f76e7 Compare December 8, 2024 20:01
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 87f76e7 to 6d9af0f Compare December 9, 2024 03:54
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 6d9af0f to 0e388e7 Compare December 9, 2024 03:55
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 0e388e7 to 417d30b Compare December 10, 2024 03:48
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 417d30b to 605d655 Compare December 10, 2024 03:48
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 605d655 to af3231a Compare December 16, 2024 03:11
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from af3231a to 3c38729 Compare December 16, 2024 03:11
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 3c38729 to 5f0ab85 Compare December 16, 2024 06:54
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 5f0ab85 to 68bc175 Compare December 16, 2024 06:54
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 68bc175 to 290fbd9 Compare December 18, 2024 10:47
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 290fbd9 to 7a57b82 Compare December 18, 2024 10:48
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 7a57b82 to 008200b Compare December 19, 2024 00:16
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 008200b to 5a42c3d Compare December 19, 2024 00:17
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 5a42c3d to 450dbc0 Compare December 20, 2024 20:25
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 450dbc0 to d644c28 Compare December 20, 2024 20:26
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from d644c28 to 1855ce6 Compare December 23, 2024 02:25
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 1855ce6 to d089de8 Compare December 23, 2024 02:25
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from d089de8 to 2de48b9 Compare December 23, 2024 03:22
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 2de48b9 to aea60f1 Compare December 23, 2024 03:22
@renovate renovate bot force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from aea60f1 to 09a7521 Compare December 23, 2024 08:31
@rainx rainx force-pushed the renovate/major-auto-merge-dev-dependencies-updates branch from 09a7521 to a0e438c Compare December 23, 2024 08:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Change in project dependencies.
Development

Successfully merging this pull request may close these issues.

1 participant