Commits on Apr 19, 2023

  1. (MODULES-11418) Resuable workflows for unit tests

    This commit switches the GitHub Actions workflows for unit tests
    over to using the reusable workflows in
    puppetlabs/phoenix-github-actions.
    mhashizume committed Apr 19, 2023
    Configuration menu
    Copy the full SHA
    e89d545 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2023

  1. Merge pull request #62 from mhashizume/MODULES-11418/main/reusable-wo…

    …rkflows
    
    (MODULES-11418) Resuable workflows for unit tests
    joshcooper authored Apr 20, 2023
    Configuration menu
    Copy the full SHA
    849996a View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2023

  1. (maint) Update commit check

    This commit updates the commits Rake check to include commit summaries
    that begin with the Puppet Agent (PA) Jira project and removes
    references to a non-existent CONTRIBUTING.md.
    mhashizume committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    79590c7 View commit details
    Browse the repository at this point in the history
  2. (PA-5804) Update Checkout GitHub Action

    The Checkout GitHub Action v3 uses Node 16, which hit end-of-life on
    September 11, 2023.
    
    This commit updates all instances of the Checkout Action from v3 to
    v4.
    mhashizume committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    f43a0b6 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2023

  1. Merge pull request #64 from mhashizume/PA-5804/main/checkout-action

    (PA-5804) Update Checkout GitHub Action
    cthorn42 authored Oct 4, 2023
    Configuration menu
    Copy the full SHA
    07f0afd View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. (PA-5395) Add Jira workflow

    This commit adds a GitHub Actions workflow to export issues from GitHub
    into Jira.
    mhashizume committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    74b41a1 View commit details
    Browse the repository at this point in the history
  2. (PA-5395) Use reusable static code analysis

    This commit updates the static code analysis GitHub Actions workflow
    from using a copy in this repository to a resuable copy in the Phoenix
    team centralized GitHub Actions repository.
    
    In addition, this removes the commits Rake task as it is no longer used
    in the reusable version of this workflow.
    mhashizume committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    33a09a2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6ea7182 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #65 from mhashizume/PA-5395/main/github_issues

    (PA-5395) Issues housekeeping
    joshcooper authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    e3ad954 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Update to PDK template 3.0.1

    This commit updates this module to PDK template 3.0.1.
    
    In addition to the boilerplate changes, this commit also:
    
    - Updates the "auto release" GitHub Action to "release prep," reflecting
      upstream change (puppetlabs/pdk-templates@c3f57b7).
    - Removes the github_changelog_generator and concurrent-ruby gems, which
      were previously needed for the release process but are no longer
      necessary in newer release processes in the PDK template.
    mhashizume committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    7c9dd25 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0bb797f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    63b7264 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #67 from mhashizume/PA-5963/main/concurrent-ruby

    Update to PDK template 3.0.1
    joshcooper authored Jan 10, 2024
    Configuration menu
    Copy the full SHA
    0ef4e11 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2024

  1. Replace assert_no_match

    The assert_no_match method in Beaker was long deprecated then eventually
    removed altogether in voxpupuli/beaker@6282311
    
    This commit updates assert_no_match to refute_match.
    mhashizume committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    6cb8f6d View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. Update stdout and stderr method calls

    In Beaker < 5, you could access stdout and stderr of remote machines
    through either standalone stdout and stderr methods or by accessing the
    @Result instance variable.
    
    voxpupuli/beaker@73a31c7 changed the on method so it no longer returned
    an instance variable.
    
    This commit updates Beaker tests to access stdout and stderr through a
    block argument.
    mhashizume committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    63c1d31 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #69 from mhashizume/PA-5022/main/beaker-deprecated

    Update deprecated Beaker methods
    cthorn42 authored Feb 2, 2024
    Configuration menu
    Copy the full SHA
    b7f9a82 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2024

  1. zfs_specs: fix typo in "jailed"

    Signed-off-by: Louis Sautier <sautier.louis@gmail.com>
    sbraz committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    c742551 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2024

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

Commits on Feb 14, 2024

  1. Merge pull request #72 from tvpartytonight/PA-5966

    Stop using legacy facts
    joshcooper authored Feb 14, 2024
    Configuration menu
    Copy the full SHA
    fe7ddc1 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

  1. Merge pull request #70 from sbraz/jailed_typo

    zfs_specs: fix typo in "jailed"
    mhashizume authored Feb 16, 2024
    Configuration menu
    Copy the full SHA
    2d5bebd View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2024

  1. (PA-5781) Use Beaker 5

    This commit updates .sync.yml and Gemfile to use newer beaker dependencies:
    beaker 5.x
    beaker-abs 1.x
    beaker-puppet 3.x
    
    This commit also removes beaker-pe.
    AriaXLi committed Feb 20, 2024
    Configuration menu
    Copy the full SHA
    4dd4073 View commit details
    Browse the repository at this point in the history
  2. (PA-5781) Configure host type as AIO

    Previously, when running with beaker 5 and latest beaker-puppet, tests failed
    with:
    
        cannot add defaults of type pe for host redhat7-64-1 (add_pe_defaults_on not present)
    
    The error came from beaker-puppet when it tried to configure the host as a PE
    agent[1].
    
    The root cause is beaker defaults its options to `pe`[2]. When `beaker-puppet`
    calls the `configure_type_defaults_on` method, it calls the appropriate
    `add_<type>_defaults_on` method. This works when using beaker 4 as `beaker-pe`
    is pulled in as a dependency and its `add_pe_defaults_on` method[3] is included
    into the tests.
    
    However, when running with beaker5, beaker-pe is not loaded, so the method is
    undefined. It appears beaker-puppet_install_helper is responsible for the
    whether beaker-pe is loaded or not, but only when using
    beaker-puppet_install_helper 0.9.4.
    
    Since these tests don't actually depend on PE, drop beaker-pe, require
    'beaker-puppet' directly (so the install_from_build_data_url method exists) and
    configure the host type directly.
    
    [1] https://github.com/puppetlabs/beaker-puppet/blob/7175b5c1acb5cddb3a31ddcc114f09cddd3b83d0/lib/beaker-puppet/install_utils/puppet_utils.rb#L167
    [2] https://github.com/voxpupuli/beaker/blob/c61ee381d3801bad70989d9b3cbf970771e6f330/lib/beaker/options/presets.rb#L139
    [3] https://github.com/puppetlabs/beaker-pe/blob/3bfe913b8d57c805cc0c51ae899fff174224d5f5/lib/beaker-pe/install/pe_defaults.rb#L93
    
    Commit originally from joshcooper/puppetlabs-cron_core@d456d2a
    AriaXLi committed Feb 20, 2024
    Configuration menu
    Copy the full SHA
    33cd2e4 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. Merge pull request #74 from AriaXLi/PA-5781/beaker5

    (PA-5781) Use Beaker 5
    mhashizume authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    44667f1 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Limit beaker-puppet to older Rubies

    No version of beaker-puppet is compatible with Ruby >= 3.2 because of
    taint functions. Because beaker-puppet specifies that it cannot run on
    Ruby > 3.1 in its gemspec, when you run bundle install on newer
    Rubies-even when excluding the Gem group to which beaker-puppet
    belongs-Bundler errors.
    
    This commit updates the Gemfile to only list beaker-puppet if Ruby is
    less than 3.1.0.
    mhashizume committed Mar 4, 2024
    Configuration menu
    Copy the full SHA
    94800eb View commit details
    Browse the repository at this point in the history
  2. Make Vox Rake tasks conditional

    This commit updates the Rakefile to only attempt to use Vox Rake tasks
    if the voxpupuli-acceptance gem is installed.
    mhashizume committed Mar 4, 2024
    Configuration menu
    Copy the full SHA
    8330881 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

  1. Merge pull request #75 from mhashizume/PA-6049/main/release-prep

    Release prep housekeeping
    tvpartytonight authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    f2fc83b View commit details
    Browse the repository at this point in the history
  2. Release prep v1.5.0

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

    Release prep v1.5.0
    mhashizume authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    393b74c View commit details
    Browse the repository at this point in the history