Skip to content

Update all non-major dependencies #59

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

Merged
merged 1 commit into from
Feb 27, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 5, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) 18.11.18 -> 18.14.2 age adoption passing confidence
prettier (source) 2.8.1 -> 2.8.4 age adoption passing confidence
terser (source) 5.16.1 -> 5.16.5 age adoption passing confidence
typescript (source) 4.9.4 -> 4.9.5 age adoption passing confidence
vite (source) 4.0.4 -> 4.1.4 age adoption passing confidence
vue-tsc 1.0.21 -> 1.2.0 age adoption passing confidence

Release Notes

prettier/prettier

v2.8.4

Compare Source

diff

Fix leading comments in mapped types with readonly (#​13427 by @​thorn0, @​sosukesuzuki)
// Input
type Type = {
  // comment
  readonly [key in Foo];
};

// Prettier 2.8.3
type Type = {
  readonly // comment
  [key in Foo];
};

// Prettier 2.8.4
type Type = {
  // comment
  readonly [key in Foo];
};
Group params in opening block statements (#​14067 by @​jamescdavis)

This is a follow-up to #​13930 to establish wrapping consistency between opening block statements and else blocks by
grouping params in opening blocks. This causes params to break to a new line together and not be split across lines
unless the length of params exceeds the print width. This also updates the else block wrapping to behave exactly the
same as opening blocks.

{{! Input }}
{{#block param param param param param param param param param param as |blockParam|}}
  Hello
{{else block param param param param param param param param param param as |blockParam|}}
  There
{{/block}}

{{! Prettier 2.8.3 }}
{{#block
  param
  param
  param
  param
  param
  param
  param
  param
  param
  param
  as |blockParam|
}}
  Hello
{{else block param
param
param
param
param
param
param
param
param
param}}
  There
{{/block}}

{{! Prettier 2.8.4 }}
{{#block
  param param param param param param param param param param
  as |blockParam|
}}
  Hello
{{else block
  param param param param param param param param param param
  as |blockParam|
}}
  There
{{/block}}
Ignore files in .sl/ (#​14206 by @​bolinfest)

In Sapling SCM, .sl/ is the folder where it stores its state, analogous to .git/ in Git. It should be ignored in Prettier like the other SCM folders.

Recognize @satisfies in Closure-style type casts (#​14262 by @​fisker)
// Input
const a = /** @&#8203;satisfies {Record<string, string>} */ ({hello: 1337});
const b = /** @&#8203;type {Record<string, string>} */ ({hello: 1337});

// Prettier 2.8.3
const a = /** @&#8203;satisfies {Record<string, string>} */ { hello: 1337 };
const b = /** @&#8203;type {Record<string, string>} */ ({ hello: 1337 });

// Prettier 2.8.4
const a = /** @&#8203;satisfies {Record<string, string>} */ ({hello: 1337});
const b = /** @&#8203;type {Record<string, string>} */ ({hello: 1337});
Fix parens in inferred function return types with extends (#​14279 by @​fisker)
// Input
type Foo<T> = T extends ((a) => a is infer R extends string) ? R : never;

// Prettier 2.8.3 (First format)
type Foo<T> = T extends (a) => a is infer R extends string ? R : never;

// Prettier 2.8.3 (Second format)
SyntaxError: '?' expected. 

// Prettier 2.8.4
type Foo<T> = T extends ((a) => a is infer R extends string) ? R : never;

v2.8.3

Compare Source

diff

Allow self-closing tags on custom elements (#​14170 by @​fisker)

See Angular v15.1.0 release note for details.

// Input
<app-test/>

// Prettier 2.8.2
SyntaxError: Only void and foreign elements can be self closed "app-test" (1:1)
> 1 | <app-test/>
    | ^^^^^^^^^
  2 |

// Prettier 2.8.3
<app-test />

v2.8.2

Compare Source

diff

Don't lowercase link references (#​13155 by @​DerekNonGeneric & @​fisker)
<!-- Input -->
We now don't strictly follow the release notes format suggested by [Keep a Changelog].

[Keep a Changelog]: https://example.com/

<!-- Prettier 2.8.1 -->
We now don't strictly follow the release notes format suggested by [Keep a Changelog].

[keep a changelog]: https://example.com/
<!--
^^^^^^^^^^^^^^^^^^ lowercased
-->

<!-- Prettier 2.8.2 -->
<Same as input>
Preserve self-closing tags (#​13691 by @​dcyriller)
{{! Input }}
<div />
<div></div>
<custom-component />
<custom-component></custom-component>
<i />
<i></i>
<Component />
<Component></Component>

{{! Prettier 2.8.1 }}
<div></div>
<div></div>
<custom-component></custom-component>
<custom-component></custom-component>
<i></i>
<i></i>
<Component />
<Component />

{{! Prettier 2.8.2 }}
<div />
<div></div>
<custom-component />
<custom-component></custom-component>
<i />
<i></i>
<Component />
<Component />
Allow custom "else if"-like blocks with block params (#​13930 by @​jamescdavis)

#​13507 added support for custom block keywords used with else, but failed to allow block params. This updates printer-glimmer to allow block params with custom "else if"-like blocks.

{{! Input }}
{{#when isAtWork as |work|}}
  Ship that
  {{work}}!
{{else when isReading as |book|}}
  You can finish
  {{book}}
  eventually...
{{else}}
  Go to bed!
{{/when}}

{{! Prettier 2.8.1 }}
{{#when isAtWork as |work|}}
  Ship that
  {{work}}!
{{else when isReading}}
  You can finish
  {{book}}
  eventually...
{{else}}
  Go to bed!
{{/when}}

{{! Prettier 2.8.2 }}
{{#when isAtWork as |work|}}
  Ship that
  {{work}}!
{{else when isReading as |book|}}
  You can finish
  {{book}}
  eventually...
{{else}}
  Go to bed!
{{/when}}
Preserve empty lines between nested SCSS maps (#​13931 by @​jneander)
/* Input */
$map: (
  'one': (
     'key': 'value',
  ),

  'two': (
     'key': 'value',
  ),
)

/* Prettier 2.8.1 */
$map: (
  'one': (
     'key': 'value',
  ),
  'two': (
     'key': 'value',
  ),
)

/* Prettier 2.8.2 */
$map: (
  'one': (
     'key': 'value',
  ),

  'two': (
     'key': 'value',
  ),
)
Fix missing parentheses when an expression statement starts with let[ (#​14000, #​14044 by @​fisker, @​thorn0)
// Input
(let[0] = 2);

// Prettier 2.8.1
let[0] = 2;

// Prettier 2.8.1 (second format)
SyntaxError: Unexpected token (1:5)
> 1 | let[0] = 2;
    |     ^
  2 |

// Prettier 2.8.2
(let)[0] = 2;
Fix semicolon duplicated at the end of LESS file (#​14007 by @​mvorisek)
// Input
@&#8203;variable: {
  field: something;
};

// Prettier 2.8.1
@&#8203;variable: {
  field: something;
}; ;

// Prettier 2.8.2
@&#8203;variable: {
  field: something;
};
Fix no space after unary minus when followed by opening parenthesis in LESS (#​14008 by @​mvorisek)
// Input
.unary_minus_single {
  margin: -(@&#8203;a);
}

.unary_minus_multi {
  margin: 0 -(@&#8203;a);
}

.binary_minus {
  margin: 0 - (@&#8203;a);
}

// Prettier 2.8.1
.unary_minus_single {
  margin: - (@&#8203;a);
}

.unary_minus_multi {
  margin: 0 - (@&#8203;a);
}

.binary_minus {
  margin: 0 - (@&#8203;a);
}

// Prettier 2.8.2
.unary_minus_single {
  margin: -(@&#8203;a);
}

.unary_minus_multi {
  margin: 0 -(@&#8203;a);
}

.binary_minus {
  margin: 0 - (@&#8203;a);
}
Do not change case of property name if inside a variable declaration in LESS (#​14034 by @​mvorisek)
// Input
@&#8203;var: {
  preserveCase: 0;
};

// Prettier 2.8.1
@&#8203;var: {
  preservecase: 0;
};

// Prettier 2.8.2
@&#8203;var: {
  preserveCase: 0;
};
Fix formatting for auto-accessors with comments (#​14038 by @​fisker)
// Input
class A {
  @&#8203;dec()
  // comment
  accessor b;
}

// Prettier 2.8.1
class A {
  @&#8203;dec()
  accessor // comment
  b;
}

// Prettier 2.8.1 (second format)
class A {
  @&#8203;dec()
  accessor; // comment
  b;
}

// Prettier 2.8.2
class A {
  @&#8203;dec()
  // comment
  accessor b;
}
Add parentheses for TSTypeQuery to improve readability (#​14042 by @​onishi-kohei)
// Input
a as (typeof node.children)[number]
a as (typeof node.children)[]
a as ((typeof node.children)[number])[]

// Prettier 2.8.1
a as typeof node.children[number];
a as typeof node.children[];
a as typeof node.children[number][];

// Prettier 2.8.2
a as (typeof node.children)[number];
a as (typeof node.children)[];
a as (typeof node.children)[number][];
Fix displacing of comments in default switch case (#​14047 by @​thorn0)

It was a regression in Prettier 2.6.0.

// Input
switch (state) {
  default:
    result = state; // no change
    break;
}

// Prettier 2.8.1
switch (state) {
  default: // no change
    result = state;
    break;
}

// Prettier 2.8.2
switch (state) {
  default:
    result = state; // no change
    break;
}
Support type annotations on auto accessors via babel-ts (#​14049 by @​sosukesuzuki)

The bug that @babel/parser cannot parse auto accessors with type annotations has been fixed. So we now support it via babel-ts parser.

class Foo {
  accessor prop: number;
}
Fix formatting of empty type parameters (#​14073 by @​fisker)
// Input
const foo: bar</* comment */> = () => baz;

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

// Prettier 2.8.2
const foo: bar</* comment */> = () => baz;
Add parentheses to head of ExpressionStatement instead of the whole statement (#​14077 by @​fisker)
// Input
({}).toString.call(foo) === "[object Array]"
  ? foo.forEach(iterateArray)
  : iterateObject(foo);

// Prettier 2.8.1
({}.toString.call(foo) === "[object Array]"
  ? foo.forEach(iterateArray)
  : iterateObject(foo));

// Prettier 2.8.2
({}).toString.call(foo.forEach) === "[object Array]"
  ? foo.forEach(iterateArray)
  : iterateObject(foo);
Fix comments after directive (#​14081 by @​fisker)
// Input
"use strict" /* comment */;

// Prettier 2.8.1 (with other js parsers except `babel`)
Error: Comment "comment" was not printed. Please report this error!

// Prettier 2.8.2
<Same as input>
Fix formatting for comments inside JSX attribute (#​14082 with by @​fisker)
// Input
function MyFunctionComponent() {
  <button label=/*old*/"new">button</button>
}

// Prettier 2.8.1
Error: Comment "old" was not printed. Please report this error!

// Prettier 2.8.2
function MyFunctionComponent() {
  <button label=/*old*/ "new">button</button>;
}
Quote numeric keys for json-stringify parser (#​14083 by @​fisker)
// Input
{0: 'value'}

// Prettier 2.8.1
{
  0: "value"
}

// Prettier 2.8.2
{
  "0": "value"
}
Fix removing commas from function arguments in maps (#​14089 by @​sosukesuzuki)
/* Input */
$foo: map-fn(
  (
    "#{prop}": inner-fn($first, $second),
  )
);

/* Prettier 2.8.1 */
$foo: map-fn(("#{prop}": inner-fn($first $second)));

/* Prettier 2.8.2 */
$foo: map-fn(
  (
    "#{prop}": inner-fn($first, $second),
  )
);
Do not insert space in LESS property access (#​14103 by @​fisker)
// Input
a {
  color: @&#8203;colors[@&#8203;white];
}

// Prettier 2.8.1
a {
  color: @&#8203;colors[ @&#8203;white];
}

// Prettier 2.8.2
<Same as input>
terser/terser

v5.16.5

Compare Source

  • Correctly handle AST transform functions that mutate children arrays
  • Don't mutate the options object passed to Terser (#​1342)
  • Do not treat BigInt like a number

v5.16.4

Compare Source

  • Keep (defaultArg = undefined) => ..., because default args don't count for function length
  • Prevent inlining variables into ?. optional chains
  • Avoid removing unused arguments while transforming
  • Optimize iterating AST node lists
  • Make sure catch and finally aren't children of try in the AST
  • Use modern unicode property escapes (\p{...}) to parse identifiers when available

v5.16.3

Compare Source

  • Ensure function definitions, don't assume the values of variables defined after them.

v5.16.2

Compare Source

  • Fix sourcemaps with non-ascii characters (#​1318)
  • Support string module name and export * as (#​1336)
  • Do not move let out of for initializers, as it can change scoping
  • Fix a corner case that would generate the invalid syntax if (something) let x ("let" in braceless if body)
  • Knowledge of more native object properties (#​1330)
  • Got rid of Travis (#​1323)
  • Added semi-secret asObject sourcemap option to typescript defs (#​1321)
Microsoft/TypeScript

v4.9.5: TypeScript 4.9.5

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

Changes:

vitejs/vite

v4.1.4

Compare Source

v4.1.3

Compare Source

v4.1.2

Compare Source

v4.1.1

Compare Source

v4.1.0

Compare Source

Vite 4.1 updates to the latest versions of Rollup and esbuild. Check out the new Rollup docs, that are now powered by VitePress making the navigation between Vite and Rollup docs easier for users.

Vite docs got a theme update migrating to the latest version of VitePress.

As part of Vite 4, the Vue and React plugins have been extracted out of the monorepo. Although their release cycle will no longer follow Vite releases moving forward, Vite 4.1 is released in parallel with new versions of @​vitejs/plugin-react and @​vitejs/plugin-react-swc. @​vitejs/plugin-react 3.1.0 reworks the way HMR is handled fixing many edge cases and @​vitejs/plugin-react-swc 3.1.0 adds support for SWC plugins.

There is also a new major for @​vitejs/plugin-legacy, see changelog for v4.0.0. This version contains breaking changes:

Features
Bug Fixes
Previous Changelogs
4.1.0-beta.2 (2023-02-01)

See 4.1.0-beta.2 changelog

4.1.0-beta.1 (2023-01-26)

See 4.1.0-beta.1 changelog

4.1.0-beta.0 (2023-01-09)

See 4.1.0-beta.0 changelog

johnsoncodehk/volar

v1.2.0

Compare Source

  • feat: compatible with upstream monaco integration (https://github.com/volarjs/volar.js/pull/10)
  • feat: support array extends for tsconfig (#​2344)
  • feat: make cursor inside quotes when insert missing required props edit (#​2414)
  • feat: support mixin child nodes for pug (#​2447)
  • fix: ignore native tags for missing required props hint
  • fix: ignore methods for missing required props hint (#​2443)
  • fix: SFC outline not show child nodes (#​2446)

Full-time Support by


Just click, and start coding.


Our Sponsors ⭐✨




Adding You

v1.1.7

Compare Source

  • fix: document symbols request crash with arrow function declaration (#​2438)
  • fix: document symbols child node range incorrect
  • fix: SFC document symbols tree incorrect

v1.1.6

Compare Source

  • fix: template comments were trimmed with formatting in production mode (#​2435)
  • fix: inaccurate outline view of script content
  • fix: takeover mode causes IDE to get stuck in large .ts files due to a long list in the outline view

v1.1.5

Compare Source

  • feat: prettify type for css module $style
  • fix: only generate component with function type when use generic attribute
  • fix: document links feature broken (#​2426)
  • fix: missing props inlay hints not working for namespace components
  • fix: component tags type-check not working
  • fix: pug template reporting TS2339 when strictTemplates enabled (#​2431)
  • fix: pug tag completion not working at empty lines

v1.1.4

Compare Source

  • feat: support for script src path intellisense (#​2331)
  • feat: support name casing setting for component auto import (#​2362)
  • feat: add volar.vueserver.fullCompletionList setting (#​2422)
  • perf: filter completion items in language server for better performance (#​2306)
  • fix: strictTemplates did not check for unknown components (#​2291)
  • fix: duplicate document links in the template
  • fix: completion not working for namespace components (#​2382)
  • fix: html comments and js template strings format indent incorrect (#​2420)
  • fix: do not correspond v-model to checked prop for checkbox and radio input tags (#​2415)

v1.1.3

Compare Source

  • feat: visualize event argument in inline handlers
  • feat: add description for model modifiers (#​2405)
  • fix: remove deprecated preview commands (#​2402)
  • fix: missing required props hint not working with v-model (#​2407)
  • fix: cannot collapse code in .js / .ts files with takeover mode (#​2408)
  • fix: symbols view stopped working for .js / .ts files with takeover mode (#​2404)
  • fix: cannot rename html tags (#​2410)
  • fix: cannot display rename fail message
  • fix: format on type cannot working for code blocks that enabled volar.format.initialIndent (#​2401)
  • fix: vue-tsc crashes in watch mode when file changed (#​2403)
  • fix: prop type definition inaccurate for v-model directive on native input (#​2399)

v1.1.2

Compare Source

  • fix: format adding unnecessary newline to CRLF document (#​2385)
  • fix: incidentally inserting indents when inserting new lines when if editor.formatOnType (#​2394)
  • fix: template formatting last line indent incorrect (#​2393)
  • fix: template start tag got deleting if first line is comment (#​2390)
  • fix: takeover mode status incorrect in display (#​2389)
  • fix: diff window's document was unexpectedly diagnosed (#​2391)
  • fix: emmet completions appear inside open tag (#​1329)
  • fix: opencc is depended on by language server (#​2388)

v1.1.0

Compare Source

  • feat: support initialIndent for pug and sass
  • feat: add description for built-in directives, attributes, component, and elements
  • feat: support localization for event modifiers and props modifiers
  • feat: missing required props inlay hints (needs enabled volar.inlayHints.missingRequiredProps)
  • feat: show (takeover) instead of (vue) in status bar for takeover mode (#​2365)
  • feat: more reliable formatting edits combine
  • fix(doctor): update source code link (#​2307)
  • fix(typescript-plugin): tsserver multiple initializations lead to infinite loop (https://github.com/microsoft/vscode/issues/171591)
  • fix: syntactic features not working for untitled vue document
  • fix: spaces removed from ternary operator inside {{ }} (#​2305)
  • fix: source.addMissingImports accidentally made imports for properties used the template (#​2304)
  • fix: code action auto import should not append to the same line with the script tag (#​916)
  • fix: multi-line interpolation last line indent incorrect
  • fix: declaring empty emits like defineEmits<{}>() would fail the type-checking process (#​2370)
  • fix: ignore name prop / attr for slot (#​2308)

Breaking changes

  • Removed pug convert tool
  • Removed script setup convert tool
  • Unsupported tracing for vue-tsc (#​2378)
  • Extract Vite, Nuxt and component preview features to Vue and Nuxt Preview
    • feat: support vite-plugin-vue-component-preview for nuxt 3.2
    • feat: add vue-preview.root setting for Nuxt component preview
    • fix: prevent random creation of multiple preview terminals
    • fix: support nuxt preview without vite serving allow list (#​2287)

v1.0.24

Compare Source

  • feat: add vueCompilerOptions.macros setting for vue-macros plugins
  • feat(framework): expose FileCapabilities.full, FileRangeCapabilities.full, MirrorBehaviorCapabilities.full
  • feat: renamed normalizeComponentAutoImportName setting to normalizeComponentImportName
  • feat: support normalize component name for import statement completion (#​2286)
  • feat: normalize Index to folder name when normalizeComponentImportName enabled (https://github.com/johnsoncodehk/volar/issues/2071#issuecomment-1373701277)
  • feat: support update imports on multiple files move
  • fix(typescript-plugin): fixed Projects must list all files or use an 'include' pattern error (#​2271)
  • fix: language client sending parseSfc requests when not a vue document changed
  • fix: typescript actions not working for codeActionsOnSave setting (#​2188)
  • fix: fixed c is not iterable error edge case (#​2282)
  • fix: cannot select workspace tsdk on status bar with takeover mode
  • fix(plugin-api): cannot catch errors for getEmbeddedFileNames(), resolveEmbeddedFile()
  • fix(component-meta): cannot detection of slots in script-less SFC (#​2113)
  • perf(component-meta): resolve schema on demand (#​2288)

v1.0.22

Compare Source

  • fix: document folding ranges not working in .ts

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

@vercel
Copy link

vercel bot commented Jan 5, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated
sortablejs-vue3 ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Feb 26, 2023 at 8:19PM (UTC)

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cb63115 to ce7fbcc Compare January 7, 2023 13:15
@renovate renovate bot changed the title Update dependency vue-tsc to v1.0.22 Update all non-major dependencies Jan 7, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ce7fbcc to 618c155 Compare January 8, 2023 15:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 618c155 to a1e09b8 Compare January 14, 2023 04:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a1e09b8 to 6e018d6 Compare January 30, 2023 18:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6e018d6 to ae169be Compare January 30, 2023 22:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ae169be to 33d3437 Compare February 2, 2023 14:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 33d3437 to 1864f9f Compare February 3, 2023 13:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1864f9f to c0162cc Compare February 5, 2023 01:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c0162cc to da27482 Compare February 7, 2023 11:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from da27482 to 9183d76 Compare February 8, 2023 07:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9183d76 to 05109a3 Compare February 16, 2023 00:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 05109a3 to f204520 Compare February 16, 2023 18:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f204520 to 73744f0 Compare February 16, 2023 19:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 73744f0 to eb28960 Compare February 17, 2023 11:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eb28960 to 9c1105d Compare February 17, 2023 14:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9c1105d to ee2d2a1 Compare February 18, 2023 01:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ee2d2a1 to 3f2d3e2 Compare February 20, 2023 02:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3f2d3e2 to 35cf71c Compare February 20, 2023 11:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 35cf71c to a8051da Compare February 20, 2023 19:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a8051da to b187b0d Compare February 22, 2023 00:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b187b0d to 719d979 Compare February 22, 2023 04:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 719d979 to 4100d56 Compare February 23, 2023 11:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4100d56 to 081de2a Compare February 23, 2023 16:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 081de2a to 53027c9 Compare February 25, 2023 03:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 53027c9 to 9298dcb Compare February 26, 2023 20:19
@MaxLeiter MaxLeiter merged commit 2fbcb53 into main Feb 27, 2023
@MaxLeiter MaxLeiter deleted the renovate/all-minor-patch branch February 27, 2023 00:35
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