First of all, thank you for contributing to Meilisearch! The goal of this document is to provide everything you need to know in order to contribute to Meilisearch and its different integrations.
- Assumptions
- How to Contribute
- Development Workflow
- Git Guidelines
- Release Process (for internal team only)
- You're familiar with GitHub and the Pull Request(PR) workflow.
- You've read the Meilisearch documentation and the README.
- You know about the Meilisearch community. Please use this for help.
- Make sure that the contribution you want to make is explained or detailed in a GitHub issue! Find an existing issue or open a new one.
- Once done, fork the meilisearch-swift repository in your own GitHub account. Ask a maintainer if you want your issue to be checked before making a PR.
- Create a new Git branch.
- Review the Development Workflow section that describes the steps to maintain the repository.
- Make the changes on your branch.
- Submit the branch as a PR pointing to the
main
branch of the main meilisearch-swift repository. A maintainer should comment and/or review your Pull Request within a few days. Although depending on the circumstances, it may take longer.
We do not enforce a naming convention for the PRs, but please use something descriptive of your changes, having in mind that the title of your PR will be automatically added to the next release changelogs.
You can set up your local environment natively or using docker
, check out the docker-compose.yml
.
Example of running all the checks with docker:
docker-compose run --rm package bash -c "swift test && swiftlint"
To install dependencies:
swift build
To install swiftlint
:
brew install swiftlint
If you have a running Meilisearch instance at port localhost:7700
with the following master key: masterKey
, you will need to run the following command to test the package:
curl -L https://install.meilisearch.com | sh # download Meilisearch
./meilisearch --master-key=masterKey --no-analytics # run Meilisearch
swift test
If you do not have a Meilisearch instance with the previous mentioned parameters, you can run the test script that will automatically run a Docker container with Meilisearch and start the test:
./Scripts/run-test.sh
If you want to run the linter swiftlint
:
swift run swiftlint
If you want to fix your linting errors:
swift run swiftlint --fix
To build the project, if it's not already done, click on the play button in the top left corner of Xcode.
To launch the tests:
- Go to Product > Test
- Use the shortcut command + U
All changes must be made in a branch and submitted as PR. We do not enforce any branch naming style, but please use something descriptive of your changes.
As minimal requirements, your commit message should:
- be capitalized
- not finish by a dot or any other punctuation character (!,?)
- start with a verb so that we can read your commit message this way: "This commit will ...", where "..." is the commit message. e.g.: "Fix the home page button" or "Add more tests for create_index method"
We don't follow any other convention, but if you want to use one, we recommend this one.
Some notes on GitHub PRs:
- Convert your PR as a draft if your changes are a work in progress: no one will review it until you pass your PR as ready for review.
The draft PR can be very useful if you want to show that you are working on something and make your work visible. - The branch related to the PR must be up-to-date with
main
before merging. Fortunately, this project integrates a bot to automatically enforce this requirement without the PR author having to do it manually. - All PRs must be reviewed and approved by at least one maintainer.
- The PR title should be accurate and descriptive of the changes. The title of the PR will be indeed automatically added to the next release changelogs.
Meilisearch tools follow the Semantic Versioning Convention.
This project integrates a bot that helps us manage pull requests merging.
Read more about this.
This project integrates a tool to create automated changelogs.
Read more about this.
Make a PR updating the different versions with the new one on these files:
Sources/MeiliSearch/Model/PackageVersion.swift
:private static let current = "X.X.X"
.code-samples.meilisearch.yaml
on the line containing the following:.package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "X.X.X")
README.md
on the line containing the following:.package(url: "https://github.com/meilisearch/meilisearch-swift.git", from: "X.X.X")
Once the changes are merged on main
, you can publish the current draft release via the GitHub interface: on this page, click on Edit
(related to the draft release) > update the description (be sure you apply these recommendations) > when you are ready, click on Publish release
.
GitHub Actions will be triggered and push the package to CocoaPods.
[!] Authentication token is invalid or unverified. Either verify it with the email that was sent or register a new session.
It will be raised when the authentication is expired. To fix the error, the Integrations team must do the authorization process again with the following:
1st step: Execute this in the repo's directory: pod trunk register [email protected] 'Meilisearch'
2nd step: Confirm the link sent in the email.
3rd step: Run pod trunk me --verbose
and take the token from Authorization: Token XXXXXXXXXXXXXXXXXXXXXXXXXX
.
4th step: Update the token in the GitHub secrets interface COCOAPODS_TRUNK_TOKEN
.
Thank you again for reading this through. We can not wait to begin to work with you if you make your way through this contributing guide ❤️