Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: theforeman/puppet-dns
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 10.2.0
Choose a base ref
...
head repository: theforeman/puppet-dns
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 10.3.0
Choose a head ref
  • 4 commits
  • 9 files changed
  • 4 contributors

Commits on Nov 19, 2023

  1. Fix calling function empty() with Numeric value

    This produce a warning:
    
    ```
    2023-11-19T05:33:05.421+02:00 WARN [qtp925335889-44] [puppetserver] Puppet Calling function empty() with Numeric value is deprecated. (file: /usr/local/etc/puppet/code/environments/production/modules/dns/manifests/logging/channel.pp, line: 61)
    ```
    
    Since we have data-types in place (`Optional[Integer]`), we do not need
    to care about an empty String.  Only `undef` will evaluate to false, and
    it is the precise case we want to raise an error for.
    smortex authored and ekohl committed Nov 19, 2023
    Configuration menu
    Copy the full SHA
    a3913eb View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2024

  1. add support for the statistics-channels directive

    The statistics-channels statement declares communication channels
    to be used by system administrators to get access to statistics
    information of the name server. BIND will only start a listener
    if the directive is found in the configuration. The ACLs are
    rendered similar to the `controls` directive.
    
    Statistics are not collected on a per-zone basis by default.
    To enable this behaviour, the defined type for zones has a new
    parameter to do so.
    UiP9AV6Y authored and ekohl committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    787048c View commit details
    Browse the repository at this point in the history
  2. Add support for forwarders in master zone

    This gives possibility to enable forwarding in master zone.
    
    Add support for empty forwarders in master zone
    
    Allows to disable forwarding in master zone to cover scenario
    when server is authoritative for domain, subdomain is delegated
    and global forwarding is set.
    mbarecki authored and ekohl committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    1d85c75 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2024

  1. Release 10.3.0

    ekohl committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    88b8452 View commit details
    Browse the repository at this point in the history
Loading