This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
Breaking Changes
- From now, fetching the go dependencies is also done in the docker container where we also build the plugin. This prevents package incompatibilities when the version of go in the local machine is different than the one that we use in the docker file. (#16)
New Features
- The
resolve-deps
script will merge your plugin dependencies with the gloo dependencies and verify if it's compatible with the targeted GlooE version. If there are mismatched dependencies, use the information of outputted mismatched content to update yourgo.mod
file. This means replacing existing entries and adding missing entries. Once you have updated thego.mod
file, run theresolve-deps
target again. You might need to do this a few times before all the dependencies match. Thego.mod
in this repo is known to work from GlooE1.3.1
and higher (#22)