Joe

Results 11 issues of Joe

For example: ```elixir EctoFields.URL.cast("http://example.com:1234/") :error ``` Problem appears to be at https://github.com/jerel/ecto_fields/blob/master/lib/fields/url.ex#L60

Adds support for Windows containers (as proposed in #360 ). Unlike Linux-flavoured containers, Windows insists that a containers base OS and host OS version must match precisely. Therefore I've added...

We have a dependency on Windows and having support for Windows containers in both Erlang and subsequently Elixir would be very useful. Is this something that has been considered already?...

**Is your feature request related to a problem? Please describe.** We want to ensure the integrity of windows installer downloads. We're investigating creation of a windows container base image and...

team:VM
enhancement
help wanted
team:PO

- [x] Matrix github actions - [x] Add credo for linting - [x] Mix format - [x] Add docker compose for mongo, including replicaset support I've added support for matrix...

There are a number of things I believe we need to do to bring this repo back to life for the community: - [x] Restore some kind of CI solution...

Note:Discussion

- [ ] Is `examples/aws_x509.ex` still relevant and current? It needs docs in any case. - [ ] Are the hex.pm docs up to date?

Correct `example_configs` directory. Looks like my editor has stripped some unnecessary whitespace too. I have not yet signed a contributor agreement; e-mail is in your inbox as requested.

If I specify a config of: ```elixir config :gremlex, host: "127.0.0.1", port: 8182, # path: "/gremlin", pool_size: 10, secure: false ``` (With the `path` property commented out), then Gremlex hangs...

Given this script: ```elixir Mix.install([ {:req, "0.3.1"} ]) require Logger Req.new(url: "https://httpbin.org/status/408", params: [test: "a"]) |> Req.Request.append_request_steps( log_request: fn request -> Logger.debug("#{request.method} #{URI.to_string(request.url)}") request end ) |> Req.get!() ``` …...