@foray1010/renovate-config 1.2.6 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/package.json +11 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [1.3.1](https://github.com/foray1010/common-presets/compare/@foray1010/renovate-config@1.3.0...@foray1010/renovate-config@1.3.1) (2022-03-20)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- migrate to cimg docker image ([aec7d8c](https://github.com/foray1010/common-presets/commit/aec7d8cead2110af4f59d50fea79a2e94dc8919e))
|
|
11
|
+
|
|
12
|
+
## [1.3.0](https://github.com/foray1010/common-presets/compare/@foray1010/renovate-config@1.2.7...@foray1010/renovate-config@1.3.0) (2022-01-09)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- update renovate scheduled time ([66c18a8](https://github.com/foray1010/common-presets/commit/66c18a8bc635e3003d8053e44e6431be2dd697a1))
|
|
17
|
+
|
|
18
|
+
### [1.2.7](https://github.com/foray1010/common-presets/compare/@foray1010/renovate-config@1.2.6...@foray1010/renovate-config@1.2.7) (2021-08-25)
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
- **renovate-config:** disable dependency dashboard ([66b1c2e](https://github.com/foray1010/common-presets/commit/66b1c2ef1e73167be9607108c5d66e6a9ad0cfbe))
|
|
23
|
+
|
|
6
24
|
### [1.2.6](https://github.com/foray1010/common-presets/compare/@foray1010/renovate-config@1.2.5...@foray1010/renovate-config@1.2.6) (2021-05-08)
|
|
7
25
|
|
|
8
26
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
3
|
"name": "@foray1010/renovate-config",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.3.1",
|
|
5
5
|
"homepage": "https://github.com/foray1010/common-presets/tree/master/packages/renovate-config#readme",
|
|
6
6
|
"bugs": "https://github.com/foray1010/common-presets/issues",
|
|
7
7
|
"repository": {
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
"directory": "packages/renovate-config"
|
|
11
11
|
},
|
|
12
12
|
"license": "MIT",
|
|
13
|
+
"files": [
|
|
14
|
+
"*.md"
|
|
15
|
+
],
|
|
13
16
|
"publishConfig": {
|
|
14
17
|
"access": "public"
|
|
15
18
|
},
|
|
@@ -18,16 +21,17 @@
|
|
|
18
21
|
"extends": [
|
|
19
22
|
"config:base",
|
|
20
23
|
":automergeMinor",
|
|
21
|
-
":assignAndReview(foray1010)"
|
|
24
|
+
":assignAndReview(foray1010)",
|
|
25
|
+
":disableDependencyDashboard"
|
|
22
26
|
],
|
|
23
|
-
"timezone": "
|
|
27
|
+
"timezone": "Etc/UTC",
|
|
24
28
|
"schedule": [
|
|
25
|
-
"after
|
|
29
|
+
"after 12am and before 5am"
|
|
26
30
|
],
|
|
27
31
|
"lockFileMaintenance": {
|
|
28
32
|
"enabled": true,
|
|
29
33
|
"schedule": [
|
|
30
|
-
"after
|
|
34
|
+
"after 12am and before 5am on Monday"
|
|
31
35
|
],
|
|
32
36
|
"prPriority": 1
|
|
33
37
|
},
|
|
@@ -40,7 +44,7 @@
|
|
|
40
44
|
"docker"
|
|
41
45
|
],
|
|
42
46
|
"matchPackagePatterns": [
|
|
43
|
-
"^
|
|
47
|
+
"^cimg/"
|
|
44
48
|
],
|
|
45
49
|
"enabled": false,
|
|
46
50
|
"description": "ensure we are testing with the oldest supported node version in CI"
|
|
@@ -69,5 +73,5 @@
|
|
|
69
73
|
]
|
|
70
74
|
}
|
|
71
75
|
},
|
|
72
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "a6523662cb883c28d888480f6733dab8a3363dd4"
|
|
73
77
|
}
|