Skip to content

Latest commit

 

History

History
173 lines (119 loc) · 6.75 KB

File metadata and controls

173 lines (119 loc) · 6.75 KB

Contributing to Floci

Thank you for your interest in contributing! Floci is a community-driven project and all contributions are welcome.

Ways to Contribute

  • Bug reports — open an issue with a minimal reproduction
  • Feature requests — open an issue describing the AWS behavior you need
  • Pull requests — bug fixes, new service implementations, or improvements
  • Compatibility tests — add cases to ./compatibility-tests/

Getting Started

Prerequisites

  • Java 25+
  • Maven 3.9+
  • Docker (for integration tests that spin up Lambda/RDS/ElastiCache)

Any Java 25+ distribution will work. If you need to install it, SDKMAN is a convenient option:

curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
sdk install java 25-open

Build & Run

This project includes a Maven wrapper, so you don't need to install Maven separately:

git clone https://github.com/hectorvent/floci.git
cd floci
./mvnw quarkus:dev     # hot reload on port 4566

If you prefer to use your own Maven installation (3.9+), you can use mvn instead of ./mvnw.

Run Tests

./mvnw test                                          # all tests
./mvnw test -Dtest=SsmIntegrationTest                # single class
./mvnw test -Dtest=SsmIntegrationTest#putParameter   # single method

Branching Model

Floci uses a tag-driven release model. Docker images are never published on PR merge — only when a maintainer pushes a version tag.

Branch Purpose Docker published?
main Integration branch — all PRs merge here. Treated as unstable/nightly. No (CI tests only)
release/x.y.x Stable line for a minor version. Receives cherry-picked fixes from main. No (CI tests only)
X.Y.Z tag Signals a production release. Triggers the full Docker publish pipeline. Yes (x.y.z, latest, x.y.z-jvm, latest-jvm)

Commit Message Format

This project uses Conventional Commits — semantic-release reads these to generate the changelog and version bumps automatically.

Prefix When to use Version bump
feat: New AWS API action or service minor
fix: Bug fix or AWS compatibility correction patch
perf: Performance improvement patch
docs: Documentation only none
chore: Build, CI, dependencies none
BREAKING CHANGE: Footer or ! suffix — incompatible change major

Do not include Co-Authored-By trailers for AI tools in commit messages. Attribution should be limited to human contributors.

Examples:

feat: add SQS SendMessageBatch action
fix: correct DynamoDB QueryFilter comparison operators
feat!: change default storage mode to persistent

Architecture

See AGENT.md for a detailed description of the three-layer architecture (Controller → Service → Storage), the AWS wire protocol mapping, and conventions for adding new services.

AGENT.md is the canonical agent instructions file for this repository. If your coding agent expects a different filename, create a local symlink to AGENT.md instead of copying the file.

ln -s AGENT.md CLAUDE.md
ln -s AGENT.md GEMINI.md
ln -s AGENT.md COPILOT.md

Adding a New AWS Service

  1. Create a package under src/main/java/.../services/<service>/
  2. Add a Controller (follow the correct protocol — Query, JSON 1.1, REST JSON, or REST XML)
  3. Add a Service (@ApplicationScoped) and model POJOs
  4. Register in ServiceRegistry
  5. Add config entries in EmulatorConfig.java and application.yml
  6. Add integration tests in *IntegrationTest.java

Always implement the real AWS wire protocol — never invent custom endpoints. The AWS SDK must work against Floci without modification.

Pull Request Guidelines

  1. Branch off main: git checkout -b feature/my-feature
  2. Open a PR targeting main.
  3. CI runs tests automatically — all checks must pass before merge.
  4. Keep PRs focused — one feature or fix per PR.
  5. Reference any related issues in the PR description.

Docker images are never built on contributor PRs, so merging to main is always cheap.

Release Process (maintainers)

New minor or major release

# 1. Create a release branch from main
git checkout main && git pull
git checkout -b release/1.2.x

# 2. Push — the semver.yml workflow runs semantic-release automatically,
#    bumps the version, updates CHANGELOG.md + pom.xml, and pushes tag 1.2.0.
git push origin release/1.2.x

# 3. The tag push triggers the Docker publish pipeline.

Patch release on an existing line

git checkout release/1.1.x
git cherry-pick <commit-sha>
git push origin release/1.1.x
# semver workflow creates 1.1.x and triggers Docker publish

Hotfix

  1. Fix on main via the normal PR process.
  2. Cherry-pick the merge commit onto the relevant release/x.y.x branch and push.
  3. If the bug only affects a release branch, open a PR directly against that branch.

Edge builds

The edge.yml workflow publishes a JVM-only hectorvent/floci:edge image from main every Monday at 00:00 UTC. It can also be triggered manually from the Actions tab.

Testing Policy for Pull Requests

Floci accepts pull requests only when the test coverage is appropriate for the type of change being proposed.

As a project policy:

  • Pull requests that introduce new behavior must include tests that validate that behavior.
  • Pull requests that fix bugs should include a regression test whenever the bug can be covered realistically.
  • Pull requests that modify runtime logic, request handling, persistence behavior, protocol compatibility, or service responses are expected to include updated or additional tests.
  • Pull requests that do not change observable behavior, such as documentation updates, formatting, comments, dependency housekeeping, or low-risk internal refactors, may not require new tests.
  • Even when no new tests are needed, the existing test suite must still pass.

If a pull request does not include new tests, the author should explain why in the PR description. Valid reasons may include:

  • no functional behavior changed
  • existing tests already cover the change
  • the change is not meaningfully testable in isolation

Maintainers may request additional or more targeted test coverage before approving a PR.

CI runs automatically on every pull request, and build/test checks must pass before merge.

Reporting Security Issues

Please do not open public issues for security vulnerabilities. Report them privately by emailing the maintainer or using GitHub private vulnerability reporting.