-
Notifications
You must be signed in to change notification settings - Fork 3.9k
fix: change service image version and change to latest config session phone version #1513
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Reviewer's GuideUpdates the Evolution API Docker image to v2.2.3 and aligns CONFIG_SESSION_PHONE_VERSION across .env.example and swarm YAML to ensure compatibility with the latest WhatsApp Web session protocol. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @samuelterra22 - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟡 General issues: 1 issue found
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Docker/swarm/evolution_api_v2.yaml
Outdated
@@ -2,7 +2,7 @@ version: "3.7" | |||
|
|||
services: | |||
evolution_v2: | |||
image: atendai/evolution-api:v2.1.2 | |||
image: atendai/evolution-api:v2.2.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion (bug_risk): Pin Docker image to a digest for immutability
Pinning to a digest ensures the deployed image won't change unexpectedly if the tag is updated.
Suggested implementation:
image: atendai/evolution-api@sha256:abc123replacewithactualdigest
You must replace sha256:abc123replacewithactualdigest
with the actual digest for atendai/evolution-api:v2.2.3
. You can find this by running:
docker pull atendai/evolution-api:v2.2.3
docker inspect --format='{{index .RepoDigests 0}}' atendai/evolution-api:v2.2.3
and copying the sha256 value.
@samuelterra22 Have you considered updating to version 2.3000.1023243284? It’s the most recent version listed here, works well, and is likely to stay compatible for longer. |
Hi @iaurg, on the website you suggested it seems to be all alpha versions. I extracted the version from the current version of Whatssapp Web but it can be modified without any problem. |
Interesting—I’ve checked several sources, but they all seem a bit confusing: Where did you find the version you shared? Maybe we could define a single “source of truth” for future updates. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
meu erro permanece
This pull request includes updates to configuration files to ensure compatibility with newer versions of dependencies and improve system functionality. The changes primarily involve updating version numbers for the Evolution API and the WhatsApp Web session configuration.
Updates to versioning:
.env.example
: UpdatedCONFIG_SESSION_PHONE_VERSION
to2.3000.1023204200
to align with the latest WhatsApp Web version.Docker/swarm/evolution_api_v2.yaml
: Updated the Evolution API image version fromv2.1.2
tov2.2.3
for improved functionality and compatibility.Synchronization across configuration files:
Docker/swarm/evolution_api_v2.yaml
: UpdatedCONFIG_SESSION_PHONE_VERSION
to match the change in.env.example
, ensuring consistency across configuration files.… phone versionSummary by Sourcery
Bump the Evolution API service image and align the WhatsApp Web session phone version config to the latest releases for improved compatibility.
Deployment: