@foray1010/renovate-config 1.2.4 → 1.3.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +20 -7
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
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.0](https://github.com/foray1010/common-presets/compare/@foray1010/renovate-config@1.2.7...@foray1010/renovate-config@1.3.0) (2022-01-09)
7
+
8
+ ### Features
9
+
10
+ - update renovate scheduled time ([66c18a8](https://github.com/foray1010/common-presets/commit/66c18a8bc635e3003d8053e44e6431be2dd697a1))
11
+
12
+ ### [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)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **renovate-config:** disable dependency dashboard ([66b1c2e](https://github.com/foray1010/common-presets/commit/66b1c2ef1e73167be9607108c5d66e6a9ad0cfbe))
17
+
18
+ ### [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)
19
+
20
+ ### Bug Fixes
21
+
22
+ - ensure we are testing with the oldest supported node version in CI ([8237a50](https://github.com/foray1010/common-presets/commit/8237a5073f8cd267fc42020df3b4f79fa3816c84))
23
+
24
+ ### [1.2.5](https://github.com/foray1010/common-presets/compare/@foray1010/renovate-config@1.2.4...@foray1010/renovate-config@1.2.5) (2021-04-29)
25
+
26
+ **Note:** Version bump only for package @foray1010/renovate-config
27
+
6
28
  ## [1.2.4](https://github.com/foray1010/common-presets/compare/@foray1010/renovate-config@1.2.3...@foray1010/renovate-config@1.2.4) (2021-02-28)
7
29
 
8
30
  **Note:** Version bump only for package @foray1010/renovate-config
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.2.4",
4
+ "version": "1.3.0",
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,7 +10,9 @@
10
10
  "directory": "packages/renovate-config"
11
11
  },
12
12
  "license": "MIT",
13
- "files": [],
13
+ "files": [
14
+ "*.md"
15
+ ],
14
16
  "publishConfig": {
15
17
  "access": "public"
16
18
  },
@@ -19,16 +21,17 @@
19
21
  "extends": [
20
22
  "config:base",
21
23
  ":automergeMinor",
22
- ":assignAndReview(foray1010)"
24
+ ":assignAndReview(foray1010)",
25
+ ":disableDependencyDashboard"
23
26
  ],
24
- "timezone": "Asia/Hong_Kong",
27
+ "timezone": "Etc/UTC",
25
28
  "schedule": [
26
- "after 2am and before 7am"
29
+ "after 12am and before 5am"
27
30
  ],
28
31
  "lockFileMaintenance": {
29
32
  "enabled": true,
30
33
  "schedule": [
31
- "after 2am and before 7am on Monday"
34
+ "after 12am and before 5am on Monday"
32
35
  ],
33
36
  "prPriority": 1
34
37
  },
@@ -36,6 +39,16 @@
36
39
  "prPriority": 2
37
40
  },
38
41
  "packageRules": [
42
+ {
43
+ "matchDepTypes": [
44
+ "docker"
45
+ ],
46
+ "matchPackagePatterns": [
47
+ "^circleci/"
48
+ ],
49
+ "enabled": false,
50
+ "description": "ensure we are testing with the oldest supported node version in CI"
51
+ },
39
52
  {
40
53
  "matchPackagePatterns": [
41
54
  "^@foray1010/.+(config|preset)$"
@@ -60,5 +73,5 @@
60
73
  ]
61
74
  }
62
75
  },
63
- "gitHead": "8083e40916f6a56d504c7a9a751adc489c90f9e5"
76
+ "gitHead": "caaca02524ad9574dcddf9ef851051599e999703"
64
77
  }