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 automerge #294

Merged
merged 2 commits into from
Sep 29, 2024
Merged

chore(deps): update automerge #294

merged 2 commits into from
Sep 29, 2024

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 Type Update
@types/jest (source) 29.5.12 -> 29.5.13 age adoption passing confidence devDependencies patch
@types/node (source) 20.14.9 -> 20.16.10 age adoption passing confidence devDependencies minor
@yao-pkg/pkg 5.12.0 -> 5.15.0 age adoption passing confidence devDependencies minor
commitizen 4.3.0 -> 4.3.1 age adoption passing confidence devDependencies patch
glob 10.4.2 -> 10.4.5 age adoption passing confidence dependencies patch
luxon 3.4.4 -> 3.5.0 age adoption passing confidence dependencies minor
node (source) 20.15.0 -> 20.17.0 age adoption passing confidence minor
np 10.0.6 -> 10.0.7 age adoption passing confidence devDependencies patch
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence devDependencies patch
ts-jest (source) 29.1.5 -> 29.2.5 age adoption passing confidence devDependencies minor
typescript (source) 5.5.2 -> 5.6.2 age adoption passing confidence devDependencies minor
yarn (source) 4.3.1 -> 4.5.0 age adoption passing confidence packageManager minor
ynab 2.2.0 -> 2.6.0 age adoption passing confidence dependencies minor

Release Notes

yao-pkg/pkg (@​yao-pkg/pkg)

v5.15.0

Compare Source

Features

v5.14.2

Compare Source

Bug Fixes
  • child_process commands throw when pkg app try to call itself (#​90) (e88d159)

v5.14.1

Compare Source

Bug Fixes

v5.14.0

Compare Source

Features

v5.13.0

Compare Source

Features
Bug Fixes
  • wrong placeholder replaced in windows binary (#​86) (d9b28c3)

v5.12.1

Compare Source

Bug Fixes
  • remove is-core-module dependency (#​77) (2f27414)
  • run prebuild-install only if actually used by the package (#​83) (2a046e4)
Chores
  • drop package-lock file uploaded by error (ba407ef)
commitizen/cz-cli (commitizen)

v4.3.1

Compare Source

4.3.1 (2024-09-27)
Bug Fixes
isaacs/node-glob (glob)

v10.4.5

Compare Source

v10.4.4

Compare Source

v10.4.3

Compare Source

moment/luxon (luxon)

v3.5.0

Compare Source

  • Various performance improvements
  • throwOnInvalid causes the constructor to throw if the year is invalid
nodejs/node (node)

v20.17.0

Compare Source

v20.16.0

Compare Source

v20.15.1

Compare Source

sindresorhus/np (np)

v10.0.7

Compare Source

  • Allow publishConfig.registry to be npm default registry when using Yarn berry (#​750) 6c5eee3
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.

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

yarnpkg/berry (yarn)

v4.5.0

Compare Source

v4.4.1

Compare Source

v4.4.0

Compare Source

ynab/ynab-sdk-js (ynab)

v2.6.0

Compare Source

What's Changed

Full Changelog: ynab/ynab-sdk-js@v2.5.0...v2.6.0

v2.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: ynab/ynab-sdk-js@v2.4.0...v2.5.0

v2.4.0

Compare Source

What's Changed

Full Changelog: ynab/ynab-sdk-js@v2.3.0...v2.4.0

v2.3.0

Compare Source

What's Changed

Full Changelog: ynab/ynab-sdk-js@v2.2.0...v2.3.0


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 renovate label Jun 27, 2024
@renovate renovate bot changed the title fix(deps): update dependency ynab to v2.3.0 chore(deps): update automerge Jul 1, 2024
@renovate renovate bot force-pushed the renovate/automerge branch 7 times, most recently from b4368ee to 8e94d2f Compare July 11, 2024 19:11
@renovate renovate bot force-pushed the renovate/automerge branch 4 times, most recently from 00616c1 to f5fa792 Compare July 18, 2024 16:54
@renovate renovate bot force-pushed the renovate/automerge branch 5 times, most recently from f81419d to 47e1341 Compare July 28, 2024 10:33
@renovate renovate bot force-pushed the renovate/automerge branch 5 times, most recently from 73ff8fc to a6823e6 Compare August 6, 2024 08:08
@renovate renovate bot force-pushed the renovate/automerge branch 5 times, most recently from f221b69 to 64c8f61 Compare August 14, 2024 08:52
@renovate renovate bot force-pushed the renovate/automerge branch 2 times, most recently from 12d5a25 to 3e79e6f Compare August 18, 2024 09:58
@renovate renovate bot force-pushed the renovate/automerge branch 4 times, most recently from 5b03f11 to f7d34b0 Compare August 24, 2024 13:39
@renovate renovate bot force-pushed the renovate/automerge branch 5 times, most recently from 4a508be to 811a35a Compare September 4, 2024 00:51
@renovate renovate bot force-pushed the renovate/automerge branch 4 times, most recently from 87c933e to 40b5859 Compare September 10, 2024 16:47
@renovate renovate bot force-pushed the renovate/automerge branch 5 times, most recently from 4dd48d0 to 0c87ed4 Compare September 17, 2024 17:18
@renovate renovate bot force-pushed the renovate/automerge branch 6 times, most recently from c093b17 to 85b78e7 Compare September 27, 2024 04:50
Copy link
Contributor Author

renovate bot commented Sep 29, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@nielsmaerten nielsmaerten merged commit 1e15ea5 into main Sep 29, 2024
8 checks passed
@nielsmaerten nielsmaerten deleted the renovate/automerge branch September 29, 2024 15:29
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