Fix RST rendering hanging on large files
To render ReStructuredText files, the gitlab-markup gem spawns a python3 process via `Popen.open3`. If the stdout buffer exceeded the maximum size, the pipe would be filled, causing a 60-second timeout on the backend. This version bump brings in the change in https://gitlab.com/gitlab-org/gitlab-markup/-/merge_requests/23 Closes https://gitlab.com/gitlab-org/gitlab/-/issues/13244
Showing
... | ... | @@ -138,7 +138,7 @@ gem 'faraday_middleware-aws-signers-v4' |
# Markdown and HTML processing | ||
gem 'html-pipeline', '~> 2.12' | ||
gem 'deckar01-task_list', '2.3.1' | ||
gem 'gitlab-markup', '~> 1.7.0' | ||
gem 'gitlab-markup', '~> 1.7.1' | ||
gem 'github-markup', '~> 1.7.0', require: 'github/markup' | ||
gem 'commonmarker', '~> 0.20' | ||
gem 'RedCloth', '~> 4.3.2' | ||
... | ... |
Please register or sign in to comment