Skip to content

Commit f40df20

Browse files
authored
Merge pull request #18 from confluentinc/dev_early_access_development_branch
EA to LA review
2 parents 1630a0e + 49f6d5a commit f40df20

File tree

297 files changed

+43692
-5657
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

297 files changed

+43692
-5657
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @confluentinc/clients
1+
* @confluentinc/clients @confluentinc/data-governance

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ about: Create a report to help us improve
99
- Node Version [e.g. 8.2.1]:
1010
- NPM Version [e.g. 5.4.2]:
1111
- C++ Toolchain [e.g. Visual Studio, llvm, g++]:
12-
- confluent-kafka-js version [e.g. 2.3.3]:
12+
- confluent-kafka-javascript version [e.g. 2.3.3]:
1313

1414
**Steps to Reproduce**
1515

16-
**confluent-kafka-js Configuration Settings**
16+
**confluent-kafka-javascript Configuration Settings**
1717

1818

1919
**Additional context**

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
33

4-
name: Publish confluent-kafka-js
4+
name: Publish confluent-kafka-javascript
55

66
on:
77
release:

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
build/
2+
dist/
23
node_modules/
34
deps/librdkafka
45
npm-debug.log
56

67
docs
78

9+
examples/**/package-lock.json
10+
811
deps/*
912
!deps/*.gyp
1013
!deps/windows-install.*
1114

1215
.DS_Store
1316

17+
.idea
1418
.vscode
19+
coverage

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "deps/librdkafka"]
22
path = deps/librdkafka
3-
url = https://github.com/edenhill/librdkafka.git
3+
url = https://github.com/confluentinc/librdkafka.git

.jshintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.jshintrc

Lines changed: 0 additions & 23 deletions
This file was deleted.

.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ deps/*
55
.gitmodules
66
Dockerfile
77
deps/librdkafka/config.h
8+
schemaregistry
9+
schemaregistry-examples
810
build
911
.github
1012
.vscode
13+
.semaphore

.semaphore/build-docker.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
# This script is used to build the project within a docker image.
3+
# The docker image is assumed to be an alpine docker image, for glibc based builds, we use
4+
# the semaphhore agent directly.
5+
6+
apk add -U ca-certificates openssl ncurses coreutils python3 make gcc g++ libgcc linux-headers grep util-linux binutils findutils perl patch musl-dev bash
7+
# /v is the volume mount point for the project root
8+
cd /v
9+
npm install
10+
npx node-pre-gyp package

.semaphore/project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
apiVersion: v1alpha
77
kind: Project
88
metadata:
9-
name: confluent-kafka-js
9+
name: confluent-kafka-javascript
1010
description: ""
1111
spec:
1212
visibility: private
1313
repository:
14-
url: [email protected]:confluentinc/confluent-kafka-js.git
14+
url: [email protected]:confluentinc/confluent-kafka-javascript.git
1515
run_on:
1616
- branches
1717
- tags

0 commit comments

Comments
 (0)