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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.36.0
Choose a base ref
...
head repository: voxpupuli/beaker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.37.0
Choose a head ref
  • 12 commits
  • 14 files changed
  • 5 contributors

Commits on Jun 18, 2018

  1. (BKR-1168) Early exit from CLI on --help/--version/--parse-only

    Previous "dry-run"-esque behavior was leaky, resulting in a not-so-dry run.
    
    - Subcommand spec tests for exec should not actually call cli.execute!, so intercept them.
    - Process all early-exit flags first
    Dakta committed Jun 18, 2018
    Configuration menu
    Copy the full SHA
    876df07 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2018

  1. (BKR-1168) Update CHANGELOG.md

    Dakta committed Jun 21, 2018
    Configuration menu
    Copy the full SHA
    ce2c3e2 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2018

  1. Merge pull request #1523 from Dakta/BKR-1168

    (BKR-1168) Exit early on --version, --help, and --parse-only
    kevpl authored Jun 22, 2018
    Configuration menu
    Copy the full SHA
    a01b573 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2018

  1. (maint) allow loggin of frozen strings

    If a frozen string was passed into the logging routines, it would
    fail with an exception about strings being frozen.  This change
    allows frozen strings to be logged.  For example:
    
    irb(main):001:0> foo = "hello there"
    => "hello there"
    irb(main):002:0> foo.freeze
    => "hello there"
    irb(main):003:0> foo.to_s.force_encoding('UTF-8')
    RuntimeError: can't modify frozen String
    	from (irb):3:in `force_encoding'
    	from (irb):3
    	from /Users/jnewman/.rbenv/versions/2.3.1/bin/irb:11:in `<main>'
    irb(main):004:0> foo.to_s.dup.force_encoding('UTF-8')
    => "hello there"
    jonathannewman committed Jun 26, 2018
    Configuration menu
    Copy the full SHA
    b59f7b3 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2018

  1. Merge pull request #1527 from jonathannewman/maint-allow-logging-of-f…

    …rozen-strings
    
    (maint) allow logging of frozen strings
    kevpl authored Jun 27, 2018
    Configuration menu
    Copy the full SHA
    a565e1a View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2018

  1. (BKR-816) Expand contribution guidelines with PR requirements

    Also includes a rebase workflow.
    Dakta committed Jun 28, 2018
    Configuration menu
    Copy the full SHA
    8ab012f View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2018

  1. (BKR-1481) Introduce Beaker::Shared::FogFileParser.parse_fog_file() (#…

    …1526)
    
    * (BKR-1481) Introduce Beaker::Shared::FogFileParser.parse_fog_file()
    
    Introduces a shared module for parsing .fog credential files, with descriptive error messages and spec coverage.
    
    * (BKR-1481) Fix environment vairable handling
    
    Also updates examples in documentation.
    
    * (BKR-1481) Rename FogFileParser to FogCredentials
    
    * (BKR-1481) Refactor .fog credentials exception handling
    
    * (BKR-1481) Don't forget the changelog
    Dakta authored and kevpl committed Jul 2, 2018
    Configuration menu
    Copy the full SHA
    63799b5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1530 from Dakta/BKR-816

    (BKR-816) Expand contribution guidelines with PR requirements
    kevpl authored Jul 2, 2018
    Configuration menu
    Copy the full SHA
    11881cc View commit details
    Browse the repository at this point in the history
  3. (BKR-1393) Update documentation on multiple arguments to subcommand e…

    …xec (#1528)
    
    * (BKR-1393) Update exec help description
    
    Clarify behavior to support passing multiple test files, directories, or suites as a comma-separated list, as long as that list is homogeneous.
    
    * (BKR-1393) Update docs/tutorials/subcommands.md
    
    Clarify that exec accepts comma-separated list of tests.
    Dakta authored and kevpl committed Jul 2, 2018
    Configuration menu
    Copy the full SHA
    dcee653 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2018

  1. (MAINT) release 3.37.0

    [skip ci]
    kevpl committed Jul 11, 2018
    Configuration menu
    Copy the full SHA
    c17eb57 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1533 from kevpl/release_3.37.0

    (MAINT) release 3.37.0
    kevpl authored Jul 11, 2018
    Configuration menu
    Copy the full SHA
    9980d5b View commit details
    Browse the repository at this point in the history
  3. (GEM) update beaker version to 3.37.0

    Jenkins committed Jul 11, 2018
    Configuration menu
    Copy the full SHA
    1fcd090 View commit details
    Browse the repository at this point in the history
Loading