-
Notifications
You must be signed in to change notification settings - Fork 68
Comparing changes
Open a pull request
base repository: puppetlabs/puppetlabs-chocolatey
base: v6.0.1
head repository: puppetlabs/puppetlabs-chocolatey
compare: v6.1.0
- 19 commits
- 30 files changed
- 11 contributors
Commits on Apr 26, 2021
-
Configuration menu - View commit details
-
Copy full SHA for a8c7d97 - Browse repository at this point
Copy the full SHA a8c7d97View commit details
Commits on Apr 27, 2021
-
Merge pull request #259 from puppetlabs/pdksync_pdk_update
pdksync - (maint) Running pdk update
Configuration menu - View commit details
-
Copy full SHA for e37ef8d - Browse repository at this point
Copy the full SHA e37ef8dView commit details
Commits on Jun 7, 2021
-
Daniel Carabas committed
Jun 7, 2021 Configuration menu - View commit details
-
Copy full SHA for 1d74a72 - Browse repository at this point
Copy the full SHA 1d74a72View commit details -
Merge pull request #265 from puppetlabs/pdksync_pdkupdate
pdksync - (maint) PDKSync - PDK Update
Configuration menu - View commit details
-
Copy full SHA for f61aac5 - Browse repository at this point
Copy the full SHA f61aac5View commit details
Commits on Jul 20, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 6a0bd1f - Browse repository at this point
Copy the full SHA 6a0bd1fView commit details
Commits on Jul 21, 2021
-
Merge pull request #267 from puppetlabs/pdksync_iac-1149
pdksync - (maint) - Updating Contribution Guidelines
Configuration menu - View commit details
-
Copy full SHA for 3dae35d - Browse repository at this point
Copy the full SHA 3dae35dView commit details
Commits on Sep 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 1a3dc2c - Browse repository at this point
Copy the full SHA 1a3dc2cView commit details
Commits on Sep 27, 2021
-
Merge pull request #269 from rico89/feature/version_range
add support for version range
Configuration menu - View commit details
-
Copy full SHA for 4440ac2 - Browse repository at this point
Copy the full SHA 4440ac2View commit details
Commits on Feb 14, 2022
-
(MODULES-11206) Update dependencies to allow stdlib 8.x
This commit updates the dependency on `puppetlabs/stdlib` to allow for 8.x versions.
Configuration menu - View commit details
-
Copy full SHA for 158261b - Browse repository at this point
Copy the full SHA 158261bView commit details
Commits on Feb 16, 2022
-
Merge pull request #276 from Sharpie/update-stdlib-dependency
(MODULES-11206) Update dependencies to allow stdlib 8.x
Configuration menu - View commit details
-
Copy full SHA for 4517d9b - Browse repository at this point
Copy the full SHA 4517d9bView commit details -
(maint) Replace chocolatey::params with hiera data
The chocolatey::params class in an internal detail with low value for end users but cannot be made private for technical reasons so appears in end-users documentation. It is only useful to provide a default value to $chocolatey::choco_install_location when the fact choco_install_path is not defined, which can be achieved using hiera.
Configuration menu - View commit details
-
Copy full SHA for f4307b1 - Browse repository at this point
Copy the full SHA f4307b1View commit details -
(maint) Fix CI when using local facts
This is fine when the CI is exercised in GitHub Action environment but fails on my local machine with some reference to my user local facts overrides: ``` Failures: 1) Puppet::Type::Package::ProviderChocolatey self.read_choco_features when getting sources from the config file matches the count of sources in the config Failure/Error: ENV['ChocolateyInstall'] = Facter.value('choco_install_path') || PuppetX::Chocolatey::ChocolateyInstall.install_path #<File (class)> received :read with unexpected arguments expected: ("c:\\choco.config") got: ("/home/romain/.puppetlabs/opt/facter/facts.d/customer.yaml") # ./lib/puppet_x/chocolatey/chocolatey_common.rb:56:in `set_env_chocolateyinstall' # ./lib/puppet/provider/package/chocolatey.rb:63:in `read_choco_features' # ./spec/unit/puppet/provider/package/chocolatey_spec.rb:164:in `block (4 levels) in <top (required)>' 2) Puppet::Type::Package::ProviderChocolatey self.read_choco_features when getting sources from the config file contains xml elements Failure/Error: ENV['ChocolateyInstall'] = Facter.value('choco_install_path') || PuppetX::Chocolatey::ChocolateyInstall.install_path #<File (class)> received :read with unexpected arguments expected: ("c:\\choco.config") got: ("/home/romain/.puppetlabs/opt/facter/facts.d/customer.yaml") # ./lib/puppet_x/chocolatey/chocolatey_common.rb:56:in `set_env_chocolateyinstall' # ./lib/puppet/provider/package/chocolatey.rb:63:in `read_choco_features' # ./spec/unit/puppet/provider/package/chocolatey_spec.rb:173:in `block (4 levels) in <top (required)>' ``` Stub set_env_chocolateyinstall like done is the other tests to fix the issue.Configuration menu - View commit details
-
Copy full SHA for cc75194 - Browse repository at this point
Copy the full SHA cc75194View commit details -
Merge pull request #272 from smortex/hiera
Replace chocolatey::params with hiera data
Configuration menu - View commit details
-
Copy full SHA for f47993a - Browse repository at this point
Copy the full SHA f47993aView commit details -
(MODULES-11255) Add basic tasks to manage packages
Add a task to list current packages: C:\> bolt task run chocolatey::status -t localhost Started on localhost... Finished on localhost: {"status":[{"package":"chocolatey","version":"0.11.3"},{"package":"puppet-bolt","version":"3.20.0"}]} Successful on 1 target: localhost Ran on 1 target in 2.6 sec C:\> Add tasks to install, upgrade and uninstall packages: C:\> bolt task run chocolatey action=install package=pdk version=2.0.0.0 -t localhost C:\> bolt task run chocolatey action=upgrade package=pdk -t localhost C:\> bolt task run chocolatey action=uninstall package=pdk -t localhost Add a task to pin/unpin packages: C:\> bolt task run chocolatey::pin action=add package=puppet-bolt -t localhost C:\> bolt task run chocolatey::pin action=list -t localhost Started on localhost... Finished on localhost: {"status":[{"package":"puppet-bolt","version":"3.20.0"}]} Successful on 1 target: localhost Ran on 1 target in 2.6 sec C:\> bolt task run chocolatey::pin action=remove package=pdk -t localhost Add a task to list outdated packages: C:\> bolt task run chocolatey::outdated -t localhost Started on localhost... Finished on localhost: {"status":[{"package":"puppet-bolt","version":"3.20.0","available_version":"3.21.0","pinned":false}]} Successful on 1 target: localhost Ran on 1 target in 10.14 sec C:\>Configuration menu - View commit details
-
Copy full SHA for 8bdb4ac - Browse repository at this point
Copy the full SHA 8bdb4acView commit details
Commits on Feb 21, 2022
-
Merge pull request #273 from smortex/tasks
(MODULES-11255) Add basic tasks to manage packages
Configuration menu - View commit details
-
Copy full SHA for a694bef - Browse repository at this point
Copy the full SHA a694befView commit details
Commits on Feb 25, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 7afa0b9 - Browse repository at this point
Copy the full SHA 7afa0b9View commit details
Commits on Mar 1, 2022
-
Merge pull request #278 from puppetlabs/pdksync_FM-8922/main/add_wind…
…ows_2022_support pdksync - (FM-8922) - Add Support for Windows 2022
Configuration menu - View commit details
-
Copy full SHA for f60d68a - Browse repository at this point
Copy the full SHA f60d68aView commit details
Commits on Mar 8, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 8a66616 - Browse repository at this point
Copy the full SHA 8a66616View commit details -
Configuration menu - View commit details
-
Copy full SHA for b90eaef - Browse repository at this point
Copy the full SHA b90eaefView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v6.0.1...v6.1.0