Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

input: allow to remove builtin white list entries #535

Merged
merged 12 commits into from
Jan 2, 2024

Commits on Jan 2, 2024

  1. doc: add missing "PATH" default whitelist entry

    The PATH environment variable is always whitelisted by default.
    jkloetzke committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    72707c2 View commit details
    Browse the repository at this point in the history
  2. input: add priorities to user configuration settings

    The priority determines the order in which the different setting keys
    are evaluated. This allows different keys to influence the same
    underlying property. The higher the priority number, the later the key
    is evaluated which corresponds to a higher precedence.
    jkloetzke committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    40ce4cc View commit details
    Browse the repository at this point in the history
  3. input: allow to remove builtin white list entries

    The new "whitelistRemove" key in default.yaml remove entries from the
    whitelist. It has a higher precedence than adding whitelist entries. It
    is not an error to remove non-existent whitelist entries.
    
    Fixes BobBuildTool#534.
    jkloetzke committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    a415a01 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    949e81a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e4af7fd View commit details
    Browse the repository at this point in the history
  6. input: add support to pre-/append archive specs

    The "archive" keyword replaces the currently configured archives. The
    new "archivePrepend" and "archiveAppend" keys update the archive list by
    either prepending to the current list or appending to it. The previously
    defined archives are retained.
    jkloetzke committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    ae98900 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2c5f78e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    dd1a07b View commit details
    Browse the repository at this point in the history
  9. input: add support to pre-/append mirrors

    The "preMirror" and "fallbackMirror" keywords replace the currently
    configured mirrors. The new "preMirrorAppend", "preMirrorPrepend",
    "fallbackMirrorAppend" and "fallbackMirrorPrepend" keys instead update
    the respective mirror list by either appending to the current list or
    prepending to it. The previously defined mirrors are retained.
    jkloetzke committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    32de317 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    0c0bde1 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f5b703e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e6df0bb View commit details
    Browse the repository at this point in the history