enjin / platform

Enjin Platform is the most powerful and advanced open-source framework for building NFT platforms.
GNU Lesser General Public License v3.0
11 stars 10 forks source link

Upgrades decoder to v1.10.0 #50

Closed leonardocustodio closed 1 month ago

leonardocustodio commented 1 month ago

PR Type

enhancement, configuration changes


Description


Changes walkthrough ๐Ÿ“

Relevant files
Configuration changes
docker-compose.yml
Upgrade decoder image version in Docker Compose                   

docker-compose.yml - Updated the decoder image version from `v1.9.1` to `v1.10.0`.
+1/-1     

๐Ÿ’ก PR-Agent usage: Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

github-actions[bot] commented 1 month ago

PR Reviewer Guide ๐Ÿ”

โฑ๏ธ Estimated effort to review: 1 ๐Ÿ”ตโšชโšชโšชโšช
๐Ÿงช No relevant tests
๐Ÿ”’ No security concerns identified
โšก No key issues to review
github-actions[bot] commented 1 month ago

PR Code Suggestions โœจ

CategorySuggestion                                                                                                                                    Score
Best practice
Pin the decoder image version to include the patch number for better stability and predictability ___ **To ensure the decoder service uses a specific version of the platform-decoder image,
it's recommended to pin the version not only to the minor version but also to the
patch version. This can help avoid unexpected behaviors due to automatic updates to
newer patch versions which might not have been tested with your application.** [docker-compose.yml [31]](https://github.com/enjin/platform/pull/50/files#diff-e45e45baeda1c1e73482975a664062aa56f20c03dd9d64a827aba57775bed0d3R31-R31) ```diff -image: enjin/platform-decoder:v1.10.0 +image: enjin/platform-decoder:v1.10.0-patch ```
Suggestion importance[1-10]: 8 Why: The suggestion to pin the image version to a specific patch version is a good practice for ensuring stability and predictability, as it prevents unexpected changes from automatic updates to newer patch versions.
8