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

fix(deps): update all patches #75

Merged
merged 2 commits into from
Jan 4, 2024
Merged

fix(deps): update all patches #75

merged 2 commits into from
Jan 4, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 11, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
effect 2.0.0-next.58 -> 2.0.0 age adoption passing confidence
eslint-plugin-import 2.29.0 -> 2.29.1 age adoption passing confidence
prettier (source) 3.1.0 -> 3.1.1 age adoption passing confidence
typedoc (source) 0.25.4 -> 0.25.6 age adoption passing confidence
vite-tsconfig-paths 4.2.1 -> 4.2.3 age adoption passing confidence

Release Notes

effect-ts/effect (effect)

v2.0.0

Compare Source

Minor Changes
Patch Changes

v2.0.0-next.62

Compare Source

Minor Changes
Patch Changes

v2.0.0-next.61

Compare Source

Patch Changes

v2.0.0-next.60

Compare Source

Minor Changes
Patch Changes

v2.0.0-next.59

Compare Source

Minor Changes
Patch Changes
import-js/eslint-plugin-import (eslint-plugin-import)

v2.29.1

Compare Source

Fixed
prettier/prettier (prettier)

v3.1.1

Compare Source

diff

Fix config file search (#​15363 by @​fisker)

Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.

├─ .prettierrc
└─ test.js         (A directory)
  └─ .prettierrc
// Prettier 3.1.0
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/test.js/.prettierrc

// Prettier 3.1.1
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/.prettierrc
Skip explicitly passed symbolic links with --no-error-on-unmatched-pattern (#​15533 by @​sanmai-NL)

Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.

In Prettier 3.1.1, you can use --no-error-on-unmatched-pattern to simply skip symbolic links.

Consistently use tabs in ternaries when useTabs is true (#​15662 by @​auvred)
// Input
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;

// Prettier 3.1.0
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;

// Prettier 3.1.1
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
		? ddddddddddddddd
		: eeeeeeeeeeeeeee
			? fffffffffffffff
			: gggggggggggggggg;
Improve config file search (#​15663 by @​fisker)

The Prettier config file search performance has been improved by more effective cache strategy.

Fix unstable and ugly formatting for comments in destructuring patterns (#​15708 by @​sosukesuzuki)
// Input
const {
  foo,
  // bar
  // baz
}: Foo = expr;

// Prettier 3.1.0
const {
  foo1,
} // bar
// baz
: Foo = expr;

// Prettier 3.1.0 second output
const {
  foo1, // bar
} // baz
: Foo = expr;

// Prettier 3.1.1
const {
  foo1,
  // bar
  // baz
}: Foo = expr;
Support "Import Attributes" (#​15718 by @​fisker)

TypeScript 5.3 supports the latest updates to the import attributes proposal.

import something from "./something.json" with { type: "json" };
Fix false claim in docs that cursorOffset is incompatible with rangeStart/rangeEnd (#​15750 by @​ExplodingCabbage)

The cursorOffset option has in fact been compatible with rangeStart/rangeEnd for over 5 years, thanks to work by @​ds300. However, Prettier's documentation (including the CLI --help text) continued to claim otherwise, falsely. The documentation is now fixed.

Keep curly braces and from keyword in empty import statements (#​15756 by @​fisker)
// Input
import { } from 'foo';
import { /* comment */ } from 'bar';

// Prettier 3.1.0
import {} from "foo";
import /* comment */ "bar";

// Prettier 3.1.1
import {} from "foo";
import {} from /* comment */ "bar";
Keep empty import attributes and assertions (#​15757 by @​fisker)
// Input
import foo from "foo" with {};
import bar from "bar" assert {};

// Prettier 3.1.0
import foo from "foo";
import bar from "bar";

// Prettier 3.1.1
import foo from "foo" with {};
import bar from "bar" assert {};
TypeStrong/TypeDoc (typedoc)

v0.25.6

Compare Source

Bug Fixes
  • Fixed infinite loop caused by a fix for some complicated union/intersection types, #​2468.
  • Improved infinite loop detection in type converter to reduce false positives.

v0.25.5

Compare Source

aleclarson/vite-tsconfig-paths (vite-tsconfig-paths)

v4.2.3

Compare Source

v4.2.2

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

Copy link

changeset-bot bot commented Dec 11, 2023

🦋 Changeset detected

Latest commit: dfa6781

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 3 packages
Name Type
@sidetrack/client-prisma Patch
@sidetrack/pg-migrate Patch
sidetrack Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@renovate renovate bot force-pushed the renovate/all-patch branch 4 times, most recently from 2579bfa to c0e8a92 Compare December 14, 2023 21:36
@renovate renovate bot force-pushed the renovate/all-patch branch 5 times, most recently from e1a1315 to 28b4df2 Compare December 21, 2023 21:08
@renovate renovate bot force-pushed the renovate/all-patch branch 4 times, most recently from 783266f to a2edbbf Compare January 1, 2024 17:40
@renovate renovate bot force-pushed the renovate/all-patch branch from a2edbbf to be77a99 Compare January 2, 2024 18:36
@renovate renovate bot force-pushed the renovate/all-patch branch from be77a99 to be73e5b Compare January 3, 2024 15:33
Copy link

codecov bot commented Jan 4, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (239928c) 90.63% compared to head (dfa6781) 86.67%.

Additional details and impacted files
@@            Coverage Diff             @@
##             main      #75      +/-   ##
==========================================
- Coverage   90.63%   86.67%   -3.97%     
==========================================
  Files           9        9              
  Lines         833      833              
  Branches       94       93       -1     
==========================================
- Hits          755      722      -33     
- Misses         76      109      +33     
  Partials        2        2              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@aniravi24 aniravi24 merged commit 35e4fd4 into main Jan 4, 2024
4 of 5 checks passed
@aniravi24 aniravi24 deleted the renovate/all-patch branch January 4, 2024 19:46
@github-actions github-actions bot mentioned this pull request Jan 4, 2024
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.

1 participant