Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
340 changes: 108 additions & 232 deletions .semaphore/semaphore.yml

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ v1.0.0 is a feature release. It is supported for all usage.

## Enhancements

1. Add support for an Admin API to fetch topic offsets(#156).
1. Add support for an Admin API to fetch topic offsets (#156).
2. Add support for Node v23 pre-built binaries (#158).


# confluent-kafka-javascript v0.6.1
Expand All @@ -29,7 +30,7 @@ v0.6.0 is a limited availability maintenance release. It is supported for all us

### Schema Registry

1. Add AWS AssumeRole support to AWS KMS. You can now specify a role arn, and optional
1. Add AWS AssumeRole support to AWS KMS. You can now specify a role arn, and optional
role session name and optional role external id.

2. Ensure different key ids use different client instances.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To use **Schema Registry**, use the existing [@confluentinc/schemaregistry](http

The following configurations are supported:

* Any supported version of Node.js (The two LTS versions, 18 and 20, and the latest versions, 21 and 22).
* Any supported version of Node.js (The two LTS versions, 18 and 20, and the latest versions, 21, 22 and 23).
* Linux (x64 and arm64) - both glibc and musl/alpine.
* macOS - arm64/m1. macOS (Intel) is supported on a best-effort basis.
* Windows - x64.
Expand Down
6 changes: 3 additions & 3 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
}
],
'cflags_cc' : [
'-std=c++17'
'-std=c++20'
],
'msvs_settings': {
'VCLinkerTool': {
Expand Down Expand Up @@ -135,7 +135,7 @@
'OS=="linux"',
{
'cflags_cc' : [
'-std=c++17'
'-std=c++20'
],
'cflags_cc!': [
'-fno-rtti'
Expand All @@ -153,7 +153,7 @@
],
'OTHER_CPLUSPLUSFLAGS': [
'-I/usr/local/opt/openssl/include',
'-std=c++17'
'-std=c++20'
],
},
}
Expand Down
Loading