Scott Minor
Scott Minor
This PR allows the caller to inject a `requests.Session` object that the Nomad client should use to make all requests, in case the client is used in an environment where...
With 3.2.0, the following case prints `test successful`: ```rust use chess::{Board, BoardStatus, ChessMove, Square}; let mut board = Board::default(); assert_eq!(board.status(), BoardStatus::Ongoing); board = board.make_move_new(ChessMove::from_san(&board, "e4").expect("invalid: e4")); assert_eq!(board.status(), BoardStatus::Ongoing); board =...
This change modifies HTTP requests made via remote-write to set the `Host` field to the TLS config's `ServerName`, when a TLS config is present. Otherwise, the empty default is maintained,...
This PR updates all the Go dependencies to the latest versions. Very few breaking source changes occur - only a `kubectl` constructor function is removed, and a package is renamed....
This change performs a large cleanup, attempting to migrate this repo to building using the latest major version of bazel, as well as to using bzlmod for dependencies instead of...
This change adds the Apache 2.0 license to the project, to resolve #59. Apache 2.0 is my best guess at an appropriate license, following other such projects in the same...
There is no license included with the source code currently, nor is there any mention of a license in the README. This makes it difficult to use as a dependency...
This PR allows the `docker.container` operation to tear down and recreate the container when operation arguments change, instead of reporting `No change` and doing nothing. This is intended to reduce...
This change adds an `args` parameter to the `docker.container` operation that passes said supplied args to the container at creation time. This allows the operation to support container images that...