Skip to content

Commit

Permalink
Merge pull request #23 from kafkajs/bump-to-1.0.1
Browse files Browse the repository at this point in the history
prep changelog and bump version to 1.0.1
  • Loading branch information
Nevon authored Oct 25, 2019
2 parents 4ad333b + 68c0a5f commit 09047a1
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2019-10-25

### Added

- Added the schema compatibility remaining constants [#14](https://github.com/kafkajs/confluent-schema-registry/pull/14)
- Added method to fetch latest schema id by subject [#17](https://github.com/kafkajs/confluent-schema-registry/issues/17)
- Added method to get the schemaID based on subject [#18](https://github.com/kafkajs/confluent-schema-registry/pull/18)
- Support basic auth authentication [#21](https://github.com/kafkajs/confluent-schema-registry/pull/21)

## [1.0.0] - 2019-09-13

### Changed
Expand Down
14 changes: 14 additions & 0 deletions docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,20 @@ const registry = new SchemaRegistry({
})
```

### Basic auth

It's also possible to configure basic auth:

```js
const registry = new SchemaRegistry({
host: 'http://localhost:2181',
auth: {
username: '***',
password: '***',
},
})
```

### Uploading schemas

```js
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kafkajs/confluent-schema-registry",
"version": "1.0.0",
"version": "1.0.1",
"main": "dist/index.js",
"description": "ConfluentSchemaRegistry is a library that makes it easier to interact with the Confluent schema registry, it provides convenient methods to encode, decode and register new schemas using the Apache Avro serialization format.",
"keywords": [
Expand Down

0 comments on commit 09047a1

Please sign in to comment.