Skip to content

Commit

Permalink
Release 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Abraham Leal committed Apr 29, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 4cc982f commit fdb40d5
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 21 additions & 1 deletion README.adoc
Original file line number Diff line number Diff line change
@@ -289,7 +289,27 @@ Schema Loads support schema versioning. All versions of a schema will be registe
according to the lexicographical order of the files (for example, a file named `orders_v1` will be registered before `orders_v2`).
References are also versioned; However, only the latest version of reference will be referenced by other schemas.

This feature supports allow and disallow lists.
Schema References in AVRO are supported in the following format (in-line references are supported by default already):

[source,json]
----
{
"type" : "record",
"namespace" : "io.leal.abraham",
"name" : "myRecord",
"fields" : [
{ "name" : "Name" , "type" : ["null", "io.leal.abraham.anotherReference"], "default": null },
{ "name" : "Age" , "type" : "io.leal.abraham.singleReference" }
]
}
----

Where `io.leal.abraham.anotherReference` and `io.leal.abraham.singleReference` are both the full names
to referenced records that also live within the path being transversed. `ccloud-schema-exporter` will ensure
those references are registered first to Schema Registry and are correctly set in the ultimate
registration of the referencing schema.

This feature also supports allow and disallow lists.

=== Monitoring

2 changes: 1 addition & 1 deletion cmd/internals/meta.go
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ import (

var HttpCallTimeout int
var ScrapeInterval int
var Version = "1.2-SNAPSHOT"
var Version = "1.2"
var httpClient http.Client

var SrcSRUrl string

0 comments on commit fdb40d5

Please sign in to comment.