Skip to content

Commit

Permalink
Merge branch 'main' into tms/appium-reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Kirkland committed Mar 4, 2025
2 parents 902456a + b10eb9a commit dc74407
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# 9.24.0 - 2025/02/??
# 9.24.0 - 2025/03/04

## Enhancements

- Log name of device used in BitBar sessions [726](https://github.com/bugsnag/maze-runner/pull/726)
- Add the `breakpad-symbol` endpoint to the mock server [727](https://github.com/bugsnag/maze-runner/pull/727)

# 9.23.2 - 2025/02/20

Expand Down
1 change: 1 addition & 0 deletions lib/maze/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ def start
server.mount '/ndk-symbol', Servlets::Servlet, :sourcemaps
server.mount '/proguard', Servlets::Servlet, :sourcemaps
server.mount '/dsym', Servlets::Servlet, :sourcemaps
server.mount '/breakpad-symbol', Servlets::Servlet, :sourcemaps
server.mount '/command', Servlets::CommandServlet
server.mount '/commands', Servlets::AllCommandsServlet
server.mount '/logs', Servlets::LogServlet
Expand Down
2 changes: 2 additions & 0 deletions test/unit/maze/server_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def test_start_cleanily_configured_bind_address
mock_http_server.expects(:mount).with('/ndk-symbol', any_parameters).once
mock_http_server.expects(:mount).with('/proguard', any_parameters).once
mock_http_server.expects(:mount).with('/dsym', any_parameters).once
mock_http_server.expects(:mount).with('/breakpad-symbol', any_parameters).once
mock_http_server.expects(:mount).with('/command', any_parameters).once
mock_http_server.expects(:mount).with('/commands', any_parameters).once
mock_http_server.expects(:mount).with('/logs', any_parameters).once
Expand Down Expand Up @@ -102,6 +103,7 @@ def test_start_on_retry
mock_http_server.expects(:mount).with('/ndk-symbol', any_parameters).once
mock_http_server.expects(:mount).with('/proguard', any_parameters).once
mock_http_server.expects(:mount).with('/dsym', any_parameters).once
mock_http_server.expects(:mount).with('/breakpad-symbol', any_parameters).once
mock_http_server.expects(:mount).with('/logs', any_parameters).once
mock_http_server.expects(:mount).with('/reflect', any_parameters).once
mock_http_server.expects(:mount).with('/command', any_parameters).once
Expand Down

0 comments on commit dc74407

Please sign in to comment.