Skip to content

Releases: otto-de/edison-microservice

Release 1.1.0-beta.3

05 Jun 16:10
Compare
Choose a tag to compare

Release 1.1.0-beta.2

30 May 09:49
Compare
Choose a tag to compare

Release 1.1.0-beta.1

22 May 14:47
Compare
Choose a tag to compare

Release 1.0.1

13 Apr 13:20
Compare
Choose a tag to compare

Bugfixes:

  • [edison-core] Fix reporting of http request count and time to Graphite
  • [edison-mongo] Fixed display of mongo password in /internal/env

New Features:

  • [edison-core] Allow LDAP authentication for user-defined paths.
  • [edison-mongo] Add @ConditionalOnMissingBean to MongoTogglzRepository
  • [edison-mongo] Make ID and ETAG constants public to be able to access them from outside
  • [edison-cache] It is now possible to configure CaffeineCache instances as Spring beans and
    use them using @Cacheable. For example, this way it is possible, to configure loading caches.
    The new example-cache contains a showcase for this. This feature makes the 'old' CacheRegistry
    interface obsolete.

Deprecations:

  • [edison-cache] The CacheRegistry is now deprecated and will be removed in release 2.0.0.
  • [edison-mongo] Deprecation of edison.mongo.passwd. Use edison.mongo.password instead to sanitize value in environment.
    The support for edison.mongo.passwd will be removed in 2.0.0

Release 1.0.0

14 Mar 12:03
Compare
Choose a tag to compare
v1.0.0.RELEASE

RELEASE 1.0.0

Release 1.0.0.RC3

19 Jan 15:11
Compare
Choose a tag to compare

Bugfixes:
[edison-mongo] Unable to use MongoJobRepository because of broken FQN in JobConfiguration

Release 1.0.0.RC2

13 Jan 13:54
Compare
Choose a tag to compare

Bugfixes:

[edison-core] Fixed issue Status page should always render vcs.url
[edison-jobs] Fixed issue add JobRepository.deleteAll()

New Features:

[edison-core] Added @ConfigurationProperties MetricsProperties
[edison-core] Added StatusDetail.getLinks() and rendering hyperlinks on status pages. Job details are now using links; this way you can directly jump from the status page to the job messages.
[edison-*] Added annotations for Java Bean Validation to configuration properties.

Bugfix Release of 1.0.0.RC1a

09 Jan 00:10
Compare
Choose a tag to compare

Some stupid (me) released 1.0.0.RC1 containing a bug, preventing of one of the 1.0.0 features to be usable at all. Please choose this and ignore v1.0.0.RC1.

First Release Candidate of Edison 1.0.0

08 Jan 17:42
Compare
Choose a tag to compare

Beginning with 1.0.0, we will start using semantic versioning of releases.

Breaking Changes:

  • [edison] Refactored module structure:

    • moved edison-status, edison-health, edison-metrics, edison-microservice and èdison-servicediscovery-client
      into edison-core.
    • moved edison-jobs-mongo into edison-mongo
    • moved edison-togglz-mongo into edison-mongo
    • moved edison-togglz-testsupport into edison-testsupport
  • [edison] Removed remaining dependencies to guava library.

  • [edison] Graceful shutdown is now disabled by default. Enable it by setting edison.gracefulshutdown.enabled=true.

  • [edison-core] Renamed package de.otto.edison.discovery to de.otto.edison.registry. The DiscoveryClient
    was renamed to RegistryClient.

  • [edison-core] Properties edison.servicediscovery.* renamed to edison.serviceregistry.*

  • [edison-togglz] Properties of edison-togglz including the togglz console and LDAP has changed.
    The new structure of the properties is like this:

    • edison.togglz.cache-ttl=100 cache-ttl for feature toggles
    • edison.togglz.console.enabled=true Enable / Disable Togglz web console
    • edison.togglz.console.ldap.enabled=true Enable LDAP authentication for the web console
    • edison.togglz.console.ldap.host=localhost LDAP host
    • edison.togglz.console.ldap.port=389 LDAP port
    • edison.togglz.console.ldap.base-dn=test LDAP base dn
    • edison.togglz.console.ldap.rdn-identifier=test LDAP rdn identifier
  • [edison-guava] Removed the deprecated module edison-guava. This is now replaced by edison-cache.

  • [edison-cache] Removed support for property edison.cache.web.controller.enabled. Because the main purpose of
    edison-cache is to provide cache statistics as HTML and/or JSON, it makes no sense to deactivate the controller.

  • [edison-jobs] Refactored JobStatusDetailIndicator to use a configurable JobStatusCalculator to map failed
    jobs to StatusDetails.

    The application property edison.jobs.status.calculator.default is used to select one of the following
    calculator strategies:

    • warningOnLastJobFailed the default, if nothing is configured. Reports a failed job as Status.WARNING
    • errorOnLastJobFailed Reports a failed job as Status.ERROR
    • errorOnLastThreeJobsFailed Reports a failed job as Status.WARNING, or Status.ERROR if the last three jobs
      were failing.
    • errorOnLastTenJobsFailed Reports a failed job as Status.WARNING, or Status.ERROR if the last ten jobs
      were failing.
  • [edison-jobs] Renamed edison.jobs.* properties:

    • edison.jobs.web.controller.enabled:true -> edison.jobs.external-trigger:true
    • edison.jobs.scheduler.thread-count:10 -> edison.jobs.thread-count:10
  • [edison-jobs] The previous, now unsupported property edison.jobs.status.indicate-joberror-with-level:ERROR
    is replaced by setting edison.jobs.status.calculator.default=errorOnLastJobFailed.

  • [edison-jobs] The new property-map edison.jobs.status.calculator: is used to configure the new
    JobStatusCalculator strategies (see above) for single job types (-> JobDefinition.jobType()). The job types are
    case-insensitive, blanks are converted to -.

    Example: A job type named Delta Import should use errorOnLastThreeJobsFailed, while all other jobs
    should use errorOnLastJobFailed:

    • edison.jobs.status.calculator.default = errorOnLastJobFailed
    • edison.jobs.status.calculator.delta-import = errorOnLastThreeJobsFailed

Bugfixes:

  • [edison-jobs] Fixed broken link from job messages to /jobdefinitions/. JobDefinitionService.getJobDefition(jobType)
    is now case insensitive.
  • [edison-mongo] Using primaryPreferred instead of primary to increase availability during master election.

New Features:

  • [edison-core] Added feature to configure the entries of the navigation bar of /internal/* pages. See
    de.otto.edison navigation for details and have a look at the NavigationConfiguration in the examples.
  • [edison-core] Added support to get status information for service that deployed using green/blue deployments. See
    ClusterInfo, ClusterInfoProperties and ClusterInfoConfiguration for details.
  • [edison-core] Introduced `@ConfigurationProperties and annotation-processor to provide auto-completion
    in application.property files.
    • ApplicationInfoProperties`
    • TeamInfoProperties
    • VersionInfoProperties
    • ClusterInfoProperties
    • GracefulShutdownProperties
    • MetricsLoadProperties
    • ServiceRegistryProperties
    • MongoProperties
    • ToggzProperties
    • JobsProperties
  • [edison-jobs] JobEvents not @Beta anymore.
  • [edison-mongo] Added auto-configuration for FeatureRepository and JobRepository

v0.79.3

03 Dec 10:20
Compare
Choose a tag to compare

[edison-cache] Allow registering custom built caches via CacheRegistry to gather cache metrics