Skip to content

Commit

Permalink
Merge pull request #700 from bugsnag/pin-uri
Browse files Browse the repository at this point in the history
Fix uri version to avoid command servlet errors
  • Loading branch information
Cawllec authored Nov 13, 2024
2 parents 502ac90 + e7721de commit a6471e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 9.18.1 - 2024/11/13

## Fixes

- Pin "uri" dependency to avoid v1.0.0 release bug [700](https://github.com/bugsnag/maze-runner/pull/700)

# 9.18.0 - 2024/11/07

## Enhancements
Expand Down
1 change: 1 addition & 0 deletions bugsnag-maze-runner.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'test-unit', '~> 3.5.2'
spec.add_dependency 'rack', '~> 2.2'
spec.add_dependency 'webrick', '~> 1.7.0'
spec.add_dependency 'uri', '~> 0.13.0'

# Appium 12/Selenium 4 enforce the use of W3C
if ENV['USE_LEGACY_DRIVER']
Expand Down
2 changes: 1 addition & 1 deletion lib/maze.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Glues the various parts of MazeRunner together that need to be accessed globally,
# providing an alternative to the proliferation of global variables or singletons.
module Maze
VERSION = '9.18.0'
VERSION = '9.18.1'

class << self
attr_accessor :check, :driver, :internal_hooks, :mode, :start_time, :dynamic_retry, :public_address,
Expand Down

0 comments on commit a6471e9

Please sign in to comment.