Skip to content

Commit

Permalink
Merge pull request #4 from Intellection/bump-redisgraph
Browse files Browse the repository at this point in the history
Bump RedisGraph
  • Loading branch information
blockchain-art authored Sep 21, 2022
2 parents a69c015 + bd8ebd9 commit 565223c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.8.19

* Bump RedisGraph to v2.8.19

## 2.8.8-1

* Add bash scripts to run Redis Sentinel easily in Kubernetes.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM redislabs/redisgraph:2.8.8
FROM redislabs/redisgraph:2.8.19

COPY --from=zappi/redis:6.2.6 /opt/redis/scripts/ /opt/redis/scripts/
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,13 @@ kubectl apply -f examples/kubernetes/
```

[1]: https://github.com/Intellection/docker-redis/tree/main/examples/kubernetes

## Contributing

1. Clone the main branch, and create a branch for the feature / fix.
2. Make your changes.
3. Update the changelog with your changes. The version should follow the upstream version of the packaged application. For example if the version of RedisGraph is 2.8.8, the version will be 2.8.8. In the case where the version already exists, you should append an incrementing single digit to it (i.e. 2.8.8-1).
4. Push your branch up and create a pull request.
5. After the pull request is merged, git pull origin main and ensure it's up-to-date.
6. Create a tag with the version you added to the changelog using git tag -a x.y.z. The title should be "Version x.y.z" followed by the changes as the message (as per the changelog).
7. Push your tag, which will kick off a CI workflow to build and release the image.

0 comments on commit 565223c

Please sign in to comment.