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: update dev dependencies (non-major) #123

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 27, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@octokit/rest 21.0.0 -> 21.0.2 age adoption passing confidence
@tsconfig/recommended (source) 1.0.6 -> 1.0.7 age adoption passing confidence
@turf/turf 7.0.0 -> 7.1.0 age adoption passing confidence
@types/jest (source) 29.5.12 -> 29.5.13 age adoption passing confidence
@types/lodash (source) 4.17.5 -> 4.17.7 age adoption passing confidence
@types/node (source) 20.14.9 -> 20.16.5 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
semantic-release 24.0.0 -> 24.1.1 age adoption passing confidence
simple-git (source) 3.25.0 -> 3.26.0 age adoption passing confidence
ts-jest (source) 29.1.5 -> 29.2.5 age adoption passing confidence
typedoc (source) 0.26.2 -> 0.26.7 age adoption passing confidence
typescript (source) 5.5.2 -> 5.6.2 age adoption passing confidence

Release Notes

octokit/rest.js (@​octokit/rest)

v21.0.2

Compare Source

Bug Fixes

v21.0.1

Compare Source

Bug Fixes
tsconfig/bases (@​tsconfig/recommended)

v1.0.7

Compare Source

Turfjs/turf (@​turf/turf)

v7.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: Turfjs/turf@v7.0.0...v7.1.0

prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

semantic-release/semantic-release (semantic-release)

v24.1.1

Compare Source

v24.1.0

Compare Source

steveukx/git-js (simple-git)

v3.26.0

Compare Source

Minor Changes
  • 28d545b: Upgrade build tools and typescript
kulshekhar/ts-jest (ts-jest)

v29.2.5

Compare Source

v29.2.4

Compare Source

v29.2.3

Compare Source

v29.2.2

Compare Source

v29.2.1

Compare Source

v29.2.0

Compare Source

Bug Fixes
  • fix: don't show warning message with Node16/NodeNext (99c4f49), closes #​4266
Features
  • feat(cli): allow migrating cjs presets to transform config (22fb027)
  • feat(presets): add util functions to create ESM presets (06f78ed)
  • feat(presets): add util functions to create CJS presets (f9cc3c0)
Code refactoring
  • refactor: replace lodash deps with native js implementation (40f1708)
  • refactor: use TsJestTransformerOptions type everywhere possibly (7d001be)
  • refactor(cli): use new preset util functions to initialize test config (c2b56ca)
  • refactor(presets): use create preset util functions for cjs presets (922d6d0)
  • test: switch react-app to use Vite (827c8ad)
TypeStrong/TypeDoc (typedoc)

v0.26.7

Compare Source

Features
  • Support TypeScript 5.6, #​2699.
  • Added customJs option to include a script tag in generated HTML output, #​2650.
  • Added markdownLinkExternal option to treat http[s]:// links in markdown documents and comments as external to be opened in a new tab, #​2679.
  • Added navigation.excludeReferences option to prevent re-exports from appearing in the left hand navigation, #​2685.
  • Added support for the @abstract tag, #​2692.
Bug Fixes
  • Fixed an issue where links in packages mode would be resolved incorrectly, #​2680.
  • @link tags to symbols which are not included in the documentation will produce invalid link warnings again, #​2681.
  • Fixed handling of @param tags on comments attached to function callback parameters, #​2683.
  • The alphabetical and alphabetical-ignoring-documents sort options now use localeCompare to sort, #​2684.
  • Fixed incorrect placement of parameter default values in some signatures with a this parameter, #​2698.
Thanks!

v0.26.6

Compare Source

Features
  • Use of the @extends block tag no longer produces warnings, #​2659.
    This tag should only be used in JavaScript projects to specify the type parameters used when extending a parent class. It will not be rendered.
  • Added new navigation.compactFolders option to prevent TypeDoc from compacting folders, similar to the VSCode option. #​2667.
Bug Fixes
  • The suppressCommentWarningsInDeclarationFiles option now correctly ignores warnings in .d.cts and .d.mts files, #​2647.
  • Restored re-exports in the page navigation menu, #​2671.
  • JSON serialized projects will no longer contain reflection IDs for other projects created in the same run. Gerrit0/typedoc-plugin-zod#6.
  • In packages mode the reflection ID counter will no longer be reset when converting projects. This previously could result in links to files not working as expected.

v0.26.5

Compare Source

Features
  • TypeDoc now exposes array option defaults under OptionDefaults, #​2640.
Bug Fixes
  • Constructor parameters which share a name with a property on a parent class will no longer inherit the comment on the parent class, #​2636.
  • Packages mode will now attempt to use the comment declared in the comment class for inherited members, #​2622.
  • TypeDoc no longer crashes when @document includes an empty file, #​2638.
  • API: Event listeners added later with the same priority will be called later, #​2643.
Thanks!

v0.26.4

Compare Source

Bug Fixes
  • The page navigation sidebar no longer incorrectly includes re-exports if the same member is exported with multiple names #​2625.
  • Page navigation now ensures the current page is visible when the page is first loaded, #​2626.
  • If a relative linked image is referenced multiple times, TypeDoc will no longer sometimes produce invalid links to the image #​2627.
  • @link tags will now be validated in referenced markdown documents, #​2629.
  • @link tags are now resolved in project documents, #​2629.
  • HTML/JSON output generated by TypeDoc now contains a trailing newline, #​2632.
  • TypeDoc now correctly handles markdown documents with CRLF line endings, #​2628.
  • @hidden is now properly applied when placed in a function implementation comment, #​2634.
  • Comments on re-exports are now rendered.
Thanks!

v0.26.3

Compare Source

Features
  • "On This Page" navigation now includes the page groups in collapsible sections, #​2616.
Bug Fixes
  • mailto: links are no longer incorrectly recognized as relative paths, #​2613.
  • Added @since to the default list of recognized tags, #​2614.
  • Relative paths to directories will no longer cause the directory to be copied into the media directory, #​2617.
microsoft/TypeScript (typescript)

v5.6.2

Compare Source

v5.5.4: TypeScript 5.5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.3: TypeScript 5.5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


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 force-pushed the renovate/dev-dependencies branch from 0044747 to 80b73b0 Compare June 28, 2024 04:00
@renovate renovate bot changed the title chore: update dependency @types/lodash to v4.17.6 chore: update dev dependencies (non-major) Jun 28, 2024
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 4 times, most recently from da26cbe to 4ba33ed Compare July 6, 2024 08:36
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 7 times, most recently from 0bc7b24 to e25dd11 Compare July 13, 2024 14:20
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 6 times, most recently from 9e72466 to d37a005 Compare July 23, 2024 02:06
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from b3b38a3 to 45323df Compare July 28, 2024 11:21
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from 0777c0a to 88fd509 Compare August 2, 2024 10:27
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 88fd509 to ff6eeec Compare August 9, 2024 19:12
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 6 times, most recently from 4088a3c to 88cd858 Compare August 19, 2024 05:00
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 2 times, most recently from 9772bf3 to 3f16fb5 Compare August 28, 2024 04:10
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 3 times, most recently from 890f767 to 9fc71fc Compare September 4, 2024 21:42
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 3 times, most recently from 6e8072d to 4145346 Compare September 11, 2024 04:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants