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

Update all patch versions (1.4) (patch) #1029

Merged
merged 2 commits into from
Mar 2, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
c2cciutils ==1.4.7 -> ==1.4.10 age adoption passing confidence patch
k3d-io/k3d v5.4.6 -> v5.4.7 age adoption passing confidence patch
prettier (source) 2.8.3 -> 2.8.4 age adoption passing confidence dependencies patch
python 3.11.1 -> 3.11.2 age adoption passing confidence patch
types-markdown (changelog) 3.4.2.2 -> 3.4.2.5 age adoption passing confidence dev-dependencies patch
types-pyyaml (changelog) 6.0.12.3 -> 6.0.12.8 age adoption passing confidence dev-dependencies patch
types-requests (changelog) 2.28.11.8 -> 2.28.11.15 age adoption passing confidence dev-dependencies patch
types-toml (changelog) 0.10.8.1 -> 0.10.8.5 age adoption passing confidence dev-dependencies patch
ubuntu_22_04/curl 7.81.0-1ubuntu1.7 -> 7.81.0-1ubuntu1.8 age adoption passing confidence patch
ubuntu_22_04/cyrus-sasl2 2.1.27+dfsg2-3ubuntu1.1 -> 2.1.27+dfsg2-3ubuntu1.2 age adoption passing confidence patch
ubuntu_22_04/gnutls28 3.7.3-4ubuntu1.1 -> 3.7.3-4ubuntu1.2 age adoption passing confidence patch
ubuntu_22_04/linux 5.15.0-58.64 -> 5.15.0-67.74 age adoption passing confidence patch
ubuntu_22_04/openssl 3.0.2-0ubuntu1.7 -> 3.0.2-0ubuntu1.8 age adoption passing confidence patch
ubuntu_22_04/pam 1.4.0-11ubuntu2.1 -> 1.4.0-11ubuntu2.3 age adoption passing confidence patch
ubuntu_22_04/python-pip 22.0.2+dfsg-1ubuntu0.1 -> 22.0.2+dfsg-1ubuntu0.2 age adoption passing confidence patch
ubuntu_22_04/tar 1.34+dfsg-1build3 -> 1.34+dfsg-1ubuntu0.1.22.04.1 age adoption passing confidence patch

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

camptocamp/c2cciutils

v1.4.10

Compare Source

[1.4.10] - 2023-02-10

Fixed

Generated by Automation

v1.4.9

Compare Source

[1.4.9] - 2023-02-07

Fixed
Updated

Generated by Automation

v1.4.8

Compare Source

[1.4.8] - 2023-02-07

Changed
Updated

Generated by Automation

k3d-io/k3d

v5.4.7

Compare Source

Changed
  • updated direct and transitive dependencies
Fixed
  • fix: avoid appending existing volumes (#​1154)
  • fix: indentation for CoreDNS doc (#​1166)
  • fix: logs error shadowing exec error (#​1172)
  • docs: Add missing backtick to k3s-arg example command (#​1192)
  • Support reading in registries-config via env (#​1199)
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;
python/cpython

v3.11.2

Compare Source


Configuration

📅 Schedule: Branch creation - "after 5pm on the first day of the month" in timezone Europe/Zurich, 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 added the dependencies Update the dependencies label Mar 1, 2023
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Success approve. Enjoy 🏳️‍🌈🎉.

@renovate renovate bot force-pushed the renovate/1.4-patch-all-patch-versions branch from 2c6393a to 92fe719 Compare March 2, 2023 00:34
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Success approve. Enjoy 🏳️‍🌈🎉.

@sbrunner sbrunner merged commit 5a7f2a0 into 1.4 Mar 2, 2023
@sbrunner sbrunner deleted the renovate/1.4-patch-all-patch-versions branch March 2, 2023 16:59
@renovate
Copy link
Contributor Author

renovate bot commented Mar 2, 2023

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update the dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant