Miikka Koskinen
Miikka Koskinen
This patch fixes the problem reported in issue #31 where the riddley JAR would include the source files in the JAR root. After this change, the JAR contents look like...
I needed to have some extra control over text in the dropdown when there are more than `max-labels` items, so I made the following changes: - Make the ellipsis after...
Sometimes there are test failures that go away when you re-run the tests: https://github.com/metosin/malli/runs/1727181659?check_suite_focus=true#step:5:184 https://github.com/metosin/malli/blob/3fff19bd224b0490c120bd381fdeceb086ea2483/test/malli/core_test.cljc#L1730-L1760 Two things need to be done: 1. The source of randomness need to be instrumented...
I tried to run the command against a couple of projects, for example [metosin/metosin-common](https://github.com/metosin/metosin-common), and for all of them the result is the same: ``` % boot show --verify-deps java.lang.Thread.run...
Muuntaja does not encode the response if a `Content-Type` header has been set. Header names are case-insensitive but Muuntaja's check is case-sensitive, so if you set the header `content-type`, it...
As pointed out in #205, the JSON Schema output does not have a top-level key `"$schema"`. According to [the draft-04 spec](https://tools.ietf.org/html/draft-zyp-json-schema-04#section-6): > The "$schema" keyword is both used as a...
```clojure (require 'ring.swagger.json-schema '[schema.core :as s] '[schema-tools.core :as st]) (ring.swagger.json-schema/->swagger s/Int) ;; => {:type "integer", :format "int64"} (ring.swagger.json-schema/->swagger (st/default s/Int 32)) ;; => IllegalArgumentException don't know how to convert schema_tools.impl.Default@34fec257...
`site-defaults` enables both the session middleware and [ring-anti-forgery](https://github.com/ring-clojure/ring-anti-forgery). The session middleware [leaks sessions by default](https://github.com/ring-clojure/ring/issues/363) and ring-anti-forgery uses sessions to store the anti-CSRF-tokens it creates. Thus, even if you don't...
If I change dependencies the dependencies while alt-test is already running – for example by using `(set-env! :dependencies ...)` via REPL – it does not affect the test runner. This...
**Is your feature request related to a problem? Please describe.** AWS Lambda now has [support for Python 3.12](https://aws.amazon.com/blogs/compute/python-3-12-runtime-now-available-in-aws-lambda/). It would be great to have Python 3.12 support in the Python...