Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

chore(Renovate): ⬆️ Update configs (major) #110

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 31, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
lint-staged 13.2.2 -> 15.2.0 age adoption passing confidence
prettier (source) 2.8.8 -> 3.1.1 age adoption passing confidence
syncpack 9.8.6 -> 12.0.1 age adoption passing confidence
tsup (source) 6.7.0 -> 8.0.1 age adoption passing confidence
vitest (source) 0.31.1 -> 1.1.0 age adoption passing confidence

Release Notes

okonet/lint-staged (lint-staged)

v15.2.0

Compare Source

Minor Changes
  • #​1371 f3378be Thanks @​iiroj! - Using the --no-stash flag no longer discards all unstaged changes to partially staged files, which resulted in inadvertent data loss. This fix is available with a new flag --no-hide-partially-staged that is automatically enabled when --no-stash is used.
Patch Changes
  • #​1362 17bc480 Thanks @​antonk52! - update lilconfig@3.0.0

  • #​1368 7c55ca9 Thanks @​iiroj! - Update most dependencies

  • #​1368 777d4e9 Thanks @​iiroj! - To improve performance, only use lilconfig when searching for config files outside the git repo. In the regular case, lint-staged finds the config files from the Git index and loads them directly.

  • #​1373 85eb0dd Thanks @​iiroj! - When determining git directory, use fs.realpath() only for symlinks. It looks like fs.realpath() changes some Windows mapped network filepaths unexpectedly, causing issues.

v15.1.0

Compare Source

Minor Changes
Patch Changes

v15.0.2

Compare Source

Patch Changes
  • #​1339 8e82364 Thanks @​iiroj! - Update dependencies, including listr2@​7.0.2 to fix an upstream issue affecting lint-staged.

v15.0.1

Compare Source

Patch Changes
  • #​1217 d2e6f8b Thanks @​louneskmt! - Previously it was possible for a function task to mutate the list of staged files passed to the function, and accidentally affect the generation of other tasks. This is now fixed by passing a copy of the original file list instead.

v15.0.0

Compare Source

Major Changes
  • #​1322 66b93aa Thanks @​iiroj! - Require at least Node.js 18.12.0

    This release drops support for Node.js 16, which is EOL after 2023-09-11.
    Please upgrade your Node.js to the latest version.

    Additionally, all dependencies have been updated to their latest versions.

v14.0.1

Compare Source

Bug Fixes
  • fix reading config from stdin, introduced in v14.0.0 (#​1317) (fc3bfea)

v14.0.0

Compare Source

Features
BREAKING CHANGES
  • Please upgrade your Node.js version to at least 16.14.0.

v13.3.0

Compare Source

Bug Fixes
  • dependencies: update most dependencies (7443870)
  • detect duplicate redundant braces in pattern (d895aa8)
Features
  • dependencies: update listr2@​6.6.0 (09844ca)

v13.2.3

Compare Source

Bug Fixes
  • the --diff option implies --no-stash (66a716d)
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 {};

v3.1.0

Compare Source

diff

🔗 Release Notes

v3.0.3

Compare Source

diff

Add preferUnplugged: true to package.json (#​15169 by @​fisker and @​so1ve)

Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.

Support shared config that forbids require() (#​15233 by @​fisker)

If an external shared config package is used, and the package exports don't have require or default export.

In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json
Allow argument of require() to break (#​15256 by @​fisker)
// Input
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);

// Prettier 3.0.2
const plugin = require(global.STANDALONE
  ? path.join(__dirname, "../standalone.js")
  : path.join(__dirname, ".."));

// Prettier 3.0.3
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);
Do not print trailing commas in arrow function type parameter lists in ts code blocks (#​15286 by @​sosukesuzuki)
<!-- Input -->
```ts
const foo = <T>() => {}
```

<!-- Prettier 3.0.2 -->
```ts
const foo = <T,>() => {}
```

<!-- Prettier 3.0.3 -->
```ts
const foo = <T>() => {}
```
Support TypeScript 5.2 using / await using declaration (#​15321 by @​sosukesuzuki)

Support for the upcoming Explicit Resource Management feature in ECMAScript. using / await using declaration

{
   using foo = new Foo();
   await using bar = new Bar();
}

v3.0.2

Compare Source

diff

Break after = of assignment if RHS is poorly breakable AwaitExpression or YieldExpression (#​15204 by @​seiyab)
// Input
const { section, rubric, authors, tags } = await utils.upsertCommonData(mainData);

// Prettier 3.0.1
const { section, rubric, authors, tags } = await utils.upsertCommonData(
  mainData,
);

// Prettier 3.0.2
const { section, rubric, authors, tags } =
  await utils.upsertCommonData(mainData);
Do not add trailing comma for grouped scss comments (#​15217 by @​auvred)
/* Input */
$foo: (
	'property': (),
	// comment 1
	// comment 2
)

/* Prettier 3.0.1 */
$foo: (
  "property": (),
  // comment 1
  // comment 2,
);

/* Prettier 3.0.2 */
$foo: (
  "property": (),
  // comment 1
  // comment 2
);
Print declare and export keywords for nested namespace (#​15249 by @​sosukesuzuki)
// Input
declare namespace abc1.def {}
export namespace abc2.def {}

// Prettier 3.0.1
namespace abc1.def {}
namespace abc2.def {}

// Prettier 3.0.2
declare namespace abc1.def {}
export namespace abc2.def {}

v3.0.1

Compare Source

diff

Fix cursor positioning for a special case (#​14812 by @​fisker)
// <|> is the cursor position

/* Input */
// All messages are represented in JSON.
// So, the prettier.py controls a subprocess which spawns "node {this_file}".
import {<|>  } from "fs"

/* Prettier 3.0.0 */
// All messages are represented in JSON.
// So, the prettier.py <|>controls a subprocess which spawns "node {this_file}".
import {} from "fs"

/* Prettier 3.0.1 */
// All messages are represented in JSON.
// So, the prettier.py controls a subprocess which spawns "node {this_file}".
import {<|>} from "fs"
Fix plugins/estree.d.ts to make it a module (#​15018 by @​kingyue737)

Add export {} in plugins/estree.d.ts to fix the "File is not a module" error

Add parenthesis around leading multiline comment in return statement (#​15037 by @​auvred)
// Input
function fn() {
  return (
    /**
     * @&#8203;type {...}
     */ expresssion
  )
}

// Prettier 3.0.0
function fn() {
  return /**
   * @&#8203;type {...}
   */ expresssion;
}

// Prettier 3.0.1
function fn() {
  return (
    /**
     * @&#8203;type {...}
     */ expresssion
  );
}
Add support for Vue "Generic Components" (#​15066 by @​auvred)

https://blog.vuejs.org/posts/vue-3-3#generic-components

<!-- Input -->
<script setup lang="ts" generic="T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean"></script>

<!-- Prettier 3.0.0 -->
<script
  setup
  lang="ts"
  generic="T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean"
></script>

<!-- Prettier 3.0.1 -->
<script
  setup
  lang="ts"
  generic="
    T extends Type1 & Type2 & (Type3 | Type4),
    U extends string | number | boolean
  "
></script>
Fix comments print in IfStatement (#​15076 by @​fisker)
function a(b) {
  if (b) return 1; // comment
  else return 2;
}

/* Prettier 3.0.0 */
Error: Comment "comment" was not printed. Please report this error!

/* Prettier 3.0.1 */
function a(b) {
  if (b) return 1; // comment
  else return 2;
}
Add missing type definition for printer.preprocess (#​15123 by @​so1ve)
export interface Printer<T = any> {
  // ...
+ preprocess?:
+   | ((ast: T, options: ParserOptions<T>) => T | Promise<T>)
+   | undefined;
}
Add missing getVisitorKeys method type definition for Printer (#​15125 by @​auvred)
const printer: Printer = {
  print: () => [],
  getVisitorKeys(node, nonTraversableKeys) {
    return ["body"];
  },
};
Add typing to support readonly array properties of AST Node (#​15127 by @​auvred)
// Input
interface TestNode {
  readonlyArray: readonly string[];
}

declare const path: AstPath<TestNode>;

path.map(() => "", "readonlyArray");

// Prettier 3.0.0
interface TestNode {
  readonlyArray: readonly string[];
}

declare const path: AstPath<TestNode>;

path.map(() => "", "readonlyArray");
//                  ^ Argument of type '"readonlyArray"' is not assignable to parameter of type '"regularArray"'. ts(2345)

// Prettier 3.0.1
interface TestNode {
  readonlyArray: readonly string[];
}

declare const path: AstPath<TestNode>;

path.map(() => "", "readonlyArray");
Add space before unary minus followed by a function call (#​15129 by @​pamelalozano)
// Input
div {
  margin: - func();
}

// Prettier 3.0.0
div {
  margin: -func();
}

// Prettier 3.0.1
div {
  margin: - func();
}

v3.0.0

Compare Source

diff

🔗 Release Notes

JamieMason/syncpack (syncpack)

v12.0.1

Compare Source

26 December 2023

v12.0.0

Compare Source

24 December 2023

  • fix(cli): make status codes easier to read #172
  • feat(update): prompt formatted repository url #178 #177
  • chore(release): 12.0.0 eabbfb8
  • chore(core): take v12 out of alpha 50d2d6a
  • docs(readme): update note on v12 alpha 7fa1c2c
12.0.0-alpha.1

23 December 2023

  • docs(site): switch to astro starlight 6c85916
  • chore(test): migrate to vitest db0434b
  • chore(github): add release-it 1cab0f4
12.0.0-alpha.0

5 November 2023

  • feat(core): broaden version specifier support #161 #162 #157
  • refactor(env): read CWD from env 0b604c8
  • fix(npm): update dependencies f016552
  • test(files): reorganise test files cf805f7

v11.2.1

Compare Source

14 August 2023

  • feat(config): add a json schema #146 #147
  • feat(depTypes): rename 'workspace' to 'local' #154
  • feat(depTypes): handle '!peer' and '**' 06f2e88
  • fix(npm): update dependencies c8a5cab
  • refactor(fs): remove fs-extra 3b2fac2
10.9.3

31 July 2023

  • feat(node): support >=16 #148
  • feat(versions): support npm: alias protocol #151
  • chore(npm): update dependencies 6dd5aaf
  • refactor(versions): parse specifiers with npm-package-arg ce58e3a
  • chore(npm): update @​effect/* packages 3db1bc4
10.7.3

3 July 2023

  • fix(workspace): revert issue 95 #143
  • chore(release): 10.7.3 4474a73
10.7.2

2 July 2023

  • feat(cli): add command to update dependencies 1c1be99
  • fix(npm): update dependencies bf432a7
  • docs(site): create folder for semver groups cfde196
10.6.1

18 June 2023

10.5.1

4 June 2023

  • feat(groups): manage intersecting range versions 96d6c6d
  • feat(cli): add prompt to fix unsupported mismatches 296fad5
  • chore(release): 10.5.1 87be648
10.2.0

3 June 2023

  • feat(cli): change output of lint command #134
  • chore(release): 10.2.0 3f50c6c
10.1.0

29 May 2023

  • feat(cli): add lint command 2e3df1c
  • chore(release): 10.1.0 047afa1
  • chore(github): rename main branch 6bb8b04

v10.9.3

Compare Source

31 July 2023

  • feat(node): support >=16 #148
  • feat(versions): support npm: alias protocol #151
  • chore(npm): update dependencies 6dd5aaf
  • refactor(versions): parse specifiers with npm-package-arg ce58e3a
  • chore(npm): update @​effect/* packages 3db1bc4

v10.7.3

Compare Source

3 July 2023

  • fix(workspace): revert issue 95 #143
  • chore(release): 10.7.3 4474a73

v10.7.2

Compare Source

2 July 2023

  • feat(cli): add command to update dependencies 1c1be99
  • fix(npm): update dependencies bf432a7
  • docs(site): create folder for semver groups cfde196

v10.6.1

Compare Source

Features

v10.5.1

Compare Source

Bug Fixes
  • cli: add missing syncpack-lint binary (ae265cb)
Features
  • cli: add prompt to fix unsupported mismatches (296fad5)
  • format: sort bin property alphabetically (f7c87a8)
  • groups: manage intersecting range versions (96d6c6d)

v10.2.0

Compare Source

Features

v10.1.0

Compare Source

Features

v10.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • core: - fix-mismatches will now exit with a status code of 1 if there are mismatches among unsupported versions which syncpack cannot auto-fix.
  • Although they are still not auto-fixable, unsupported versions which were previously ignored are now acknowledged, which may introduce mismatches which previously would have been considered valid.
  • This release was also a huge rewrite of Syncpack's internals and, while there is a large amount of tests, some scenarios may have been missed.
  • If you run into any problems, please create an issue.

9.8.6 (2023-04-23)

Bug Fixes
  • config: prevent default source overriding rcfile (1d6a4ba), closes #​123
  • npm: update minor dependencies (91f4967)

9.8.4 (2023-02-21)

Features
  • semver: support resolving with lowest version (a17e423), closes #​110

9.7.4 (2023-02-19)

Bug Fixes
  • indent: use value from config file (aa31244)
  • npm: update dependencies (558d177)
Features
  • engines: increase node from 10 to 14 (603f058)
  • groups: handle long and multi-line labels (ecc58ff)
  • semver: recognise ^6, >=5 etc as valid (be637f0), closes #​122
  • versionGroups: add optional snapTo property (fd0edb6), closes #​87
Performance Improvements
  • imports: skip barrel files where possible (1ee2776)

9.3.2 (2023-02-17)

Features
  • groups: add optional label to semver/version groups (ff466af), closes #​118
  • groups: output groups in order they're defined (88950f1), closes #​120

9.1.2 (2023-02-16)

Features
Reverts
  • fix-mismatches: don't remove nested empty objects (393d004), closes #​117

9.0.2 (2023-02-15)

Bug Fixes
  • options: fix --source regression in 9.0.0 (379409f), closes #​116
  • semver: fix false positive for workspace mismatches (4f696c5)
egoist/tsup (tsup)

v8.0.1

Compare Source

Bug Fixes
  • dts: ensure chunks conform to bundle format (#​1034) (f83baf8)
  • experimental-dts: make --experimental-dts to be compatible with --clean (#​1041) (8c26e63)
  • experimental-dts: only include exported declarations (#​1039) (731f43f)

v8.0.0

Compare Source

Bug Fixes
Features
BREAKING CHANGES
  • Drop node < 18

v7.3.0

Compare Source

Bug Fixes
Features

v7.2.0

Compare Source

Bug Fixes
  • allow to kill onSuccess process using SIGKILL signal, closes #​936 (612cabf)
Features

v7.1.0

Compare Source

Features
  • Ensure matching declaration file exists for each output bundle format (#​934) (fb4c2b6)

v7.0.0

Compare Source

Bug Fixes
Features
  • require nodejs 16 or above (45832d9)
  • support svelte-preprocess (#​906) (3606e45)
  • Update esbuild version to latest for keeping unknown directives during bundle (#​925) (e2e70e8)
BREAKING CHANGES
  • require nodejs 16 or above
  • update esbuild to 0.18
vitest-dev/vitest (vitest)

v1.1.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.0.4

Compare Source

The previous release was built incorrectly and didn't include the performance fix. This release fixes that.

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.0.3

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.0.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.0.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.0.0

[Compare Source](https://togithub.com/vitest-dev/vitest/compare


Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,on sunday,before 5am every weekday" in timezone Asia/Taipei, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested review from a team and xeho91 May 31, 2023 16:51
@renovate renovate bot added ⚙️ configuration Configuration changes 🧩 dependencies Related to the dependencies labels May 31, 2023
@renovate
Copy link
Contributor Author

renovate bot commented May 31, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Scope: all 17 workspace projects
.                                        |  WARN  There are cyclic workspace dependencies: /tmp/renovate/repos/github/terminal-nerds/snippets/packages/array, /tmp/renovate/repos/github/terminal-nerds/snippets/packages/number, /tmp/renovate/repos/github/terminal-nerds/snippets/packages/environment
.                                        |  WARN  Your pnpm-lock.yaml was generated by a newer version of pnpm. It is a compatible version but it might get downgraded to version 6.0
 ERROR  /@ampproject/remapping@2.2.1 is an invalid relative dependency path

pnpm: /@ampproject/remapping@2.2.1 is an invalid relative dependency path
    at Object.parse2 [as parse] (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:114178:15)
    at nameVerFromPkgSnapshot (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:114287:28)
    at addPreferredVersionsFromLockfile (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:196837:89)
    at getPreferredVersionsFromLockfileAndManifests (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:196831:7)
    at _installInContext (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:197757:142)
    at async installInContext (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:198099:16)
    at async _install (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:197622:25)
    at async mutateModules (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:197344:23)
    at async recursive (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:198939:50)
    at async installDeps (/opt/containerbase/tools/pnpm/8.5.1/node_modules/pnpm/dist/pnpm.cjs:199235:11)

@changeset-bot
Copy link

changeset-bot bot commented May 31, 2023

⚠️ No Changeset found

Latest commit: 1c63641

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

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

@ghost
Copy link

ghost commented May 31, 2023

👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

@renovate renovate bot force-pushed the renovate/major-configs branch 6 times, most recently from 66e9afa to 4380522 Compare June 7, 2023 20:29
@renovate renovate bot changed the title chore(Renovate): ⬆️ Update dependency syncpack to v10 chore(Renovate): ⬆️ Update configs (major) Jun 19, 2023
@renovate renovate bot force-pushed the renovate/major-configs branch 2 times, most recently from a4478cd to 648d340 Compare June 28, 2023 10:09
@renovate renovate bot force-pushed the renovate/major-configs branch 3 times, most recently from 404357d to 8ecd249 Compare July 8, 2023 15:27
@renovate renovate bot force-pushed the renovate/major-configs branch 3 times, most recently from d81dfd5 to bc9bd8e Compare August 6, 2023 07:28
@renovate renovate bot force-pushed the renovate/major-configs branch 3 times, most recently from e2f3ba3 to 7233bc4 Compare August 18, 2023 16:19
@renovate renovate bot force-pushed the renovate/major-configs branch 2 times, most recently from be7e41f to 3171a8d Compare October 22, 2023 10:24
@renovate renovate bot force-pushed the renovate/major-configs branch 2 times, most recently from e90319f to c4e4ecd Compare November 16, 2023 03:05
@renovate renovate bot force-pushed the renovate/major-configs branch 2 times, most recently from 658c187 to a788217 Compare November 24, 2023 06:57
@renovate renovate bot force-pushed the renovate/major-configs branch 7 times, most recently from 20ec357 to c81fd73 Compare December 13, 2023 10:49
@renovate renovate bot force-pushed the renovate/major-configs branch 2 times, most recently from 25b4de7 to ebd9226 Compare December 27, 2023 17:23
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
⚙️ configuration Configuration changes 🧩 dependencies Related to the dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants