Joel Kaasinen
|
c3a3ca9f95
|
feat: change syntax for :request parameter coercion default schema
use :request :body instead of :request :content :default for symmetry
with :response
|
2023-03-06 10:54:24 +02:00 |
|
Joel Kaasinen
|
7842160656
|
Merge remote-tracking branch 'origin/master' into openapi
|
2023-03-03 14:43:23 +02:00 |
|
Joel Kaasinen
|
2d60702769
|
fix: per-content-type openapi w/ spec
|
2023-03-03 14:15:31 +02:00 |
|
Joel Kaasinen
|
c8d679c6b3
|
feat: per-content-type request/response coercions
implemented on the reitit-core level so individual coercions don't
need changes
syntax:
{:parameters {:request {:content {"application/edn" [:map ...]}}}
:responses {200 {:content {"application/edn" [:map ...]}}}}
|
2023-03-03 14:15:31 +02:00 |
|
Tommi Reiman
|
47f1ee0c84
|
0.6.0
|
2023-02-21 15:17:00 +02:00 |
|
Ilmo Raunio
|
310dcd0e99
|
Merge pull request #581 from metosin/add-support-for-fragment-parameters-2
Add reitit-frontend support for fragment string
|
2023-02-21 15:05:25 +02:00 |
|
Juho Teperi
|
2494f702d9
|
Read fragment string without decoding
Users can use Malli decoding to control decoding per schema.
|
2023-02-16 13:13:48 +02:00 |
|
Juho Teperi
|
83c31e35bc
|
Revert "Revert "Merge pull request #554 from just-sultanov/add-support-for-fragment-parameters""
This reverts commit 4d1b00edfa.
|
2023-02-16 11:53:27 +02:00 |
|
Tommi Reiman
|
d1bb44a88f
|
Merge branch 'master' into reloading-ring-handler
|
2023-01-22 14:30:06 +02:00 |
|
Tommi Reiman
|
0648296315
|
Merge branch 'master' into feature/openapi
|
2023-01-22 14:29:22 +02:00 |
|
Tommi Reiman
|
3fd20f2294
|
reloading-ring-handler
|
2023-01-22 14:15:08 +02:00 |
|
Tommi Reiman
|
8e1e7e62ca
|
fix spec tests + format
|
2023-01-21 10:58:53 +02:00 |
|
Tommi Reiman
|
f27c2fc2aa
|
clean
|
2023-01-21 10:56:42 +02:00 |
|
Tommi Reiman
|
98a4d9b447
|
:meta-merge-fn -> :meta-merge
|
2023-01-21 10:56:42 +02:00 |
|
Tommi Reiman
|
3ec5acc7a1
|
Merge pull request #582 from ilmoraunio/issue-565
Include query-string as part of location header in redirect-trailing-slash-handler
|
2023-01-21 10:51:20 +02:00 |
|
Tommi Reiman
|
22fb9810a7
|
Merge pull request #552 from frwdrik/patch-1
Remove redundant s/and
|
2023-01-21 10:43:26 +02:00 |
|
Ilmo Raunio
|
0870b20a05
|
Add query-string to redirect-trailing-slash-handler
|
2023-01-20 00:20:10 +02:00 |
|
Juho Teperi
|
4d1b00edfa
|
Revert "Merge pull request #554 from just-sultanov/add-support-for-fragment-parameters"
This reverts commit c2c267f4d8, reversing
changes made to 8087522b82.
|
2023-01-18 18:38:47 +02:00 |
|
Tommi Reiman
|
c2c267f4d8
|
Merge pull request #554 from just-sultanov/add-support-for-fragment-parameters
Add support for fragment parameters in the reitit-frontend module
|
2023-01-09 17:33:24 +02:00 |
|
Tommi Reiman
|
42e988e518
|
Merge branch 'master' into support-operationid
|
2023-01-09 17:27:00 +02:00 |
|
Tommi Reiman
|
23c20dc44e
|
Merge pull request #557 from handerpeder/master
Polish pedestal chains when printing context diffs
|
2023-01-09 17:18:39 +02:00 |
|
Tommi Reiman
|
af441e6154
|
Merge pull request #569 from SagaHealthcareIT/swagger-operationid-support
Swagger: support operationId in generated swagger json
|
2023-01-09 17:14:10 +02:00 |
|
Tommi Reiman
|
26a581298a
|
Merge pull request #561 from pfeodrippe/meta-merge
add `:meta-merge-fn` option
|
2023-01-09 16:39:12 +02:00 |
|
Ben Sless
|
24f38e0dfa
|
Unroll merge and hash-map coercion
|
2022-12-06 21:35:26 +02:00 |
|
Ben Sless
|
8398c98595
|
Add serialize-failed-result coercion option
False by default, if true will serialize the failed coercion result in
the error message
|
2022-12-06 21:34:13 +02:00 |
|
Ben Sless
|
bc4443a935
|
Remove schema and errors from default malli coercion error keys
|
2022-12-06 21:20:48 +02:00 |
|
Fredrik Vaeng Røtnes
|
edee97a550
|
Rename variable handle -> handler
|
2022-12-05 13:06:27 +00:00 |
|
Jesse Dowell
|
148fa2167b
|
Swagger: support operationId in generated swagger json
|
2022-11-13 18:54:43 -05:00 |
|
Toni Väisänen
|
c69b4cde3a
|
Handle empty seq as empty string in query-string
example:
instead of
```clojure
(query-string {:nil nil
:vec []
:seq-empty '()})
;; => "nil=&&"
```
now
```clojure
(query-string {:nil nil
:vec []
:seq-empty '()})
;; => "nil=&vec=&seq-empty="
```
|
2022-10-12 13:24:07 +03:00 |
|
Enzzo Cavallo
|
c576b47634
|
OpenAPI V3 Support
|
2022-09-05 03:21:53 -03:00 |
|
Paulo Feodrippe
|
fc73d02e01
|
add :meta-merge-fn option
|
2022-08-11 07:55:15 -04:00 |
|
Peder Refsnes
|
4e14b1f05e
|
Polish pedestal chains when printing context diffs
|
2022-07-19 22:33:28 +02:00 |
|
Ilshat Sultanov
|
25a051b003
|
Add support for fragment parameters in the reitit-frontend module
We have to process the fragment parameters due to the fact that the authorization server returns a callback in the following format:
`https://example.com/oauth/google/callback#access_token=foo&refresh_token=bar&provider_token=baz&token_type=bearer&expires_in=3600`
Links:
- https://www.rfc-editor.org/rfc/rfc6749#section-4.2
- https://www.rfc-editor.org/rfc/rfc6749#section-4.2.2
|
2022-06-15 23:38:51 +05:00 |
|
Fredrik Vaeng Røtnes
|
aeab5b96a6
|
Remove redundant s/and
|
2022-05-09 10:36:40 +00:00 |
|
Tommi Reiman
|
3dff4c84aa
|
0.5.18
|
2022-04-05 21:38:04 +03:00 |
|
Tommi Reiman
|
4e40d3e2c9
|
Merge pull request #537 from frwdrik/master
Save three seq constructions
|
2022-04-05 21:34:56 +03:00 |
|
Tommi Reiman
|
40bf16857f
|
doc the option
|
2022-04-05 21:22:36 +03:00 |
|
Tommi Reiman
|
1ecfd1ae02
|
CHANGELOG, pass match too
|
2022-04-05 17:55:09 +03:00 |
|
Tommi Reiman
|
9e4b420fc8
|
on-coercion-error
|
2022-04-05 17:33:25 +03:00 |
|
Fredrik Vaeng Røtnes
|
43d6f52208
|
Update spec.cljc
Stray character
|
2022-03-18 15:55:20 +00:00 |
|
Tommi Reiman
|
f0405adc02
|
0.5.17
|
2022-03-10 20:15:43 +02:00 |
|
Tommi Reiman
|
b0602d60c9
|
one more time
|
2022-03-10 15:21:15 +02:00 |
|
Tommi Reiman
|
f9841363c5
|
faster impl, removes all intermediate steps + cleanup
|
2022-03-10 14:21:39 +02:00 |
|
Tommi Reiman
|
1e5fb601da
|
fix #538
|
2022-03-10 13:42:53 +02:00 |
|
Fredrik Vaeng Røtnes
|
7033abc530
|
Save three seq constructions
|
2022-03-05 01:46:03 +01:00 |
|
Tommi Reiman
|
382661a6c4
|
0.5.16
|
2022-02-15 16:55:08 +02:00 |
|
Tommi Reiman
|
0a872d8f3a
|
0.5.16-SNAPSHOT
|
2022-02-14 17:52:32 +02:00 |
|
Tommi Reiman
|
f3dee769fb
|
format-ns
|
2022-02-14 16:59:20 +02:00 |
|
Tommi Reiman
|
2aba5610c7
|
format
|
2022-02-14 16:58:10 +02:00 |
|
Tommi Reiman
|
d0f7126491
|
add support for malli-lite
|
2022-02-14 16:45:14 +02:00 |
|