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(renovate): Update patch (patch) #127

Merged
merged 3 commits into from
May 24, 2024
Merged

fix(renovate): Update patch (patch) #127

merged 3 commits into from
May 24, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 13, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/jest (source) ^29.5.11 -> ^29.5.12 age adoption passing confidence
eslint-plugin-import ^2.29.0 -> ^2.29.1 age adoption passing confidence
eslint-plugin-jest ^27.6.0 -> ^27.6.3 age adoption passing confidence
prettier (source) ^3.1.0 -> ^3.1.1 age adoption passing confidence
ts-jest (source) ^29.1.1 -> ^29.1.2 age adoption passing confidence

Release Notes

import-js/eslint-plugin-import (eslint-plugin-import)

v2.29.1

Compare Source

Fixed
jest-community/eslint-plugin-jest (eslint-plugin-jest)

v27.6.3

Compare Source

Bug Fixes

v27.6.2

Compare Source

Reverts

v27.6.1

Compare Source

Bug Fixes
  • include plugin meta information with snapshot processor for ESLint v9 (#​1484) (067e246)
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 {};
kulshekhar/ts-jest (ts-jest)

v29.1.2

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "before 4am" in timezone Europe/Stockholm.

🚦 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.

@renovate renovate bot force-pushed the renovate/patch-patch branch from c3fd685 to c60737d Compare December 17, 2023 21:30
@renovate renovate bot changed the title fix(renovate): Update dependency prettier to ^3.1.1 fix(renovate): Update patch (patch) Dec 17, 2023
@renovate renovate bot force-pushed the renovate/patch-patch branch from c60737d to 62a2cec Compare January 4, 2024 22:38
@renovate renovate bot force-pushed the renovate/patch-patch branch 2 times, most recently from 23a8ed1 to c84d9de Compare January 15, 2024 19:46
@renovate renovate bot force-pushed the renovate/patch-patch branch from c84d9de to 91927e8 Compare January 25, 2024 11:03
@renovate renovate bot force-pushed the renovate/patch-patch branch from 91927e8 to 33218f4 Compare February 4, 2024 19:49
Copy link
Contributor Author

renovate bot commented Feb 8, 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.

@simskij simskij merged commit 8f66899 into main May 24, 2024
3 checks passed
@simskij simskij deleted the renovate/patch-patch branch May 24, 2024 09:57
carlcsaposs-canonical referenced this pull request in canonical/mysql-router-operator Jun 25, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[canonical/charming-actions](https://togithub.com/canonical/charming-actions)
| action | minor | `2.2.2` -> `2.6.0` |

---

### Release Notes

<details>
<summary>canonical/charming-actions
(canonical/charming-actions)</summary>

###
[`v2.6.0`](https://togithub.com/canonical/charming-actions/releases/tag/2.6.0)

[Compare
Source](https://togithub.com/canonical/charming-actions/compare/2.4.0...2.6.0)

##### What's Changed

- bump deps and address vuln issues by
[@&#8203;simskij](https://togithub.com/simskij) in
[https://github.com/canonical/charming-actions/pull/110](https://togithub.com/canonical/charming-actions/pull/110)
- chore(deps): pin dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/111](https://togithub.com/canonical/charming-actions/pull/111)
- fix(renovate): Update patch (patch) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/112](https://togithub.com/canonical/charming-actions/pull/112)
- fix(renovate): Update actions/checkout action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/115](https://togithub.com/canonical/charming-actions/pull/115)
- fail channel action if branch name is invalid by
[@&#8203;simskij](https://togithub.com/simskij) in
[https://github.com/canonical/charming-actions/pull/105](https://togithub.com/canonical/charming-actions/pull/105)
- fix(renovate): Update github-actions to v4 (major) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/117](https://togithub.com/canonical/charming-actions/pull/117)
- fix(renovate): Update major (major) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/118](https://togithub.com/canonical/charming-actions/pull/118)
- fix(renovate): Update dependency dayjs to ^1.11.10 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/120](https://togithub.com/canonical/charming-actions/pull/120)
- fix(renovate): Update dependency typescript to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/116](https://togithub.com/canonical/charming-actions/pull/116)
- fix(renovate): Update minor (minor) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/114](https://togithub.com/canonical/charming-actions/pull/114)
- ci: run npm build during CI to ensure no failures by
[@&#8203;jnsgruk](https://togithub.com/jnsgruk) in
[https://github.com/canonical/charming-actions/pull/121](https://togithub.com/canonical/charming-actions/pull/121)
- fix(renovate): Update patch to ^6.13.2 (patch) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/122](https://togithub.com/canonical/charming-actions/pull/122)
- fix(renovate): Update patch (patch) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/123](https://togithub.com/canonical/charming-actions/pull/123)
- read metadata from charmcraft.yaml by
[@&#8203;addyess](https://togithub.com/addyess) in
[https://github.com/canonical/charming-actions/pull/132](https://togithub.com/canonical/charming-actions/pull/132)
- Support uploading multiple charm files by
[@&#8203;sudeephb](https://togithub.com/sudeephb) in
[https://github.com/canonical/charming-actions/pull/131](https://togithub.com/canonical/charming-actions/pull/131)
- chore(style): Use same style on fields by
[@&#8203;merkata](https://togithub.com/merkata) in
[https://github.com/canonical/charming-actions/pull/126](https://togithub.com/canonical/charming-actions/pull/126)
- docs(README): Add missing inputs by
[@&#8203;merkata](https://togithub.com/merkata) in
[https://github.com/canonical/charming-actions/pull/125](https://togithub.com/canonical/charming-actions/pull/125)
- Add "dump-logs" action by [@&#8203;sed-i](https://togithub.com/sed-i)
in
[https://github.com/canonical/charming-actions/pull/133](https://togithub.com/canonical/charming-actions/pull/133)
- make github tag in upload-charm optional by
[@&#8203;lucabello](https://togithub.com/lucabello) in
[https://github.com/canonical/charming-actions/pull/137](https://togithub.com/canonical/charming-actions/pull/137)
- Update README.md by [@&#8203;cbartz](https://togithub.com/cbartz) in
[https://github.com/canonical/charming-actions/pull/136](https://togithub.com/canonical/charming-actions/pull/136)
- fix(renovate): Update actions/upload-artifact action to v4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/134](https://togithub.com/canonical/charming-actions/pull/134)
- fix(renovate): Update patch (patch) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/127](https://togithub.com/canonical/charming-actions/pull/127)
- Fail release-libraries action if the lib has libpatch greater than
expected version by
[@&#8203;shayancanonical](https://togithub.com/shayancanonical) in
[https://github.com/canonical/charming-actions/pull/135](https://togithub.com/canonical/charming-actions/pull/135)
- add promote action by
[@&#8203;lucabello](https://togithub.com/lucabello) in
[https://github.com/canonical/charming-actions/pull/138](https://togithub.com/canonical/charming-actions/pull/138)
- fix: promote-charm action entrypoint by
[@&#8203;lucabello](https://togithub.com/lucabello) in
[https://github.com/canonical/charming-actions/pull/145](https://togithub.com/canonical/charming-actions/pull/145)

##### New Contributors

- [@&#8203;renovate](https://togithub.com/renovate) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/111](https://togithub.com/canonical/charming-actions/pull/111)
- [@&#8203;addyess](https://togithub.com/addyess) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/132](https://togithub.com/canonical/charming-actions/pull/132)
- [@&#8203;sudeephb](https://togithub.com/sudeephb) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/131](https://togithub.com/canonical/charming-actions/pull/131)
- [@&#8203;sed-i](https://togithub.com/sed-i) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/133](https://togithub.com/canonical/charming-actions/pull/133)
- [@&#8203;cbartz](https://togithub.com/cbartz) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/136](https://togithub.com/canonical/charming-actions/pull/136)
- [@&#8203;shayancanonical](https://togithub.com/shayancanonical) made
their first contribution in
[https://github.com/canonical/charming-actions/pull/135](https://togithub.com/canonical/charming-actions/pull/135)

**Full Changelog**:
canonical/charming-actions@2.4.0...2.6.0

###
[`v2.4.0`](https://togithub.com/canonical/charming-actions/releases/tag/2.4.0)

[Compare
Source](https://togithub.com/canonical/charming-actions/compare/2.3.0...2.4.0)

##### What's Changed

- update to node16 for deprecation warnings by
[@&#8203;lucabello](https://togithub.com/lucabello) in
[https://github.com/canonical/charming-actions/pull/95](https://togithub.com/canonical/charming-actions/pull/95)
- Add pull image option by [@&#8203;kian99](https://togithub.com/kian99)
in
[https://github.com/canonical/charming-actions/pull/102](https://togithub.com/canonical/charming-actions/pull/102)

##### New Contributors

- [@&#8203;lucabello](https://togithub.com/lucabello) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/95](https://togithub.com/canonical/charming-actions/pull/95)
- [@&#8203;kian99](https://togithub.com/kian99) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/102](https://togithub.com/canonical/charming-actions/pull/102)

**Full Changelog**:
canonical/charming-actions@2.3.0...2.4.0

###
[`v2.3.0`](https://togithub.com/canonical/charming-actions/releases/tag/2.3.0)

[Compare
Source](https://togithub.com/canonical/charming-actions/compare/2.2.5...2.3.0)

#### What's Changed

- Update README.md by
[@&#8203;beliaev-maksim](https://togithub.com/beliaev-maksim) in
[https://github.com/canonical/charming-actions/pull/94](https://togithub.com/canonical/charming-actions/pull/94)
- Adds support for pre-built charms in the `upload-charm` action by
[@&#8203;gruyaume](https://togithub.com/gruyaume) in
[https://github.com/canonical/charming-actions/pull/96](https://togithub.com/canonical/charming-actions/pull/96)

#### New Contributors

- [@&#8203;gruyaume](https://togithub.com/gruyaume) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/96](https://togithub.com/canonical/charming-actions/pull/96)

**Full Changelog**:
canonical/charming-actions@2.2.5...2.3.0

###
[`v2.2.5`](https://togithub.com/canonical/charming-actions/releases/tag/2.2.5)

[Compare
Source](https://togithub.com/canonical/charming-actions/compare/2.2.4...2.2.5)

#### What's Changed

- remove clean up of channel signs, reverting
[#&#8203;91](https://togithub.com/canonical/charming-actions/issues/91)
by [@&#8203;beliaev-maksim](https://togithub.com/beliaev-maksim) in
[https://github.com/canonical/charming-actions/pull/93](https://togithub.com/canonical/charming-actions/pull/93)

**Full Changelog**:
canonical/charming-actions@2.2.4...2.2.5

###
[`v2.2.4`](https://togithub.com/canonical/charming-actions/releases/tag/2.2.4)

[Compare
Source](https://togithub.com/canonical/charming-actions/compare/2.2.3...2.2.4)

#### What's Changed

This version changes the default publish branch on charmhub to
`<track-name>/edge/pr-<pr number>`. For more see
[README.md](https://togithub.com/canonical/charming-actions/blob/main/channel/README.md#branch-selection)

- clean channel for charmcraft publish from disallowed signs by
[@&#8203;beliaev-maksim](https://togithub.com/beliaev-maksim) in
[https://github.com/canonical/charming-actions/pull/91](https://togithub.com/canonical/charming-actions/pull/91)
- update channel for feature branches by
[@&#8203;beliaev-maksim](https://togithub.com/beliaev-maksim) in
[https://github.com/canonical/charming-actions/pull/92](https://togithub.com/canonical/charming-actions/pull/92)

#### New Contributors

- [@&#8203;beliaev-maksim](https://togithub.com/beliaev-maksim) made
their first contribution in
[https://github.com/canonical/charming-actions/pull/91](https://togithub.com/canonical/charming-actions/pull/91)

**Full Changelog**:
canonical/charming-actions@2.2.3...2.2.4

###
[`v2.2.3`](https://togithub.com/canonical/charming-actions/releases/tag/2.2.3)

[Compare
Source](https://togithub.com/canonical/charming-actions/compare/2.2.2...2.2.3)

#### What's Changed

- Fix destructive-mode option in README by
[@&#8203;taurus-forever](https://togithub.com/taurus-forever) in
[https://github.com/canonical/charming-actions/pull/87](https://togithub.com/canonical/charming-actions/pull/87)
- build: use node16 for `check-libraries` by
[@&#8203;jnsgruk](https://togithub.com/jnsgruk) in
[https://github.com/canonical/charming-actions/pull/89](https://togithub.com/canonical/charming-actions/pull/89)

#### New Contributors

- [@&#8203;taurus-forever](https://togithub.com/taurus-forever) made
their first contribution in
[https://github.com/canonical/charming-actions/pull/87](https://togithub.com/canonical/charming-actions/pull/87)

**Full Changelog**:
canonical/charming-actions@2.2.2...2.2.3

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 1am and before 3am every
weekday" in timezone Etc/UTC, 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.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/canonical/mysql-router-operator).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
carlcsaposs-canonical referenced this pull request in canonical/mysql-router-k8s-operator Jun 25, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[canonical/charming-actions](https://togithub.com/canonical/charming-actions)
| action | minor | `2.4.0` -> `2.6.0` |

---

### Release Notes

<details>
<summary>canonical/charming-actions
(canonical/charming-actions)</summary>

###
[`v2.6.0`](https://togithub.com/canonical/charming-actions/releases/tag/2.6.0)

[Compare
Source](https://togithub.com/canonical/charming-actions/compare/2.4.0...2.6.0)

#### What's Changed

- bump deps and address vuln issues by
[@&#8203;simskij](https://togithub.com/simskij) in
[https://github.com/canonical/charming-actions/pull/110](https://togithub.com/canonical/charming-actions/pull/110)
- chore(deps): pin dependencies by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/111](https://togithub.com/canonical/charming-actions/pull/111)
- fix(renovate): Update patch (patch) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/112](https://togithub.com/canonical/charming-actions/pull/112)
- fix(renovate): Update actions/checkout action to v3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/115](https://togithub.com/canonical/charming-actions/pull/115)
- fail channel action if branch name is invalid by
[@&#8203;simskij](https://togithub.com/simskij) in
[https://github.com/canonical/charming-actions/pull/105](https://togithub.com/canonical/charming-actions/pull/105)
- fix(renovate): Update github-actions to v4 (major) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/117](https://togithub.com/canonical/charming-actions/pull/117)
- fix(renovate): Update major (major) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/118](https://togithub.com/canonical/charming-actions/pull/118)
- fix(renovate): Update dependency dayjs to ^1.11.10 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/120](https://togithub.com/canonical/charming-actions/pull/120)
- fix(renovate): Update dependency typescript to v5 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/116](https://togithub.com/canonical/charming-actions/pull/116)
- fix(renovate): Update minor (minor) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/114](https://togithub.com/canonical/charming-actions/pull/114)
- ci: run npm build during CI to ensure no failures by
[@&#8203;jnsgruk](https://togithub.com/jnsgruk) in
[https://github.com/canonical/charming-actions/pull/121](https://togithub.com/canonical/charming-actions/pull/121)
- fix(renovate): Update patch to ^6.13.2 (patch) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/122](https://togithub.com/canonical/charming-actions/pull/122)
- fix(renovate): Update patch (patch) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/123](https://togithub.com/canonical/charming-actions/pull/123)
- read metadata from charmcraft.yaml by
[@&#8203;addyess](https://togithub.com/addyess) in
[https://github.com/canonical/charming-actions/pull/132](https://togithub.com/canonical/charming-actions/pull/132)
- Support uploading multiple charm files by
[@&#8203;sudeephb](https://togithub.com/sudeephb) in
[https://github.com/canonical/charming-actions/pull/131](https://togithub.com/canonical/charming-actions/pull/131)
- chore(style): Use same style on fields by
[@&#8203;merkata](https://togithub.com/merkata) in
[https://github.com/canonical/charming-actions/pull/126](https://togithub.com/canonical/charming-actions/pull/126)
- docs(README): Add missing inputs by
[@&#8203;merkata](https://togithub.com/merkata) in
[https://github.com/canonical/charming-actions/pull/125](https://togithub.com/canonical/charming-actions/pull/125)
- Add "dump-logs" action by [@&#8203;sed-i](https://togithub.com/sed-i)
in
[https://github.com/canonical/charming-actions/pull/133](https://togithub.com/canonical/charming-actions/pull/133)
- make github tag in upload-charm optional by
[@&#8203;lucabello](https://togithub.com/lucabello) in
[https://github.com/canonical/charming-actions/pull/137](https://togithub.com/canonical/charming-actions/pull/137)
- Update README.md by [@&#8203;cbartz](https://togithub.com/cbartz) in
[https://github.com/canonical/charming-actions/pull/136](https://togithub.com/canonical/charming-actions/pull/136)
- fix(renovate): Update actions/upload-artifact action to v4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/134](https://togithub.com/canonical/charming-actions/pull/134)
- fix(renovate): Update patch (patch) by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/canonical/charming-actions/pull/127](https://togithub.com/canonical/charming-actions/pull/127)
- Fail release-libraries action if the lib has libpatch greater than
expected version by
[@&#8203;shayancanonical](https://togithub.com/shayancanonical) in
[https://github.com/canonical/charming-actions/pull/135](https://togithub.com/canonical/charming-actions/pull/135)
- add promote action by
[@&#8203;lucabello](https://togithub.com/lucabello) in
[https://github.com/canonical/charming-actions/pull/138](https://togithub.com/canonical/charming-actions/pull/138)

#### New Contributors

- [@&#8203;renovate](https://togithub.com/renovate) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/111](https://togithub.com/canonical/charming-actions/pull/111)
- [@&#8203;addyess](https://togithub.com/addyess) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/132](https://togithub.com/canonical/charming-actions/pull/132)
- [@&#8203;sudeephb](https://togithub.com/sudeephb) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/131](https://togithub.com/canonical/charming-actions/pull/131)
- [@&#8203;sed-i](https://togithub.com/sed-i) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/133](https://togithub.com/canonical/charming-actions/pull/133)
- [@&#8203;cbartz](https://togithub.com/cbartz) made their first
contribution in
[https://github.com/canonical/charming-actions/pull/136](https://togithub.com/canonical/charming-actions/pull/136)
- [@&#8203;shayancanonical](https://togithub.com/shayancanonical) made
their first contribution in
[https://github.com/canonical/charming-actions/pull/135](https://togithub.com/canonical/charming-actions/pull/135)

**Full Changelog**:
canonical/charming-actions@2.4.0...2.6.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 1am and before 3am every
weekday" in timezone Etc/UTC, 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.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/canonical/mysql-router-k8s-operator).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNzcuOCIsInVwZGF0ZWRJblZlciI6IjM3LjM3Ny44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants