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: voxpupuli/beaker-hostgenerator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.10.0
Choose a base ref
...
head repository: voxpupuli/beaker-hostgenerator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.11.0
Choose a head ref
  • 10 commits
  • 781 files changed
  • 2 contributors

Commits on Jan 27, 2022

  1. Copy the full SHA
    7a3dc07 View commit details
  2. Drop packaging_platform where it matches platform

    Beaker already returns the platform when packaging_platform isn't set.
    This means specifying if it matches is redundant.
    ekohl committed Jan 27, 2022
    Copy the full SHA
    d792c69 View commit details
  3. Do not generate empty entries for pe_*

    This is not needed to specify and only increases the generated data.
    ekohl committed Jan 27, 2022
    Copy the full SHA
    395eccf View commit details
  4. Regenerate fixtures

    ekohl committed Jan 27, 2022
    Copy the full SHA
    6a70899 View commit details
  5. Merge pull request #239 from ekohl/drop-redundant-packaging-platform

    Drop redundant attributes from generated data
    ekohl authored Jan 27, 2022
    Copy the full SHA
    0edd3d0 View commit details
  6. Add CentOS 9 support

    ekohl committed Jan 27, 2022
    Copy the full SHA
    b7fe509 View commit details
  7. Merge pull request #225 from ekohl/centos9

    Add CentOS 9 support
    ekohl authored Jan 27, 2022
    Copy the full SHA
    605320e View commit details
  8. Use CentOS Stream 8 instead of CentOS Linux 8

    CentOS Linux 8 went End Of Life at the end of 2021 and at the end of
    January it will disappear from the mirrors. Stream is the supported
    replacement. By using the Vagrant box and container image it should mean
    most testing will not notice the difference.
    ekohl committed Jan 27, 2022
    Copy the full SHA
    a4bdd3b View commit details
  9. Merge pull request #240 from ekohl/use-centos-stream-8

    Use CentOS Stream 8 instead of CentOS Linux 8
    bastelfreak authored Jan 27, 2022
    Copy the full SHA
    600c72b View commit details
  10. Release 1.11.0

    ekohl committed Jan 27, 2022
    Copy the full SHA
    067d1ed View commit details
Showing 781 changed files with 325 additions and 5,609 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,19 @@

All notable changes to this project will be documented in this file.

## [1.11.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.11.0) (2022-01-27)

[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.10.0...1.11.0)

**Implemented enhancements:**

- Use CentOS Stream 8 instead of CentOS Linux 8 [\#240](https://github.com/voxpupuli/beaker-hostgenerator/pull/240) ([ekohl](https://github.com/ekohl))
- Add CentOS 9 support [\#225](https://github.com/voxpupuli/beaker-hostgenerator/pull/225) ([ekohl](https://github.com/ekohl))

**Merged pull requests:**

- Drop redundant attributes from generated data [\#239](https://github.com/voxpupuli/beaker-hostgenerator/pull/239) ([ekohl](https://github.com/ekohl))

## [1.10.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.10.0) (2021-12-10)

[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.9.0...1.10.0)
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ source ENV['GEM_SOURCE'] || 'https://rubygems.org'

gemspec

if File.exists? "#{__FILE__}.local"
if File.exist? "#{__FILE__}.local"
eval(File.read("#{__FILE__}.local"), binding)
end

Loading