aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add blob storage abstractionsv1.8.15Jakob Odersky2018-04-069-1/+417
|
* Merge pull request #142 from drivergroup/mdc-trackingv1.8.14Vlad Uspensky2018-04-041-17/+13
|\ | | | | Correct `trackingId` placement to the MDC
| * Correct `trackingId` placement to the MDCvlad2018-03-261-10/+4
| |
| * Correct `trackingId` placement to the MDCvlad2018-03-241-9/+11
| |
* | Reduce flakiness of a random-based testv1.8.13Sergey Nastich2018-04-041-1/+1
| |
* | Add `QueryOps.maybeFilter` extension, allowing to streamline query ↵Sergey Nastich2018-04-041-7/+13
| | | | | | | | modification by optional filters (#146)
* | Add enumeratum support to JSON format and generators (#144)v1.8.12Sergey Nastich2018-04-036-20/+148
| | | | | | | | | | * Add enumeratum support to JSON format and generators * Move enumeratum serializers into their own object. Add enumeratum unmarshaller. Add entities to derive JsonFormats instead of having to type them externally.
* | Merge pull request #143 from drivergroup/improve-phone-number-parsingSergey Nastich2018-03-283-28/+106
|\ \ | | | | | | SCALA-20 Add ability to parse and store chinese phone numbers (and other countries)
| * | SCALA-20 Use liphonenumber in `PhoneNumber.parse` to accomodate chinese ↵Sergey Nastich2018-03-283-28/+106
|/ / | | | | | | numbers (and other countries)
* | [API-1468] add TimeOfDay (#141)v1.8.11Arthur Rand2018-03-286-4/+165
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add TimeOfDay * add formatter * . * Revert "." This reverts commit 89576de98092dd75d3af7d82d244d5eaa24d31d9. * scalafmt * add before and after to ToD, and tests * rearrage, make fromStrings * add generator * address comments * use explicit string for TimeZoneId * renaming * revert Converters changes * change name of private method * change apply method * use month
* | Merge pull request #139 from drivergroup/zsmith/patch-directivev1.8.10zachdriver2018-03-272-0/+196
|\ \ | |/ |/| [RFC] Create type-safe `patch` akka-http directive
| * Use patch unmarshallerZach Smith2018-03-253-130/+129
| |
| * Curry the PatchRetrievable apply methodZach Smith2018-03-202-8/+8
| |
| * Enforce application/merge-patch+json Content-TypeZach Smith2018-03-202-25/+54
| |
| * Add implicit ServiceRequestContext to PatchRetrievableZach Smith2018-03-162-21/+31
| |
| * Add PatchSupport trait and testsZach Smith2018-03-162-0/+158
|/
* Merge pull request #137 from drivergroup/zsmith/service-exception-messagev1.8.9zachdriver2018-03-091-13/+11
|\ | | | | Fix ServiceException classes to set Exception message for stack traces
| * Fix ServiceException classes to set Exception message for stack tracesZach Smith2018-03-091-13/+11
|/
* Merge pull request #134 from drivergroup/opt-paginationv1.8.8Kseniya Tomskikh2018-03-072-0/+33
|\ | | | | Created directive for optional pagination
| * Review fixKseniya Tomskikh2018-03-072-2/+2
| |
| * Created directive for optional paginationKseniya Tomskikh2018-03-062-0/+33
| |
* | Merge pull request #135 from drivergroup/zsmith/day-of-weekv1.8.7zachdriver2018-03-063-2/+23
|\ \ | |/ |/| Add DayOfWeek type
| * Add DayOfWeek typeZach Smith2018-03-063-2/+23
|/
* Merge pull request #133 from drivergroup/paginationv1.8.6Jakob Odersky2018-03-022-36/+48
|\ | | | | Use Akka's parameter directive to extract a pagination
| * Use Akka's parameter directive to extract a paginationJakob Odersky2018-03-012-36/+48
|/
* Merge pull request #132 from drivergroup/TRIAL-287v1.8.5Vlad Uspensky2018-03-011-2/+42
|\ | | | | TRIAL-287 Created ListResponse class and directive for pagination pasing
| * TRIAL-287 Created ListResponse class and directive for pagination parsingKseniya Tomskikh2018-03-011-2/+42
|/
* Merge pull request #126 from drivergroup/ar-add-number-token-generatorArthur Rand2018-02-271-1/+7
|\ | | | | add nextNumericToken
| * add nextNumericTokenArtRand2018-02-261-1/+7
|/
* Merge pull request #125 from drivergroup/zsmith/remove-config-routev1.8.4zachdriver2018-02-264-20/+5
|\ | | | | Remove unused abstract config from DriverRoute
| * Remove unused abstract config from DriverRouteZach Smith2018-02-264-20/+5
|/
* Merge pull request #124 from drivergroup/zsmith/remove-sealv1.8.3zachdriver2018-02-224-113/+143
|\ | | | | Fix CORS by moving directives to DriverApp and removing custom RejectionHandler
| * Move cors directives to DriverApp and get rid of custom rejection handlerZach Smith2018-02-224-112/+143
| |
| * Remove .seal call from DriverRoute rejection handlerZach Smith2018-02-221-1/+0
|/
* Merge pull request #104 from drivergroup/zsmith/reject-corsv1.8.2zachdriver2018-02-227-108/+177
|\ | | | | Respond with correct cors headers for all rejections
| * Call .seal on RejectionHandlerZach Smith2018-02-221-3/+2
| |
| * Use config from outer scope in DriverAppZach Smith2018-02-201-1/+1
| |
| * Remove tab from commentZach Smith2018-02-201-1/+1
| |
| * Move rejection handler to DriverRouteZach Smith2018-02-202-4/+30
| |
| * Remove default config valuesZach Smith2018-02-204-111/+62
| |
| * Remove rejection handler, respond with default set of allowed methods and ↵Zach Smith2018-02-207-58/+140
| | | | | | | | origins to all options requests in DriverRoute
| * Refactor DriverRoute to use shared directivesZach Smith2018-02-201-11/+3
| |
| * Move directives to rest packageZach Smith2018-02-202-24/+25
| |
| * Respond with correct cors headers for all rejectionsZach Smith2018-02-201-10/+28
|/
* Merge pull request #119 from drivergroup/update-scalazv1.8.1Stewart Stewart2018-02-152-2/+2
|\ | | | | upgrade scalaz patch version
| * upgrade scalaz patch versionStewart Stewart2018-02-152-2/+2
|/
* Merge pull request #118 from drivergroup/scalazJakob Odersky2018-02-151-0/+1
|\ | | | | Add scalaz to core; it will be removed from sbt-settings
| * Add scalaz to core; it will be removed from sbt-settingsJakob Odersky2018-02-151-0/+1
|/
* Merge pull request #117 from ↵v1.8.0Arthur Rand2018-02-141-2/+2
|\ | | | | | | | | drivergroup/api-1321-add-delete-with-query-rest-method [API-1321] add `delete` with query to `RestService`
| * delete with queryArtRand2018-02-131-2/+2
|/