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

Commits on Aug 15, 2017

  1. Merge remote-tracking branch 'origin/release'

    * origin/release:
      (MODULES-5460) Prepare module for 4.1.0 release
    Iristyle committed Aug 15, 2017
    Configuration menu
    Copy the full SHA
    74e0e16 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2017

  1. (docs) Update docs to remove Server 2016

    This module does not yet support Windows Server 2016 / IIS v10.
    Iristyle authored Aug 22, 2017
    Configuration menu
    Copy the full SHA
    b431c0f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #105 from puppetlabs/remove-server-2016-from-readme

    (docs) Update docs to remove Server 2016
    clairecadman authored Aug 22, 2017
    Configuration menu
    Copy the full SHA
    61e464f View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2017

  1. (MODULES-5576) Fix: iis_site preloadenabled not working

    Previously, the preload enabled setting for IIS Site was setting service autostart enabled
    instead of preload enabled. Ensure that the setting sets 'applicationDefaults.preloadEnabled'
    instead.
    ferventcoder committed Sep 4, 2017
    Configuration menu
    Copy the full SHA
    4467e79 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2017

  1. (MODULES-5576) Implement preloadenabled

    This commit implements the rest of the code needed to make
    preloadenabled work.
    jpogran committed Sep 12, 2017
    Configuration menu
    Copy the full SHA
    3543388 View commit details
    Browse the repository at this point in the history
  2. (MODULES-5576) Add test for preloadenabled

    This commit adds an acceptance test for preloadenabled
    jpogran committed Sep 12, 2017
    Configuration menu
    Copy the full SHA
    964ef25 View commit details
    Browse the repository at this point in the history
  3. (MODULES-5381) Expand managed_runtime_version enum

    This commit adds the 'No Managed Code' value to the
    managed_runtime_version enum by adding a empty string to the enum set.
    The empty string will be translated correctly when set.
    Carlos Teixeira authored and jpogran committed Sep 12, 2017
    Configuration menu
    Copy the full SHA
    2bdfe82 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #94 from carlosfbteixeira/module_5381_managed_runt…

    …ime_version_property
    
    (MODULES-5381)managed_runtime_version should allow the 'No Managed Co…
    jpogran authored Sep 12, 2017
    Configuration menu
    Copy the full SHA
    9ee71b6 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #108 from ferventcoder/ticket/MODULES-5576

    (MODULES-5576) Fix: iis_site Preload Enabled Not Working
    glennsarti authored Sep 12, 2017
    Configuration menu
    Copy the full SHA
    a814408 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2017

  1. (MODULES-5576) Confine IIS Version for preloadenabled

    The parameter preloadenabled is only available in IIS 8.0 or greater, so
    we need to prevent the instances method from trying to get the value if
    IIS 7.5 is installed.
    jpogran committed Sep 13, 2017
    Configuration menu
    Copy the full SHA
    8dc4b53 View commit details
    Browse the repository at this point in the history
  2. (MODULES-5576) Fix IIS 7.5 Support

    This commit guards against trying to discover what value preloadenabled
    is set to when the IIS version is 7.5, as 7.5 does not have
    preloadenabled functionality.
    jpogran committed Sep 13, 2017
    Configuration menu
    Copy the full SHA
    7d2f56d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #111 from jpogran/ticket/master/MODULES-5576-fix-i…

    …is-7.5-support
    
    (Modules-5576) Fix IIS 7.5 Support
    glennsarti authored Sep 13, 2017
    Configuration menu
    Copy the full SHA
    4af4bae View commit details
    Browse the repository at this point in the history
  4. (MODULES-5576) Confine specs for preloadenabled

    This commit confines the specs from trying to run the preloadenabled tests on IIS 7.5
    jpogran committed Sep 13, 2017
    Configuration menu
    Copy the full SHA
    5d74779 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #112 from jpogran/ticket/master/MODULES-5576-fix-i…

    …is-7.5-support-specs
    
    (MODULES-5576) Confine specs for preloadenabled
    glennsarti authored Sep 13, 2017
    Configuration menu
    Copy the full SHA
    60b8f7e View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2017

  1. (MODULES-5443) Fix IIS Site Name Validation

    This commit updates the name property of the iis_site type to allow
    for the use of a period ('.') in the name. It also adjusts the spec
    to verify this.
    michaeltlombardi committed Sep 15, 2017
    Configuration menu
    Copy the full SHA
    d850b42 View commit details
    Browse the repository at this point in the history
  2. (MODULES-5443) Add Name Class to Simplify Validation

    This commit adds the `name` class to the module in order to allow us to reuse
    the validation regex since this is valid for sites, applications, & app pools.
    michaeltlombardi committed Sep 15, 2017
    Configuration menu
    Copy the full SHA
    7474e94 View commit details
    Browse the repository at this point in the history
  3. (MODULES-5443) Refactor iis_site name to use name class

    This commit refactors the iis_site type's name parameter to use the new name
    class for regex validation. It also adjusts the unit tests to match for the
    appropriate error message.
    michaeltlombardi committed Sep 15, 2017
    Configuration menu
    Copy the full SHA
    de2b8d7 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2017

  1. Merge pull request #113 from michaeltlombardi/ticket/master/MODULES-5…

    …443-iis_site-name-validation
    
    (MODULES-5443) Fix IIS Site Name Validation
    jpogran authored Sep 20, 2017
    Configuration menu
    Copy the full SHA
    3778ce8 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2017

  1. (WIN-29) Release 4.1.1

    This commit updates the changelog and metadata.json for release.
    jpogran committed Sep 22, 2017
    Configuration menu
    Copy the full SHA
    0da5277 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #115 from jpogran/release

    (WIN-29) Release 4.1.1
    glennsarti authored Sep 22, 2017
    Configuration menu
    Copy the full SHA
    b020011 View commit details
    Browse the repository at this point in the history
Loading