-
Notifications
You must be signed in to change notification settings - Fork 21
Update for 1.4.0 #342
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update for 1.4.0 #342
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR bumps the released version from 1.4.0-rc0
to 1.4.0
across packages and updates the librdkafka
dependency and CI checkout to the stable 2.11.0
tag.
- Updated package versions in
package.json
andschemaregistry/package.json
- Updated
util.bindingVersion
and generated header comment inlib/util.js
andlib/error.js
- Updated CI pipeline to checkout the stable
librdkafka
tag in.semaphore/semaphore.yml
Reviewed Changes
Copilot reviewed 5 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
schemaregistry/package.json | Bump schema registry package version to 1.4.0 |
package.json | Bump kafka-javascript version to 1.4.0 and librdkafka dependency to 2.11.0 |
lib/util.js | Updated util.bindingVersion to 1.4.0 |
lib/error.js | Updated generated header comment to reference 2.11.0 |
.semaphore/semaphore.yml | Checkout stable v2.11.0 instead of release candidate |
Comments suppressed due to low confidence (2)
package.json:3
- Please update the CHANGELOG.md (or release notes) to include details about the 1.4.0 release.
"version": "1.4.0",
package.json:5
- Don't forget to regenerate or update the lock file (package-lock.json or yarn.lock) so it pins the new librdkafka version.
"librdkafka": "2.11.0",
@@ -52,4 +52,4 @@ util.dictToStringList = function (mapOrObject) { | |||
return list; | |||
}; | |||
|
|||
util.bindingVersion = '1.4.0-rc0'; | |||
util.bindingVersion = '1.4.0'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Consider sourcing the binding version dynamically from package.json to avoid duplicating the version string in code.
Copilot uses AI. Check for mistakes.
Bump version and librdkafka version