| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-06-10 | Autocorrect Rubocop Style/PerlBackrefs. | Mike McQuaid | |
| 2017-06-09 | Revert "audit: Port audit_checksum method to rubocop and add tests" | Mike McQuaid | |
| 2017-06-08 | audit: Port audit_checksum method to rubocop and add tests | Gautham Goli | |
| 2017-06-08 | audit: ensure curl always has an HTTP url. | Mike McQuaid | |
| This makes using `HOMEBREW_CURL` significantly nicer as then the system `curl` (that, on old versions, sucks at SSL) can download a version of `curl` that it can build from source. | |||
| 2017-06-03 | audit: fix pypi strict audit capture group. | Mike McQuaid | |
| 2017-06-03 | Merge pull request #2726 from MikeMcQuaid/audit-pypi-urls | Mike McQuaid | |
| audit: check pypi URLs | |||
| 2017-06-03 | Merge pull request #2725 from MikeMcQuaid/audit-formulae-options-fix | Mike McQuaid | |
| audit: fix false negative for formulae options. | |||
| 2017-06-02 | audit: check pypi URLs | Mike McQuaid | |
| #373 implemented as a strict check (thanks nijikon) | |||
| 2017-06-02 | audit: fix false negative for formulae options. | Mike McQuaid | |
| Handle the case where an if/unless is detected and then write off this line for option handling. | |||
| 2017-06-02 | Re-revert "Fix operator spacing." | Markus Reiter | |
| 2017-05-31 | audit: Port audit_caveats method to rubocop and add tests | Gautham Goli | |
| 2017-05-30 | audit: Port audit_text method to rubocop and add tests | Gautham Goli | |
| 2017-05-29 | Fixup all RuboCop warnings. | Mike McQuaid | |
| 2017-05-21 | Merge pull request #2658 from JCount/audit-fix-versioned-aliases-homebrew-core | JCount | |
| audit: fix versioned alias errors in homebrew/core introduced in a7c6a57 | |||
| 2017-05-22 | Change error messages. | Markus Reiter | |
| 2017-05-22 | Use `FormulaVersions` for checksum check. | Markus Reiter | |
| 2017-05-22 | Add the same check for Formulae. | Markus Reiter | |
| 2017-05-21 | audit: fix versioned alias errors in homebrew/core introduced in a7c6a57 | JCount | |
| This fixes #2657 which in turn were caused by an oversight in #2664 | |||
| 2017-05-20 | Merge pull request #2644 from JCount/audit-fix-tap-versioned-aliases | Mike McQuaid | |
| audit: fix full versioned alias name resolution in taps | |||
| 2017-05-18 | Merge pull request #2537 from reitermarkus/pathname-to_str | Markus Reiter | |
| Remove `to_s` from some `Pathname`s. | |||
| 2017-05-17 | audit: fix full versioned alias name resolution in taps | JCount | |
| This fixes an issue where audit would prompt for the creation of an already existing versioned alias while at the same time declaring the existing alias invalid. | |||
| 2017-05-15 | Merge pull request #2631 from GauthamGoli/audit_homepage_rubocop1.2.1 | Mike McQuaid | |
| audit: Port audit_homepage method to rubocop and add tests | |||
| 2017-05-14 | Port audit_homepage method to rubocop and add tests | Gautham Goli | |
| 2017-05-14 | Merge pull request #2627 from MikeMcQuaid/audit-fix-option-detection | Mike McQuaid | |
| audit: fix dependency option detection. | |||
| 2017-05-13 | audit: fix dependency option detection. | Mike McQuaid | |
| Instead of trying to do this all with a single regex give up and do a two stage process. Eventually I'll end up implementing a full ruby parser here :troll:. | |||
| 2017-05-09 | audit: more checks for versioned aliases. | Mike McQuaid | |
| Check that a required versioned alias has a valid name (rather than assuming it’s fine based on it’s existence alone) and check for the presence of invalid version aliases. This should handle the case where someone bumps a formula but forgets to rename the alias that’s mentioned in #2596. | |||
| 2017-05-08 | Remove `to_s` from some `Pathname`s. | Markus Reiter | |
| 2017-05-07 | Revert "Merge pull request #2597 from MikeMcQuaid/vendor-gems" | Mike McQuaid | |
| This reverts commit 3e4547f52e7ebec633f8bfefc8a396d944edf908, reversing changes made to 6edf9382bcc1240ad6f97c8b752cfe56cef9965d. | |||
| 2017-05-07 | Vendor all Homebrew's gems. | Mike McQuaid | |
| Homebrew's actually ended up using a fair few gems. While we want to avoid Bundler at runtime (and this PR still does that, in fact uses Bundler even less at runtime than it did before) writing our own version to use at build-time seems redundant. | |||
| 2017-05-03 | Merge pull request #2531 from GauthamGoli/audit_cops_options_refactor | Mike McQuaid | |
| audit: Allow skipping/selective running of cops and cops refactor | |||
| 2017-05-03 | Add `--only-cops`,`--except-cops` options for brew style and simplify cop names | Gautham Goli | |
| 2017-05-02 | audit: match start of string, not line | Dominyk Tiller | |
| 2017-05-02 | audit: whitelist 'Firefox' in keg_only_style | Dominyk Tiller | |
| 2017-05-02 | Add `--only-cops`,`--except-cops` options for brew audit | Gautham Goli | |
| Also refactor audit cops into two "departments" - FormulaAudit - FormulaAuditStrict | |||
| 2017-05-02 | Let cops run without --strict flag | Gautham Goli | |
| 2017-05-01 | audit: add audit_keg_only_style | Dominyk Tiller | |
| 2017-04-28 | audit: formally ban go get usage | Dominyk Tiller | |
| There's been an informal ban for a while but let's be punchier because this crops up still. | |||
| 2017-04-27 | audit: tweak dependency option audit. | Mike McQuaid | |
| Make sure that `if build.with?` isn't caught. | |||
| 2017-04-26 | audit: fix audit of new formulae. | Mike McQuaid | |
| When auditing new formulae without `--new-formula` the `audit_revision_and_version_scheme` method fails ungracefully. Instead, set some better defaults so fewer checks are needed. Fixes #2551. | |||
| 2017-04-25 | audit: fix use of search_tap method. | Mike McQuaid | |
| This was removed in #2540 but this call site was note updated to use the `search_taps` method instead. | |||
| 2017-04-24 | Merge pull request #2465 from GauthamGoli/audit_components_port_rubocop | Mike McQuaid | |
| audit: audit_components method to rubocops and tests | |||
| 2017-04-23 | Fix audit version_scheme and revision checks. | Mike McQuaid | |
| Another attempt at fixing `brew audit` issues around detecting `revision` and `version_scheme` changes correctly. First done in #1754 and #2086 (reverted in #2099 and #2100). To ease future debugging a `ph` helper has been added to print a hash and a series of RSpec tests to verify that the `revision`, `version_scheme` and `version` formula version audits behave as expected. Fixes #1731. | |||
| 2017-04-22 | Port audit_components method to rubocops and add corresponding tests | Gautham Goli | |
| 2017-04-22 | Merge pull request #2526 from MikeMcQuaid/audit-gnu-mirror-flip | Mike McQuaid | |
| audit: flip GNU mirror preference. | |||
| 2017-04-22 | audit: flip GNU mirror preference. | Mike McQuaid | |
| Now that both the primary and mirror URLs use HTTPS we can flip these around so the primary URL is the primary URL and we don't have problems with waiting for mirror propagation. | |||
| 2017-04-22 | audit: lookup unversioned formulae with Formulary. | Mike McQuaid | |
| This means that if e.g. the unversioned formulae exists in another tap this audit won't produce a false positive. | |||
| 2017-04-22 | Merge pull request #2482 from MikeMcQuaid/audit-dependency-options | Mike McQuaid | |
| audit: ensure default dependencies don't use options. | |||
| 2017-04-21 | audit: ensure dependencies don't use options. | Mike McQuaid | |
| Option dependencies are nasty as they cause unnecessary builds from source. | |||
| 2017-04-21 | audit: new formulae should not require patches. | Mike McQuaid | |
| We may under some circumstances accept these anyway but it's better to nudge people into the right behaviours on local `audit`s. | |||
| 2017-04-19 | audit: fix swapped audit messages | Steven Peters | |
