-
Notifications
You must be signed in to change notification settings - Fork 10.3k
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
fix: remove obsoleted 'version' elements in compose files #5553
Conversation
Hey, I couldn't find in the docker doc which specific version of the |
@takatost
TL;DR
Details:
Just before the release of 1.27.0, a PR makes The addition of the As of today, Summary: |
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.
thanks for your kind explanation!
* commit '8d9a45908397b3f3c0d56e86160bb97b5611b79b': (240 commits) fix: remove obsoleted 'version' elements in compose files (langgenius#5553) chore: add a secondary confirmation dialog when the user delete the tool (langgenius#5634) fix: ro-RO is not a valid language (langgenius#5635) FR: langgenius#4048 - Add color customization to the chatbot (langgenius#4885) feat: tracing fe (langgenius#5487) feat: add ops trace (langgenius#5483) chore: cleanup test_delete_by_document_id method in opensearch vdb test (langgenius#5619) chore(pyproject.toml): Add Ruff formatter config. (langgenius#5627) Fix link to documentation of nodes (langgenius#5623) feat: undo/redo for workflow editor (langgenius#3927) fix: populate app configs to system environment variables (langgenius#5590) fix: DuckDuckGo image search tool error (langgenius#5606) delete the deprecated method (langgenius#5612) fix: context icon in chat (langgenius#5604) fix: Modify the incorrect configuration name for Google storage (langgenius#5595) feat: update issue template (langgenius#5592) chore: fix typo in config descriptions (langgenius#5585) fix: add support for FILE type in ToolParameterConverter (langgenius#5578) Fix/single run panel show parent scrollbar (langgenius#5574) refactor: extract cors configs into dify config and cleanup the config class (langgenius#5507) ... # Conflicts: # .github/workflows/build-push.yml # api/Dockerfile # api/core/helper/code_executor/code_executor.py # api/requirements.txt
* commit '17d2f0bb0d3c7618ed59968613175d2344fcbdc1': (145 commits) fix(api/configs): Ignore empty environment variables when loading config. (langgenius#5647) fix: type error in config (langgenius#5643) fix: remove obsoleted 'version' elements in compose files (langgenius#5553) chore: add a secondary confirmation dialog when the user delete the tool (langgenius#5634) fix: ro-RO is not a valid language (langgenius#5635) FR: langgenius#4048 - Add color customization to the chatbot (langgenius#4885) feat: tracing fe (langgenius#5487) feat: add ops trace (langgenius#5483) chore: cleanup test_delete_by_document_id method in opensearch vdb test (langgenius#5619) chore(pyproject.toml): Add Ruff formatter config. (langgenius#5627) Fix link to documentation of nodes (langgenius#5623) feat: undo/redo for workflow editor (langgenius#3927) fix: populate app configs to system environment variables (langgenius#5590) fix: DuckDuckGo image search tool error (langgenius#5606) delete the deprecated method (langgenius#5612) fix: context icon in chat (langgenius#5604) fix: Modify the incorrect configuration name for Google storage (langgenius#5595) feat: update issue template (langgenius#5592) chore: fix typo in config descriptions (langgenius#5585) fix: add support for FILE type in ToolParameterConverter (langgenius#5578) ... # Conflicts: # .github/workflows/build-push.yml # api/Dockerfile # api/requirements.txt
* refs/heads/main: (45 commits) fix: do not remove (#5682) Feature/add qwen llm (#5659) Fix docker command (#5681) feature: Add presence_penalty and frequency_penalty parameters to the … (#5637) Feat/fix ops trace (#5672) feat: xxo enhancement. (#5671) chore: rearrange python dependencies in groups (#5603) chore: delete unused resource (#5667) fix: knowledge retrieval score threshold setting (#5658) feat: add jina new pre-defined rerankers, include: jina-reranker-v2 (#5657) fix: tool call message role according to credentials (#5625) fix: HTTP request header is overwritten when user set Content-Type (#5628) chore: apply flake8-comprehensions Ruff rules to improve collection comprehensions (#5652) fix(api): language list (#5649) fix(api/configs): Ignore empty environment variables when loading config. (#5647) fix: type error in config (#5643) fix: remove obsoleted 'version' elements in compose files (#5553) chore: add a secondary confirmation dialog when the user delete the tool (#5634) fix: ro-RO is not a valid language (#5635) FR: #4048 - Add color customization to the chatbot (#4885) ... # Conflicts: # api/config.py # web/app/components/datasets/settings/form/index.tsx
Description
This PR removes the line
version: '3'
from alldocker-compose*.yaml
files.The
version
element is already obsoleted, and causes warning to be shown in the newer compose plugin:Example warnings are here; the same warning will be shown on any other
docker compose
commands:Fixes # (issue)
Type of Change
Please delete options that are not relevant.
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
docker compose
commands such asdown
,up
,logs
,ps
,pull
,start
,stop
and confirmed that there is no warningSuggested Checklist:
dev/reformat
(backend) andcd web && npx lint-staged
(frontend) to appease the lint godsoptional
I have made corresponding changes to the documentationoptional
I have added tests that prove my fix is effective or that my feature worksoptional
New and existing unit tests pass locally with my changes