Skip to content

Commit

Permalink
Add changelog and cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Heinz N. Gies <[email protected]>
  • Loading branch information
Licenser committed Oct 12, 2023
1 parent ed24a4e commit 46095b4
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Unreleased

### New features
* kafka schema registry codec

### Breaking Changes
* remove schema_registry preprocessor
* remove defunct schema_registry support for avro codec

## [0.13.0-rc.16]

### New features
Expand Down
4 changes: 0 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@
clippy::pedantic,
clippy::mod_module_files
)]
// TODO this is needed due to a false positive in clippy
// https://github.com/rust-lang/rust/issues/83125
// we will need this in 1.53.1
#![allow(proc_macro_back_compat)]

#[macro_use]
extern crate serde;
Expand Down
14 changes: 14 additions & 0 deletions tremor-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//! Tremor shared configuration
#![deny(warnings)]
#![deny(missing_docs)]
#![recursion_limit = "1024"]
#![deny(
clippy::all,
clippy::unwrap_used,
clippy::unnecessary_unwrap,
clippy::pedantic,
clippy::mod_module_files
)]

use serde::Deserialize;
use tremor_value::prelude::*;

Expand Down Expand Up @@ -78,6 +91,7 @@ impl<'v> TryFrom<&Value<'v>> for NameWithConfig {
/// Error for confdig
#[derive(Debug, Clone, PartialEq)]
pub enum Error {
/// malformed configuration
InvalidConfig(String),
}

Expand Down

0 comments on commit 46095b4

Please sign in to comment.