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: puppetlabs/puppetlabs-dsc_lite
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.1
Choose a base ref
...
head repository: puppetlabs/puppetlabs-dsc_lite
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.1.0
Choose a head ref
  • 20 commits
  • 10 files changed
  • 9 contributors

Commits on Jun 7, 2024

  1. (CAT-1869) - Add configurable dsc_timeout param for dsc type

    Prior to this commit, we set a default timeout of 20 minutes for the dsc
    type, and this was not configurable.
    
    This change adds a new "dsc_timeout" param to the dsc type, which
    accepts an integer value for the number of seconds execution should wait
    before exiting.
    
    Users can now configure this timeout through their manifests, same as
    you would with any other property see below:
    ```
    dsc { "Running Script":
      resource_name => 'Script',
      module        => 'PSDesiredStateConfiguration',
      dsc_timeout   => 10,
      properties    => {
        getscript  => 'Start-Sleep -Seconds 5',
        testscript => '$false',
        setscript  => 'Start-Sleep -Seconds 5',
      },
    }
    ```
    jordanbreen28 committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    fad6643 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #213 from puppetlabs/cat-1869-add_configurable_tim…

    …eout
    
    (CAT-1869) - Add configurable dsc_timeout param for dsc type
    pmcmaw authored Jun 7, 2024
    Configuration menu
    Copy the full SHA
    89d4f6d View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. Configuration menu
    Copy the full SHA
    f8998d5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #214 from puppetlabs/cat-1869-add_configurable_tim…

    …eout
    
    (maint) - Implement retries for timeout test
    david22swan authored Jun 10, 2024
    Configuration menu
    Copy the full SHA
    aeda8d4 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2024

  1. Configuration menu
    Copy the full SHA
    ed999a1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #215 from puppetlabs/update_labeller

    (maint) Update labeller.yml to pull_request
    david22swan authored Jun 11, 2024
    Configuration menu
    Copy the full SHA
    83145d6 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2024

  1. Configuration menu
    Copy the full SHA
    2ee2d5f View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. Merge pull request #216 from puppetlabs/revert-215-update_labeller

    Revert "(maint) Update labeller.yml to pull_request"
    gavindidrichsen authored Jun 13, 2024
    Configuration menu
    Copy the full SHA
    de77679 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. (CAT-1954) Remove labeller

    LukasAud committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    89152d3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #217 from puppetlabs/pdksync_CAT-1954-Remove_labeller

    pdksync - (CAT-1954) Remove labeller
    jordanbreen28 authored Jul 10, 2024
    Configuration menu
    Copy the full SHA
    d167508 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Configuration menu
    Copy the full SHA
    2fc0830 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    761b703 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2e5eb22 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #218 from puppetlabs/maint-remove_unsupported_os

    (CAT-1927) - Remove Windows 7, 8.x and 2008 R2 Support
    LukasAud authored Jul 16, 2024
    Configuration menu
    Copy the full SHA
    ed95c2a View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. (maint) - add disclaimer for script block logging

    This commit adds a warning the readme about the use
    of sensitive data with script block logging enabled.
    As per microsoft's own recommendation, protected event
    logging should also be enabled to encyrpt this data.
    jordanbreen28 committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    8b10f7d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #220 from puppetlabs/maint-add_readme_disclaimer

    (maint) - add disclaimer for script block logging
    david22swan authored Aug 15, 2024
    Configuration menu
    Copy the full SHA
    2c75b19 View commit details
    Browse the repository at this point in the history
  3. (Bug) - Fix timeout matcher

    Ths commit fixes the timeout matcher to more accurately match a
    legitimate dsc timeout. Before, if output was nil for any other reason
    dsc_lite would assume timeout which is not strictly correct. There is a
    specific error message returned on dsc timeout which we should strive to
    match instead.
    
    Additionally, moved the logic to only execute for nodes with windows
    powershell support as we can only pass a timeout to powershell on these
    nodes.
    jordanbreen28 committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    a31f0b9 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #219 from puppetlabs/bug-fix_timeout_matcher

    (Bug) - Fix timeout matcher
    danadoherty639 authored Aug 15, 2024
    Configuration menu
    Copy the full SHA
    c40b6af View commit details
    Browse the repository at this point in the history
  5. Release prep v4.1.0

    GitHub Actions committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    cf31595 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #221 from puppetlabs/release-prep

    Release prep v4.1.0
    jordanbreen28 authored Aug 15, 2024
    Configuration menu
    Copy the full SHA
    746fc17 View commit details
    Browse the repository at this point in the history
Loading