Description
# Locust [](https://pypi.org/project/locust/) [](https://pypi.org/project/locust/) [](https://pepy.tech/projects/locust) [](https://github.com/locustio/locust/graphs/contributors) [](https://github.com/support-ukraine/support-ukraine) Locust is an open source performance/load testing tool for HTTP and other protocols. Its developer-friendly approach lets you define your tests in regular Python code. Locust tests can be run from command line or using its web-based UI. Throughput, response times and errors can be viewed in real time and/or exported for later analysis. You can import regular Python libraries into your tests, and with Locust's pluggable architecture it is infinitely expandable. Unlike when using most other tools, your test design will never be limited by a GUI or domain-specific language. To get started right away, head over to the [documentation](http://docs.locust.io/en/stable/installation.html). ## Features #### Write user test scenarios in plain old Python If you want your users to loop, perform some conditional behaviour or do some calculations, you just use the regular programming constructs provided by Python. Locust runs every user inside its own greenlet (a lightweight process/coroutine). This enables you to write your tests like normal (blocking) Python code instead of having to use callbacks or some other mechanism. Because your scenarios are βjust pythonβ you can use your regular IDE, and version control your tests as regular code (as opposed to some other tools that use XML or binary formats) ```python from locust import HttpUser, task, between class QuickstartUser(HttpUser): wait_time = between(1, 2) def on_start(self): self.client.post("/login", json={"username":"foo", "password":"bar"}) @task def hello_world(self): self.client.get("/hello") self.client.get("/world") @task(3) def view_item(self): for item_id in range(10): self.client.get(f"/item?id={item_id}", name="/item") ``` #### Distributed & Scalable - supports hundreds of thousands of users Locust makes it easy to run load tests distributed over multiple machines. It is event-based (using [gevent](http://www.gevent.org/)), which makes it possible for a single process to handle many thousands concurrent users. While there may be other tools that are capable of doing more requests per second on a given hardware, the low overhead of each Locust user makes it very suitable for testing highly concurrent workloads. #### Web-based UI Locust has a user friendly web interface that shows the progress of your test in real-time. You can even change the load while the test is running. It can also be run without the UI, making it easy to use for CI/CD testing. <picture> <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/locustio/locust/refs/heads/master/docs/images/bottlenecked-server-light.png" alt="Locust UI charts" height="100" width="200"/> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/locustio/locust/refs/heads/master/docs/images/bottlenecked-server-dark.png" alt="Locust UI charts" height="100" width="200"/> <img src="https://raw.githubusercontent.com/locustio/locust/refs/heads/master/docs/images/bottlenecked-server-light.png" alt="Locust UI charts" height="100" width="200"/> </picture> <picture> <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/locustio/locust/refs/heads/master/docs/images/webui-running-statistics-light.png" alt="Locust UI stats" height="100" width="200"/> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/locustio/locust/refs/heads/master/docs/images/webui-running-statistics-dark.png" alt="Locust UI stats" height="100" width="200"/> <img src="https://raw.githubusercontent.com/locustio/locust/refs/heads/master/docs/images/webui-running-statistics-light.png" alt="Locust UI stats" height="100" width="200"/> </picture> <picture> <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/locustio/locust/refs/heads/master/docs/images/locust-workers-light.png" alt="Locust UI workers" height="100" width="200"/> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/locustio/locust/refs/heads/master/docs/images/locust-workers-dark.png" alt="Locust UI workers" height="100" width="200"/> <img src="https://raw.githubusercontent.com/locustio/locust/refs/heads/master/docs/images/locust-workers-lig
Release History
| Version | Changes | Urgency | Date |
|---|---|---|---|
| 2.43.4 | Imported from PyPI (2.43.4) | Low | 4/21/2026 |
| 2.43.3 | ## What's Changed * Add missing event hook parameter documentation by @veeceey in https://github.com/locustio/locust/pull/3344 * Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1 in /locust/webui by @dependabot[bot] in https://github.com/locustio/locust/pull/3345 * Bump tar from 7.4.3 to 7.5.7 in /locust/webui by @dependabot[bot] in https://github.com/locustio/locust/pull/3346 * Bump cryptography from 43.0.3 to 46.0.5 by @dependabot[bot] in https://github.com/locustio/locust/pull/3347 * Bump | Low | 2/12/2026 |
| 2.43.2 | ## What's Changed * Update operator docs by @amadeuppereira in https://github.com/locustio/locust/pull/3333 * Bump sphinx-rtd-theme from 3.0.2 to 3.1.0 by @dependabot[bot] in https://github.com/locustio/locust/pull/3339 * Bump flask-cors from 6.0.1 to 6.0.2 by @dependabot[bot] in https://github.com/locustio/locust/pull/3343 * Bump hatch from 1.16.2 to 1.16.3 by @dependabot[bot] in https://github.com/locustio/locust/pull/3342 * Bump werkzeug from 3.1.4 to 3.1.5 by @dependabot[bot] in https:/ | Low | 2/1/2026 |
| 2.43.1 | Update various WebUI dependencies, no other changes. ## What's Changed * Bump @emotion/styled from 11.14.0 to 11.14.1 in /locust/webui in the emotion group by @dependabot[bot] in https://github.com/locustio/locust/pull/3322 * Bump the eslint group in /locust/webui with 5 updates by @dependabot[bot] in https://github.com/locustio/locust/pull/3319 * Bump the all_dependencies group with 2 updates by @dependabot[bot] in https://github.com/locustio/locust/pull/3318 * Stabilize tests by @amadeu | Low | 1/12/2026 |
| 2.43.0 | Happy new year! ## What's Changed * Bump glob from 10.4.5 to 10.5.0 in /locust/webui by @dependabot[bot] in https://github.com/locustio/locust/pull/3304 * Bump js-yaml from 4.1.0 to 4.1.1 in /locust/webui by @dependabot[bot] in https://github.com/locustio/locust/pull/3305 * Capture stacktrace on KeyboardInterrupt on greenlets by @amadeuppereira in https://github.com/locustio/locust/pull/3306 * Refactor parse_options by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3310 * So | Low | 12/30/2025 |
| 2.42.6 | ## What's Changed * GH Actions: Bump actions/checkout from 5 to 6 in the all_dependencies group by @dependabot[bot] in https://github.com/locustio/locust/pull/3287 * Fix Toml Parser Being Called on Conf Files by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3293 * Only log "OpenTelemetry enabled" message when success by @amadeuppereira in https://github.com/locustio/locust/pull/3294 * Add otel unit tests by @amadeuppereira in https://github.com/locustio/locust/pull/3295 * Log | Low | 11/29/2025 |
| 2.42.5 | ## What's Changed * Log when otel is enabled by @amadeuppereira in https://github.com/locustio/locust/pull/3284 **Full Changelog**: https://github.com/locustio/locust/compare/2.42.4...2.42.5 | Low | 11/20/2025 |
| 2.42.4 | ## What's Changed * Enables FURB ruff lint by @jairhenrique in https://github.com/locustio/locust/pull/3265 * Updates pytest dependency range by @jairhenrique in https://github.com/locustio/locust/pull/3263 * Allow multiple dropdown in Web UI by @jFompe in https://github.com/locustio/locust/pull/3261 * Includes npm and uv on dependabot file by @jairhenrique in https://github.com/locustio/locust/pull/3269 * Add OpenTelemetry support by @amadeuppereira in https://github.com/locustio/locust/pu | Low | 11/20/2025 |
| 2.42.3 | ## What's Changed * Fix single line .conf files incorrectly being treated as toml by @cyberw in https://github.com/locustio/locust/pull/3257 * GH Actions: update uv version, ensure uv.lock doesn't contain anything not in pyproject.toml by @cyberw in https://github.com/locustio/locust/pull/3259 * Creates dependabot file to keep gh actions updated by @jairhenrique in https://github.com/locustio/locust/pull/3264 * Bump the all_dependencies group with 7 updates by @dependabot[bot] in https://git | Low | 11/15/2025 |
| 2.42.2 | ## What's Changed * fix: MQTT client_id and protocol not passed down to Client by @ionutab in https://github.com/locustio/locust/pull/3252 * remove setuptools from dependencies by @dotlambda in https://github.com/locustio/locust/pull/3253 * Update uv.lock by @cyberw in https://github.com/locustio/locust/pull/3254 * Revert "modified ui_extra_args_dict function to pick arguments" by @cyberw in https://github.com/locustio/locust/pull/3255 * Bump locust-cloud version, fixing an issue with .conf | Low | 11/6/2025 |
| 2.42.1 | ## What's Changed * Bumped the gRPC example serverβs worker pool to 100 by @sonianuj287 in https://github.com/locustio/locust/pull/3248 * Bump vite from 6.3.5 to 6.4.1 in /locust/webui by @dependabot[bot] in https://github.com/locustio/locust/pull/3249 * modified ui_extra_args_dict function to pick arguments by @sonianuj287 in https://github.com/locustio/locust/pull/3245 * Add VS Code Extension and k8s operator to documentation by @cyberw in https://github.com/locustio/locust/pull/3251 ## | Low | 10/27/2025 |
| 2.42.0 | ## What's Changed * loosen dependency on gevent by @bollwyvl in https://github.com/locustio/locust/pull/3236 * Fix reset button not working after stopping the run by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3238 * Added readme badge for supported python versions by @Nirzak in https://github.com/locustio/locust/pull/3237 * Introduce DNSUser by @cyberw in https://github.com/locustio/locust/pull/3243 * Avoid using most recent python-requests because it may introduce performa | Low | 10/19/2025 |
| 2.41.6 | ## What's Changed * Officially support Python 3.14 and test it by @cyberw in https://github.com/locustio/locust/pull/3235 **Full Changelog**: https://github.com/locustio/locust/compare/2.41.5...2.41.6 | Low | 10/10/2025 |
| 2.41.5 | ## What's Changed * Use www host instead of bare locust.cloud in examples and tests by @cyberw in https://github.com/locustio/locust/pull/3234 * Fix FastHttpUser handling of 308 response code https://github.com/locustio/locust/commit/70184dfbf8d93ed211ec6371cb1f18bddc3a8d5c * Fix Unsafe Template Arg by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3232 **Full Changelog**: https://github.com/locustio/locust/compare/2.41.3...2.41.5 | Low | 10/6/2025 |
| 2.41.3 | ## What's Changed * Enhance MilvusUser constructor to support additional collection parameters by @zhuwenxing in https://github.com/locustio/locust/pull/3229 * Make workers correctly ignore the --run-time flag by @cyberw in https://github.com/locustio/locust/pull/3230 **Full Changelog**: https://github.com/locustio/locust/compare/2.41.2...2.41.3 | Low | 10/1/2025 |
| 2.41.2 | ## What's Changed * Fix Alignment of View Column Selector by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3226 * Pytest plugin: Workaround issue with potential duplicate --host argument definition by @cyberw in https://github.com/locustio/locust/pull/3228 **Full Changelog**: https://github.com/locustio/locust/compare/2.41.1...2.41.2 | Low | 9/29/2025 |
| 2.41.1 | Fix incorrect url for feedback form **Full Changelog**: https://github.com/locustio/locust/compare/2.41.0...2.41.1 | Low | 9/25/2025 |
| 2.41.0 | ## What's Changed * Suggest possibly misspelled command line arguments (Did you mean ...) by @cyberw in https://github.com/locustio/locust/pull/3224 * Add Locust Feedback Form by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3223 * Add MqttUser by @ionutab in https://github.com/locustio/locust/pull/3216 **Full Changelog**: https://github.com/locustio/locust/compare/2.40.5...2.41.0 | Low | 9/25/2025 |
| 2.40.5 | ## What's Changed * Avoid wrapping fast response in response context manager when not needed by @cyberw in https://github.com/locustio/locust/pull/3222 **Full Changelog**: https://github.com/locustio/locust/compare/2.40.4...2.40.5 | Low | 9/17/2025 |
| 2.40.4 | ## What's Changed * Avoid pytest style locustfiles capturing keyboard input by @cyberw in https://github.com/locustio/locust/pull/3219 **Full Changelog**: https://github.com/locustio/locust/compare/2.40.3...2.40.4 | Low | 9/11/2025 |
| 2.40.3 | ## What's Changed * Make ResponseContextManager.raise_for_status() consider calls to failure() and success() by @cyberw in https://github.com/locustio/locust/pull/3217 * Bump requests minimum version by @cyberw in https://github.com/locustio/locust/pull/3218 **Full Changelog**: https://github.com/locustio/locust/compare/2.40.2...2.40.3 | Low | 9/11/2025 |
| 2.40.2 | ## What's Changed * Refactor clients.ResponseContextManager and fix gc issue by @cyberw in https://github.com/locustio/locust/pull/3210 * Refactor SocketIOUser to create separate SocketIOClient class by @cyberw in https://github.com/locustio/locust/pull/3211 **Full Changelog**: https://github.com/locustio/locust/compare/2.40.1...2.40.2 | Low | 9/8/2025 |
| 2.40.1 | ## What's Changed * Pytest plugin: Delay imports to avoid monkey patching until someone uses the fixtures by @cyberw in https://github.com/locustio/locust/pull/3204 * Move pytest plugin to its own directory, to prevent accidental import by @cyberw in https://github.com/locustio/locust/pull/3205 **Full Changelog**: https://github.com/locustio/locust/compare/2.40.0...2.40.1 | Low | 9/5/2025 |
| 2.40.0 | ## What's Changed * Refactor FastHttpSession to be more like HttpSession by @cyberw in https://github.com/locustio/locust/pull/3198 * Update Dockerfile base to Python 3.13 by @adaamz in https://github.com/locustio/locust/pull/3193 * Avoid exception in HttpUser if requests has lost track of the request it made by @cyberw in https://github.com/locustio/locust/pull/3201 * Support pytests as locustfiles by @cyberw in https://github.com/locustio/locust/pull/3200 ## New Contributors * @adaamz | Low | 9/5/2025 |
| 2.39.1 | ## What's Changed * Avoid broken gevent version for now by @cyberw in https://github.com/locustio/locust/pull/3196 ## New Contributors * @JumboBear made their first contribution in https://github.com/locustio/locust/pull/3195 **Full Changelog**: https://github.com/locustio/locust/compare/2.39.0...2.39.1 | Low | 8/29/2025 |
| 2.39.0 | ## What's Changed * Add MilvusUser and example by @zhuwenxing in https://github.com/locustio/locust/pull/3168 * Add SocketIOUser by @cyberw in https://github.com/locustio/locust/pull/3189 ## New Contributors * @zhuwenxing made their first contribution in https://github.com/locustio/locust/pull/3168 **Full Changelog**: https://github.com/locustio/locust/compare/2.38.1...2.39.0 | Low | 8/20/2025 |
| 2.38.1 | ## What's Changed * Fix test flakyness and update error message by @amadeuppereira in https://github.com/locustio/locust/pull/3187 * FastHttpUser: Dont send zstd in Accept-Encoding header by @cyberw in https://github.com/locustio/locust/pull/3188 **Full Changelog**: https://github.com/locustio/locust/compare/2.38.0...2.38.1 | Low | 8/12/2025 |
| 2.38.0 | ## What's Changed * Add yarn lint precommit by @cyberw in https://github.com/locustio/locust/pull/3175 * Webui: Hide no Host Warning when one is Provided by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3177 * Bump form-data from 4.0.0 to 4.0.4 in /locust/webui by @dependabot[bot] in https://github.com/locustio/locust/pull/3179 * Support for list based custom arguments by @mickdwyer in https://github.com/locustio/locust/pull/3181 * Add MarkovTaskSet by @Matthieu-Beauchamp in h | Low | 8/7/2025 |
| 2.37.14 | ## What's Changed * Web UI: Improve Locust Cloud Tab by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3172 * Web UI: Fix Chart Zoom Slider by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3174 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.13...2.37.14 | Low | 7/16/2025 |
| 2.37.13 | ## What's Changed * Web UI: Shrink Bundle Size by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3169 * Remove safe_name from /stats/requests response by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3171 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.12...2.37.13 | Low | 7/15/2025 |
| 2.37.12 | ## What's Changed * Bump brace-expansion from 1.1.11 to 1.1.12 in /locust/webui by @dependabot in https://github.com/locustio/locust/pull/3160 * Attempt to increase open file limit (RLIMIT_NOFILE) even on master. by @cyberw in https://github.com/locustio/locust/pull/3162 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.11...2.37.12 | Low | 7/8/2025 |
| 2.37.11 | ## What's Changed * Web UI: Always Warn of Invalid Host by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3155 * Forward locustfiles to locust cloud by @amadeuppereira in https://github.com/locustio/locust/pull/3157 / https://github.com/locustcloud/locust-cloud/pull/38 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.10...2.37.11 | Low | 6/23/2025 |
| 2.37.10 | ## What's Changed * Revert accidental removal of --json-file option by @brtkwr in https://github.com/locustio/locust/pull/3154 ## New Contributors * @brtkwr made their first contribution in https://github.com/locustio/locust/pull/3154 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.9...2.37.10 | Low | 6/7/2025 |
| 2.37.9 | ## What's Changed * Web UI: Fix host field name missing if host is not required by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3152 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.8...2.37.9 | Low | 6/5/2025 |
| 2.37.8 | ## What's Changed * Bump locust-cloud dependency, allow 25.x versions of gevent by @cyberw in https://github.com/locustio/locust/pull/3151 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.7...2.37.8 | Low | 6/5/2025 |
| 2.37.7 | ## What's Changed * Web Ui: Add host field validation by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3149 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.6...2.37.7 | Low | 6/3/2025 |
| 2.37.6 | ## What's Changed * Fix Docs Config Options by @amadeuppereira in https://github.com/locustio/locust/pull/3145 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.5...2.37.6 | Low | 5/28/2025 |
| 2.37.5 | ## What's Changed * Do not require locustfile on specific locust-cloud arguments by @amadeuppereira in https://github.com/locustio/locust/pull/3141 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.4...2.37.5 | Low | 5/22/2025 |
| 2.37.4 | Bump minimum locust-cloud version. No other relevant changes. **Full Changelog**: https://github.com/locustio/locust/compare/2.37.3...2.37.4 | Low | 5/19/2025 |
| 2.37.3 | ## What's Changed * Webui: Warn on Missing Host by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3140 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.2...2.37.3 | Low | 5/14/2025 |
| 2.37.2 | ## What's Changed * Bump vite from 6.3.2 to 6.3.4 in /locust/webui by @dependabot in https://github.com/locustio/locust/pull/3132 * Fixes #3134 - Improve the performance of the `/stats/requests` endpoint by @orf in https://github.com/locustio/locust/pull/3136 * Webui: Block Submitting SwarmForm in Distributed Mode with no Workers by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3138 ## New Contributors * @orf made their first contribution in https://github.com/locustio/locus | Low | 5/13/2025 |
| 2.37.1 | ## What's Changed * Fix --json-file (actually save data to file) by @zed in https://github.com/locustio/locust/pull/3131 ## New Contributors * @zed made their first contribution in https://github.com/locustio/locust/pull/3131 **Full Changelog**: https://github.com/locustio/locust/compare/2.37.0...2.37.1 | Low | 5/7/2025 |
| 2.37.0 | ## What's Changed * Web UI: Use mutations for state buttons by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3120 * fix error message to be idiomatically correct English by @davidxia in https://github.com/locustio/locust/pull/3121 * Add locust exporter import by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3122 * Update uv to 0.7.2 by @cyberw in https://github.com/locustio/locust/pull/3125 * Add command line option to export json results into a file by @ajt89 in | Low | 5/5/2025 |
| 2.36.2 | ## What's Changed * Remove circular dependency for locust-cloud by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3119 **Full Changelog**: https://github.com/locustio/locust/compare/2.36.1...2.36.2 | Low | 4/25/2025 |
| 2.36.1 | Fix gevent dependency specification. ## What's Changed * Fix setting version for tag and pre-release by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3118 **Full Changelog**: https://github.com/locustio/locust/compare/2.36.0...2.36.1 | Low | 4/24/2025 |
| 2.36.0 | ## What's Changed * chore: set yarn to yarn berry by @schwannden in https://github.com/locustio/locust/pull/3104 * Refactoring: Extract validate stats configuration from main function by @insspb in https://github.com/locustio/locust/pull/3101 * Refactoring: Extract locustfile content merger from main function by @insspb in https://github.com/locustio/locust/pull/3102 * Web UI: Fix npm publish failing by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3107 * Yarn Berry: Update pu | Low | 4/24/2025 |
| 2.35.0 | ## What's Changed * Web UI: Add optional base url for locust requests to an external API by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3094 * Webui: adding profile argument and display in html report by @schwannden in https://github.com/locustio/locust/pull/3093 * Webui: Add history fallback by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3095 * Webui: Add credentials to stop and reset requests by @andrewbaldwin44 in https://github.com/locustio/locust/pull/309 | Low | 4/16/2025 |
| 2.34.1 | ## What's Changed * Bump vite from 6.2.4 to 6.2.5 in /locust/webui by @dependabot in https://github.com/locustio/locust/pull/3091 * Drop support for Python 3.9 by @cyberw in https://github.com/locustio/locust/pull/3090 **Full Changelog**: https://github.com/locustio/locust/compare/2.34.0...2.34.1 | Low | 4/9/2025 |
| 2.34.0 | ## What's Changed * Add OpenAI User and example by @cyberw in https://github.com/locustio/locust/pull/3081 * Make the Locust UI Responsive by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3083 * FastHttpUser: Dont crash if parameters are passed to failure() when someone forgot catch_response=True by @cyberw in https://github.com/locustio/locust/pull/3085 * Bump vite from 6.2.1 to 6.2.4 in /locust/webui by @dependabot in https://github.com/locustio/locust/pull/3087 * Web UI: Of | Low | 4/6/2025 |
| 2.33.2 | ## What's Changed * Update uv to 0.6.5 and optimize docker start time by @cyberw in https://github.com/locustio/locust/pull/3073 * Webui: Bump Vite Version for Dependabot by @andrewbaldwin44 in https://github.com/locustio/locust/pull/3074 * Optimize unit tests by @cyberw in https://github.com/locustio/locust/pull/3078 * Update ruff to 0.10.0 by @cyberw in https://github.com/locustio/locust/pull/3079 * Bump @babel/runtime from 7.22.15 to 7.26.10 in /locust/webui by @dependabot in https://git | Low | 3/15/2025 |
