Skip to content
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

[Release] Conduit v0.13.3 #2205

Closed
23 of 24 tasks
raulb opened this issue Mar 19, 2025 · 3 comments
Closed
23 of 24 tasks

[Release] Conduit v0.13.3 #2205

raulb opened this issue Mar 19, 2025 · 3 comments
Assignees
Labels
release When planning a new Conduit release

Comments

@raulb
Copy link
Member

raulb commented Mar 19, 2025

This issue serves as a checklist for releasing a new version of Conduit.
Follow the steps below to ensure a smooth release process.

General Information

A Conduit release includes:

  • A GitHub release with packages for different OS and architectures, checksums,
    a changelog, and source code.
  • A GitHub package for the official Docker image, available on GitHub's Container
    Registry, tagged with latest.

Before a Release

Update Dependencies

Update dependencies in the following order, ensuring all repositories are cloned in the same directory:

  • conduit-commons:
    Run scripts/get-compare-link.sh ../conduit-commons/ to compare the latest tag and main branch.
    If changes are needed, push a new tag.
  • conduit-connector-protocol:
    Update conduit-commons if necessary: go get github.com/conduitio/[email protected].
    Run scripts/get-compare-link.sh ../conduit-connector-protocol/ and tag if needed.
  • conduit-connector-sdk:
    Update dependencies (conduit-commons, conduit-connector-protocol) as needed.
    Run scripts/get-compare-link.sh ../conduit-connector-sdk/ and tag if needed.
  • conduit-processor-sdk:
    Update conduit-commons if necessary. Run scripts/get-compare-link.sh ../conduit-processor-sdk/
    and tag if needed.
  • conduit-schema-registry:
    Update conduit-commons if necessary. Run scripts/get-compare-link.sh ../conduit-schema-registry/
    and tag if needed.
  • Connector SDK in conduit-connector-template:
    Bump the Connector SDK dependency.
  • conduit-connector-file:
    Bump the Connector SDK scripts/bump-sdk-in-connectors.sh vX.Y.Z.
    Run scripts/get-compare-link.sh ../conduit-connector-file/ and tag if needed.
  • conduit-connector-kafka:
    Bump the Connector SDK scripts/bump-sdk-in-connectors.sh vX.Y.Z.
    Run scripts/get-compare-link.sh ../conduit-connector-kafka/ and tag if needed.
  • conduit-connector-generator:
    Bump the Connector SDK scripts/bump-sdk-in-connectors.sh vX.Y.Z.
    Run scripts/get-compare-link.sh ../conduit-connector-generator/ and tag if needed.
  • conduit-connector-s3:
    Bump the Connector SDK scripts/bump-sdk-in-connectors.sh vX.Y.Z.
    Run scripts/get-compare-link.sh ../conduit-connector-s3/ and tag if needed.
  • conduit-connector-postgres:
    Bump the Connector SDK scripts/bump-sdk-in-connectors.sh vX.Y.Z.
    Run scripts/get-compare-link.sh ../conduit-connector-postgres/ and tag if needed.
  • conduit-connector-log:
    Bump the Connector SDK scripts/bump-sdk-in-connectors.sh vX.Y.Z.
    Run scripts/get-compare-link.sh ../conduit-connector-log/ and tag if needed.
  • Bump built-in connectors on Conduit: Run scripts/bump-builtin-connectors.sh
  • Release Conduit (see instructions below).

Documentation

  • Write a blog post.
  • Regenerate processor documentation on conduit-site
    by running cd src/processorgen/ && make generate.
  • Update the banner on the website.
    ⚠️ Remember to bump the announcementBar.id in docusaurus.config.ts.
  • Create a changelog on the website.
  • Search and replace the latest version in conduit-site.
  • Search and replace the latest version in README.md.

Releasing Conduit

Use scripts/tag.sh to ensure version conformity.

Important

Make sure you have the latest changes.

scripts/tag.sh MAJOR.MINOR.PATCH

After a Release

  • Run brew upgrade conduit and check latest version.
    (Homebrew formula).
  • Check release artifacts are available for OSX Darwin, Linux, and Windows.
  • Pull Docker images.
  • Run a few testing pipelines
    to make sure things are still operational.

Additional information

Nightly Builds

  • Nightly builds (binaries and Docker images) are provided and kept for 7 days.
  • The latest nightly Docker image is tagged with latest-nightly.

Implementation

Note

The "Trigger nightly build" GitHub action requires a personal access token, not the GitHub token provided by Actions.
GitHub documentation.

@raulb
Copy link
Member Author

raulb commented Mar 20, 2025

brew upgrade conduit
==> Downloading https://formulae.brew.sh/api/formula.jws.json
==> Downloading https://formulae.brew.sh/api/cask.jws.json
==> Upgrading 1 outdated package:
conduit 0.13.2 -> 0.13.3
==> Downloading https://ghcr.io/v2/homebrew/core/conduit/manifests/0.13.3
######################################################################################################################################################################################################################################################### 100.0%
==> Fetching conduit
==> Downloading https://ghcr.io/v2/homebrew/core/conduit/blobs/sha256:64f64ca36cff8bb14765333978d22a6d3a587ddd5709489f20b9997aab6b74f4
######################################################################################################################################################################################################################################################### 100.0%
==> Upgrading conduit
  0.13.2 -> 0.13.3 
==> Pouring conduit--0.13.3.arm64_sequoia.bottle.tar.gz
🍺  /opt/homebrew/Cellar/conduit/0.13.3: 6 files, 86.7MB
==> Running `brew cleanup conduit`...
Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP.
Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).
Removing: /opt/homebrew/Cellar/conduit/0.13.2... (6 files, 83.9MB)
Removing: /Users/raulbarroso/Library/Caches/Homebrew/conduit_bottle_manifest--0.13.2... (7.2KB)
Removing: /Users/raulbarroso/Library/Caches/Homebrew/conduit--0.13.2... (37.6MB)

@raulb
Copy link
Member Author

raulb commented Mar 20, 2025

docker pull --platform linux/amd64 ghcr.io/conduitio/conduit:v0.13.3
v0.13.3: Pulling from conduitio/conduit
f18232174bc9: Download complete 
5c761dcda122: Download complete 
e2f51425fb8b: Download complete 
Digest: sha256:c6063b4b2ed354647563f2eafe5cdedaedac28028170a263005881373b78f494
Status: Downloaded newer image for ghcr.io/conduitio/conduit:v0.13.3
ghcr.io/conduitio/conduit:v0.13.3

@raulb
Copy link
Member Author

raulb commented Mar 20, 2025

Closing this one now, and will track the changelog release separately on ConduitIO/conduit-site#256.

@raulb raulb closed this as completed Mar 20, 2025
@github-project-automation github-project-automation bot moved this from In Progress to Done in Conduit Main Mar 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release When planning a new Conduit release
Projects
Status: Done
Development

No branches or pull requests

1 participant