aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add an example to the README and a standalone application templateHEADv2.0.0-M5masterjo/exampleJakob Odersky2018-10-128-3/+57
|
* Enable the Migration Manager Plugin to check for ABI changesJakob Odersky2018-10-124-2/+32
|
* Add a changelog (also consists of the migration guide for 2)Jakob Odersky2018-10-112-10/+139
| | | | | | | [skip ci] closes #121 closes #217
* Unconsolidate `rest` package to help IntelliJ understand where sources belongSergey Nastich2018-10-112-54/+59
|
* Aggregate core-testkitv2.0.0-M4Jakob Odersky2018-10-101-40/+41
|
* Bind to 0.0.0.0 instead of ::Jakob Odersky2018-10-102-2/+2
| | | | This fixes network tests in Travis-CI.
* Add project to AliCloud platformv2.0.0-M3Zach Smith2018-10-093-5/+12
|
* Add AliCloud Platform supportZach Smith2018-10-094-13/+53
|
* Add testkit modulev2.0.0-M2Jakob Odersky2018-10-0911-2/+465
|
* Move resources to corresponding subprojectsJakob Odersky2018-10-0959-27/+26
|
* Move database exception to core-typesJakob Odersky2018-10-093-1/+6
|
* Move remaining swagger utility to rest projectJakob Odersky2018-10-091-0/+0
|
* Fix dependencies in tests to accomodate project splitJakob Odersky2018-10-097-25/+162
|
* Aggregate all projects in root projectJakob Odersky2018-10-091-0/+10
|
* Rewrite README for new layoutJakob Odersky2018-10-093-195/+216
|
* Upgrade sbt build configurationJakob Odersky2018-10-093-60/+58
|
* Move init package to separate projectJakob Odersky2018-10-097-0/+0
|
* Move database-related functionality to separate projectJakob Odersky2018-10-0912-65/+8
| | | | | | | | | | | | | | | | | | | This committ includes a breaking change. The database-specific utility "Converters" trait threw an exception "DatabaseException" defined in the rest package, thus breaking the dependency graph. The solution was to move the DatabaseException class from rest to database and not inherit ServiceExceptio any more. Unfortunately, the rest classes also require the database exception in propagating errors so this funtionality has been removed. The rationale is: 1. Database exceptions are rare and result in 500 errors anyway making the status code opaque to what actual error caused it. 2. In core 2.0, an improved tracing framework will make diagnosing and following database errors easier, thereby attenuating the need to forward details on service exceptions in responses.
* Move REST functionality to separate projectJakob Odersky2018-10-0938-1/+1
|
* Move storage and messaging to separate projectsJakob Odersky2018-10-0914-14/+14
|
* Specify dependencies between projectsJakob Odersky2018-10-091-4/+9
|
* Move reporting into separate projectJakob Odersky2018-10-098-0/+0
|
* Move core types into core-types projectJakob Odersky2018-10-0913-18/+51
| | | | | | | | | Note that xyz.driver.core.FutureExtensions was moved to xyz.driver.core.rest as it (only) contained logic that dealt with service exceptions, something that belongs into core-rest and must not be depended upon by core-types. This is a breaking change.
* Fixes for Alicloud pubsub (#230)Zach Smith2018-10-022-14/+18
| | | | | | * Remove recover from processMessage in StreatBus * Check if queue exists before creating
* Fix `responseToListResponse` for `x-resource-count` header in lowercase (#227)Sergey Nastich2018-09-301-3/+1
|
* Fix `responseToListResponse` for empty non-paginated responses (#225)Sergey Nastich2018-09-221-1/+1
|
* Improve PhoneNumber (#222)Sergey Nastich2018-09-195-10/+116
| | | | | * Add support for extensions * Add PathMatcher and allow parsing JSON from string * Add a number of convenience methods which are to be used instead of `toString`
* Add $ to string interpolator in DnsDiscovery (#220)v2.0.0-M1Zach Smith2018-09-121-1/+1
|
* Update READMEJakob Odersky2018-09-121-1/+22
| | | | [skip ci]
* Remove unused protoype of a reporting busJakob Odersky2018-09-121-34/+0
|
* Move out service discoveryJakob Odersky2018-09-121-4/+3
|
* Add backwards compatibility layer for application contextsJakob Odersky2018-09-121-3/+11
|
* Rearchitect reporting stack to mixin-based structureJakob Odersky2018-09-1212-89/+123
|
* Add authentication method to swagger specJakob Odersky2018-09-121-0/+9
|
* Replace traceparent header, rather than setting all headersJakob Odersky2018-09-121-2/+6
| | | | | The bug manifested itself by missing authentication headers, as these were cleared when the child trace header was set.
* Add updated swagger UI that allows selecting schemeJakob Odersky2018-09-1218-1/+384
|
* Changes to service discovery overrides and storage utilitiesJakob Odersky2018-09-122-20/+17
| | | | | - use objects (instead of object lists) in service discovery overrides - add project ID to bucket names
* Move platform back into init and use a configurable DNS discoveryJakob Odersky2018-09-128-44/+98
|
* Fix typos and naming of actor systemJakob Odersky2018-09-122-4/+3
|
* Add tracing to client HTTP transport and improve tracing tagsJakob Odersky2018-09-1210-77/+157
|
* Fix trace ID generation and improve trace naming schemeJakob Odersky2018-09-124-16/+22
|
* Trait-based initialization and other utilitiesJakob Odersky2018-09-1230-233/+1223
| | | | | | | | | | | | | | | | | | | | | | | | | | | Adds the concept of a 'platform', a centralized place in which environment-specific information will be managed, and provides common initialization logic for most "standard" apps. As part of the common initialization, other parts of core have also been reworked: - HTTP-related unmarshallers and path matchers have been factored out from core.json to a new core.rest.directives package (core.json extends those unmarshallers and matchers for backwards compatibility) - CORS handling has also been moved to a dedicated utility trait - Some custom headers have been moved from raw headers to typed ones in core.rest.headers - The concept of a "reporter" has been introduced. A reporter is a context-aware combination of tracing and logging. It is intended to issue diagnostic messages that can be traced across service boundaries. Closes #192 Closes #195
* Mask InternalServerError and MessageNotExist errors in AliyunBus (#218)v1.14.3Zach Smith2018-09-121-7/+16
|
* RFC Add basicSubscribeWithRestart helper method to StreamBus (#214)Zach Smith2018-09-121-1/+43
| | | | | | | | | | * Add basicSubscribeWithRestart helper method to StreamBus * Include helper for subscribe with Flow * PR comments * Rename methods, call run
* Add `Trimmed` tag and its logic (revisited) (#215)v1.14.2Sergey Nastich2018-09-129-59/+204
| | | | | | | * Add option and iterable converters for transparent `@@ Trimmed` creation. * Move tagging stuff to a separate package - relieve `core.scala` from some extra code. * Add Tagging stuff and publishing section to README.md
* Add `@@ Trimmed` tag for Strings and Names to support by JSON readers (#211)v1.14.1Sergey Nastich2018-09-104-6/+35
|
* Add `Cache-Control: no-cache` to all responses of DriverRoutes. (#190)Sergey Nastich2018-09-103-12/+36
| | | | This change is intended to battle IE (even IE 11) caching all GET responses (and not making any new ones) that don't list those headers
* Various message bus fixes (#212)v1.14.0Jakob Odersky2018-09-107-45/+67
| | | | | 1. Move to pure mixin-based ("stackable traits") pattern. 2. Provide a "CreateOnDemand" mixin that ensures topics and subscriptions have been created before they are used.
* Catch MessageNotExist errors in alicloud subscriptions to prevent errors on ↵v1.13.4Zach Smith2018-09-051-1/+6
| | | | timeout (#210)
* Add http dev.cndriver.xyz to cors whitelist (#209)v1.13.3Zach Smith2018-09-031-0/+4
|