Skip to content

Commit 1117195

Browse files
authored
Merge pull request #1068 from ansidev/hotfix/2.2.7
Hotfix v2.2.7
2 parents 5230aa3 + b12b5f3 commit 1117195

File tree

4 files changed

+25
-10
lines changed

4 files changed

+25
-10
lines changed

.changes/v2.2.7.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## [v2.2.7](https://github.com/ansidev/leetcode-blog/compare/v2.2.6...v2.2.7) (2025-04-30)
2+
3+
### Features
4+
5+
- **config:** update renovate config
6+
7+
Full Changelog: [v2.2.6...v2.2.7](https://github.com/ansidev/leetcode-blog/compare/v2.2.6...v2.2.7)

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
66

7+
## [v2.2.7](https://github.com/ansidev/leetcode-blog/compare/v2.2.6...v2.2.7) (2025-04-30)
8+
9+
### Features
10+
11+
- **config:** update renovate config
12+
13+
Full Changelog: [v2.2.6...v2.2.7](https://github.com/ansidev/leetcode-blog/compare/v2.2.6...v2.2.7)
14+
715
## [v2.2.6](https://github.com/ansidev/leetcode-blog/compare/v2.2.5...v2.2.6) (2023-08-08)
816

917
### Bug Fixes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "leetcode-blog",
33
"description": "Solutions for LeetCode problems - Written by ansidev",
44
"type": "module",
5-
"version": "2.2.6",
5+
"version": "2.2.7",
66
"license": "MIT",
77
"packageManager": "[email protected]",
88
"scripts": {

renovate.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"config:base"
4+
"config:recommended"
55
],
66
"baseBranches": [
77
"develop"
88
],
99
"packageRules": [
1010
{
11-
"matchPackagePatterns": [
12-
"*"
13-
],
14-
"matchUpdateTypes": [
15-
"major",
16-
"minor"
17-
]
11+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
12+
"automerge": true
13+
},
14+
{
15+
"matchDepTypes": ["devDependencies"],
16+
"automerge": true
1817
}
19-
]
18+
],
19+
"platformAutomerge": true
2020
}

0 commit comments

Comments
 (0)