Commit graph

2626 commits

Author SHA1 Message Date
Renovate Bot
beee7b0d65 fix: update dependency got to v8.3.1 2018-05-01 08:29:55 +00:00
Rhys Arkins
a94088ba28
feat: deprecate packageFiles (#1898)
This PR deprecates the use of `packageFiles` and migrates it to `includePaths` and `packageRules`.

Closes #1887
2018-05-01 09:21:15 +02:00
Rhys Arkins
a17cbda1a9 fix: allow config.global limit for maxPackageFiles 2018-05-01 08:25:27 +02:00
Rhys Arkins
336ab8fdf8 refactor: don’t warn when no Dockerfile FROM found 2018-05-01 07:59:58 +02:00
Rhys Arkins
c800ee9344
refactor: remove custom docker resolve/contentPatterns (#1897) 2018-04-30 18:57:52 +02:00
Rhys Arkins
43742467f6
feat: includePaths (#1896)
Adds a config option `includePaths` that allows the user to specify one or more paths to include in renovation and the rest will be excluded.
2018-04-30 16:13:32 +02:00
Rhys Arkins
55c2a4619e feat: rate limit packageFile retrieval
Uses fixed limits of 5 concurrent for a maximum of 100. Issues Warning if more than 100 found. Can be made configurable later if requested.

Closes #1895
2018-04-30 14:08:48 +02:00
Rhys Arkins
12702bfe35 chore: drop bundled deps 2018-04-30 14:07:54 +02:00
Rhys Arkins
96bbe6a539 chore: reformat package.json 2018-04-30 14:07:13 +02:00
Rhys Arkins
c356bb0349
feat: custom filenames for package files (#1894)
Renovate now comes with a variety of package managers supported, each with their own filename pattern(s). These patterns are now exposed for user configuration through the new `fileMatch` list/array configuration option, which has been added to each manager (npm, bazel, docker-compose, etc). `fileMatch` is defined as a mergeable list, meaning that users can add to the default pattern to extend the files being detected.

Closes #799
2018-04-30 13:18:51 +02:00
Rhys Arkins
9306297338 fix(config): massage \\n in env to \n 2018-04-30 10:07:59 +02:00
Rhys Arkins
d13d6a0495
feat: deprecate deptypes and migrate to packageRules (#1892)
Rules for dep types (e.g. dependencies, devDependencies, peerDependencies, optionalDependencies) should now be done with `packageRules` and the `depTypeList` selector
2018-04-30 08:21:48 +02:00
renovate[bot]
51acaa1203 fix: update dependency semantic-release to v15.1.8 (#1891) 2018-04-30 07:52:59 +02:00
Rhys Arkins
2835cc98ed
refactor(renovate): Set semanticCommitType to fix for semantic-release (#1893) 2018-04-30 07:22:57 +02:00
Rhys Arkins
b38df44b18
refactor: rename parentManager -> language (#1890)
Closes #1888
2018-04-30 07:16:34 +02:00
Rhys Arkins
23051355fb fix: properly migrate pathRules 2018-04-29 23:07:39 +02:00
Rhys Arkins
72742f99f9 fix: drop parentManager from definitions 2018-04-29 22:02:49 +02:00
Rhys Arkins
706cdcc122 refactor: log manual packageFiles config 2018-04-29 20:46:11 +02:00
Rhys Arkins
136b82fdd8 tests: fix preset tests 2018-04-29 20:44:37 +02:00
Rhys Arkins
97bbb60ca4
fix: update URLs in readme 2018-04-29 14:25:38 +02:00
Rhys Arkins
122fffea99
Fix pathRules migration (#1885)
Fix pathRules migration
2018-04-29 14:05:45 +02:00
Ayoub Kaanich
c8ae853d58 feat: python requirements.txt support (#1858)
This PR adds basic support for requirements.txt. Currently it works on fully specified (pinned) versions only, so is disabled by default. Enable it by setting `pip_requirements.enabled = true` in config.
2018-04-28 20:39:07 +02:00
Rhys Arkins
2606219485 fix(packageRules): get packageFile from depTypeConfig 2018-04-28 15:47:09 +02:00
Rhys Arkins
898b913f3b
feat: deprecate pathRules (#1881)
pathRules are now migrated to packageRules.

Closes #1880
2018-04-28 14:05:39 +02:00
Rhys Arkins
757154ded4
feat: add paths selector to packageRules (#1879) 2018-04-28 08:56:15 +02:00
Rhys Arkins
f618b30633 refactor: sort errors and warnings alphabetically 2018-04-28 08:48:12 +02:00
Rhys Arkins
3257bf73df refactor: simplify packageRule logic 2018-04-28 08:16:35 +02:00
Renovate Bot
6ff63914b8 fix: update dependency upath to v1.0.5 2018-04-27 19:40:41 +00:00
Rhys Arkins
4349a21484
feat: buildkite plugin renovation (#1874)
This PR adds initial support for buildkite plugin renovation.

It supports `plugin-name` or `my/plugin-name` plugins, and fully specified semver versions only (e.g. `v1.3.2`). Currently it will always propose an upgrade to the latest version available, e.g. if current version is v1.3.1 and both v1.3.2 and v2.0.0 exist then v2.0.0 will be proposed. Looks for any yml file in the `.buildkite/` directory.

Closes #1869
2018-04-27 19:54:44 +02:00
Renovate Bot
4bd721b5d5 fix: update dependency npm to v6 2018-04-27 08:36:10 +02:00
Țurcanu Dragomir
305f094bd4 Added matchCurrentVersion selector to packageRules (#1835)
The matchCurrentVersion option sets a range of versions that a package update can be in. If the package's current version doesn't satisfy the matchCurrentVersion range, it won't match the rule.

Closes #1771
2018-04-27 05:45:22 +02:00
Renovate Bot
af1f884181 chore: update dependency codecov to v3.0.1 2018-04-27 01:27:39 +00:00
Rhys Arkins
38f2713572
Create adding-a-package-manager.md (#1872)
Closes #1871
2018-04-26 21:32:05 +02:00
Rhys Arkins
5e3339aacb
feat: support commit prefix in onboarding commit (#1868)
This PR adds the capability so that the onboarding commit message (“Add renovate.json”) will have a prefix if semanticCommits is explicitly set to true by the bot administrator.

e.g. “renovate a/b —semantic-commits=true —semantic-commit-type=foo” will result in the onboarding commit being “foobar: add renovate.json”.

Closes #1867
2018-04-26 14:06:36 +02:00
Rhys Arkins
9c1a9a7d6c docs: add links to Renovate Pro 2018-04-26 12:49:11 +02:00
Renovate Bot
190a0af6bd fix: update dependency chalk to v2.4.1 2018-04-26 06:32:30 +00:00
Vinh Le
b128870587 docs: correct config.js path in Docker (#1862) 2018-04-25 06:15:32 +02:00
Renovate Bot
02050e1c72 fix: update dependency lodash to v4.17.10 2018-04-24 19:29:42 +00:00
Rhys Arkins
6415833a4b refactor: renovateapp.com -> renovatebot.com 2018-04-24 13:59:42 +02:00
Renovate Bot
3c1116953d fix: update dependency json-stringify-pretty-compact to v1.2.0 2018-04-22 19:29:44 +00:00
Renovate Bot
2e00aaa0c6 fix: update dependency pnpm to v1.41.2 2018-04-22 17:30:05 +00:00
Renovate Bot
0d79545aad fix: update dependency pnpm to v1.41.1 2018-04-21 01:30:39 +00:00
Renovate Bot
f84de87b00 fix: update dependency pnpm to v1.41.0 2018-04-20 00:31:07 +00:00
Rhys Arkins
6eb5fe787b fix: typo in large file tree url 2018-04-19 09:09:27 +02:00
Rhys Arkins
1564150d9f refactor: streamline debug logging 2018-04-18 21:19:00 +02:00
Renovate Bot
d951cc0e6c fix: update dependency moment-timezone to v0.5.16 2018-04-18 08:30:03 +00:00
Rhys Arkins
9917b603cf docs: fix default values for managers 2018-04-18 06:43:21 +02:00
Rhys Arkins
f408d582e8 fix: serialize body in logs 2018-04-18 06:32:06 +02:00
Rhys Arkins
da06af8489 logs: log finish 2018-04-18 06:31:55 +02:00
Rhys Arkins
6f2283fbee tests: update migration snapshot 2018-04-17 14:41:18 +02:00