Skip to content
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

Update loadgenerator #65

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate-bot
Copy link

@renovate-bot renovate-bot commented Apr 27, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
certifi ==2023.7.22 -> ==2023.11.17 age adoption passing confidence
flask (changelog) ==3.0.0 -> ==3.0.3 age adoption passing confidence
geventhttpclient ==2.0.11 -> ==2.3.1 age adoption passing confidence
googleapis-common-protos ==1.61.0 -> ==1.63.0 age adoption passing confidence
greenlet ==3.0.1 -> ==3.0.3 age adoption passing confidence
itsdangerous (changelog) ==2.1.2 -> ==2.2.0 age adoption passing confidence
locust ==2.18.2 -> ==2.27.0 age adoption passing confidence
locust_plugins ==3.4.0 -> ==3.4.2 age adoption passing confidence
markupsafe (changelog) ==2.1.3 -> ==2.1.5 age adoption passing confidence
msgpack (changelog) ==1.0.7 -> ==1.0.8 age adoption passing confidence
opentelemetry-api ==1.22.0 -> ==1.24.0 age adoption passing confidence
opentelemetry-exporter-otlp-proto-grpc ==1.22.0 -> ==1.24.0 age adoption passing confidence
opentelemetry-proto ==1.22.0 -> ==1.24.0 age adoption passing confidence
opentelemetry-sdk ==1.22.0 -> ==1.24.0 age adoption passing confidence
protobuf ==4.25.0 -> ==4.25.3 age adoption passing confidence
psutil ==5.9.6 -> ==5.9.8 age adoption passing confidence
pyzmq ==25.1.1 -> ==25.1.2 age adoption passing confidence
typing-extensions (changelog) ==4.8.0 -> ==4.11.0 age adoption passing confidence
urllib3 (changelog) ==2.0.7 -> ==2.2.1 age adoption passing confidence
zope-interface ==6.1 -> ==6.4 age adoption passing confidence

Release Notes

certifi/python-certifi (certifi)

v2023.11.17

Compare Source

pallets/flask (flask)

v3.0.3

Compare Source

Released 2024-04-07

  • The default hashlib.sha1 may not be available in FIPS builds. Don't
    access it at import time so the developer has time to change the default.
    :issue:5448
  • Don't initialize the cli attribute in the sansio scaffold, but rather in
    the Flask concrete class. :pr:5270

v3.0.2

Compare Source

Released 2024-02-03

  • Correct type for jinja_loader property. :issue:5388
  • Fix error with --extra-files and --exclude-patterns CLI options.
    :issue:5391

v3.0.1

Compare Source

Released 2024-01-18

  • Correct type for path argument to send_file. :issue:5230
  • Fix a typo in an error message for the flask run --key option. :pr:5344
  • Session data is untagged without relying on the built-in json.loads
    object_hook. This allows other JSON providers that don't implement that.
    :issue:5381
  • Address more type findings when using mypy strict mode. :pr:5383
geventhttpclient/geventhttpclient (geventhttpclient)

v2.3.1

Compare Source

What's Changed

Full Changelog: geventhttpclient/geventhttpclient@2.3.0...2.3.1

v2.3.0

Compare Source

What's Changed

Full Changelog: geventhttpclient/geventhttpclient@2.2.1...2.3.0

v2.2.1

Compare Source

What's Changed

Full Changelog: geventhttpclient/geventhttpclient@2.2.0...2.2.1

v2.2.0

Compare Source

What's Changed

(hopefully also fixes the missing windows binary builds in 2.1.1 as a side effect of rebuilding)

Full Changelog: geventhttpclient/geventhttpclient@2.1.1...2.2.0

v2.1.1

Compare Source

What's Changed

(this replaces 2.1.0, where the publishing went wrong)

Full Changelog: geventhttpclient/geventhttpclient@2.1.0...2.1.1

v2.1.0

Compare Source

What's Changed

Full Changelog: geventhttpclient/geventhttpclient@2.0.12...2.1.0

v2.0.12

Compare Source

What's Changed
New Contributors

Full Changelog: geventhttpclient/geventhttpclient@2.0.11...2.0.12

googleapis/python-api-common-protos (googleapis-common-protos)

v1.63.0

Compare Source

Features
  • Add api_version field to ServiceOptions in google/api/client.proto (6f9c4d2)
  • Add LOCATION_POLICY_VIOLATED enum to ErrorReason in google/api/error_reason.proto (6f9c4d2)
  • Add rest_reference_documentation_uri field to ServiceOptions in google/api/client.proto (6f9c4d2)

v1.62.0

Compare Source

Features
  • Add auto_populated_fields field of MethodSettings in google/api/client_pb2 (#​194) (4b0c73a)
  • Add support for Python 3.12 (#​192) (336cdf3)
Bug Fixes
pallets/itsdangerous (itsdangerous)

v2.2.0

Compare Source

Released 2024-04-16

  • Drop support for Python 3.7. :pr:372
  • Use modern packaging metadata with pyproject.toml instead of setup.cfg.
    :pr:326
  • Use flit_core instead of setuptools as build backend.
  • Deprecate the __version__ attribute. Use feature detection, or
    importlib.metadata.version("itsdangerous"), instead. :issue:371
  • Serializer and the return type of dumps is generic for type checking.
    By default it is Serializer[str] and dumps returns a str. If a
    different serializer argument is given, it will try to infer the return
    type of its dumps method. :issue:347
  • The default hashlib.sha1 may not be available in FIPS builds. Don't
    access it at import time so the developer has time to change the default.
    :issue:375
locustio/locust (locust)

v2.27.0

Compare Source

Full Changelog

Fixed bugs:

  • User Classes with Empty Tasks Results in TypeError: 'NoneType' object is not iterable #​2694

Closed issues:

  • Why defining run_time on worker node raises an error #​2683

Merged pull requests:

  • annotate return types of a few functions to enable more mypy check #​2702 (tdadela)
  • refactor(WindowsKeyPoller): change implementation of captured_chars #​2701 (tdadela)
  • refactor: replace deprecated utcfromtimestamp function #​2700 (tdadela)
  • Use deque for tasks in taskset instead of plain list #​2698 (cyberw)
  • fix: Ensure locust does not crash when an User class has no task #​2696 (hangonlyra)
  • Fix various spelling errors using codespell #​2687 (cyberw)
  • Dispatch/user distribution calculation using Kullback-Leibler divergence #​2686 (tdadela)
  • Allow worker process to run with --run-time specified, just log a warning about it being ignored #​2685 (Sawiq)
  • Small cleanup: mypy type-ignore and dev deps #​2684 (tdadela)
  • Simplify how locustfiles are found (using -f). Don’t automatically append .py #​2655 (DennisKrone)

v2.26.0

Compare Source

Full Changelog

Merged pull requests:

v2.25.0

Compare Source

Full Changelog

Fixed bugs:

  • Wrong distribution of virtual users by user classes #​2662
  • Monkey patching error #​2661
  • cannot specify task of UserClass when locust run on distributed mode #​2657
  • [ModernUI] HTML entities are incorrectly escaped in generated report #​2635
  • Bug / Feature request: Time intensive custom_messages functions trigger heartbeat timeout #​2608

Closed issues:

  • Add an UI extension exemple that display proxy cache hit/miss #​2644

Merged pull requests:

v2.24.1

Compare Source

Full Changelog

Fixed bugs:

  • 'NoneType' object has no attribute 'get' when stream=True in FastHttpSession.request #​2640
  • Locust --processes argument generating multiple html reports #​2639
  • cannot open dashboard and console error shows 'the server responded with a MIME type of "text/plain".' #​2632
  • extend web ui not working since 2.22.0 #​2629
  • Custom parameters incomplete display #​2628

Closed issues:

  • pyproject.toml support for locust configuration #​2298

Merged pull requests:

v2.24.0

Compare Source

Full Changelog

Fixed bugs:

  • Blank page when accessing Locust Web UI via reverse proxy with subpath #​2614
  • [Report][Modern-UI] HTML report is blank #​2603

Closed issues:

  • SocketIOUser send method supports specific subscribe request #​2616
  • "Sticky" user types on workers #​2522

Merged pull requests:

v2.23.1

Compare Source

Full Changelog

Fixed bugs:

  • Modern UI: Average Response Time and 95th percentile have the same color #​2598

Closed issues:

  • Modern UI: Add exception message column on the Exception Statistics #​2597

Merged pull requests:

v2.23.0

Compare Source

Full Changelog

Closed issues:

  • Modern UI: ability to sort tables by column specific column #​2593
  • Modern UI - User class picker - add option to enable/disable everything. #​2585
  • [LocustLineChart] Implement an option/configuration for users to customize the color of the LocustLineChart. #​2578

Merged pull requests:

v2.22.0

Compare Source

Full Changelog

Fixed bugs:

  • Modern UI - new test modal not scrollable #​2574

Merged pull requests:

v2.21.0

Full Changelog

Fixed bugs:

  • 95th percentile line chart does not display correctly on the Response Times (ms) graph #​2540
  • ValueError: greenlet.greenlet size changed, may indicate binary incompatibility. Expected 152 from C header, got 40 from PyObject #​2539
  • TaskSet missing _cp_last_run attribute #​2532
  • Modern UI "forgets" the selected user count and ramp up rate when starting a new test or editing a running one #​2531
  • Update dependency or remove support for Basic Auth for the Web UI #​2517

Closed issues:

  • Unifying percentile displays in Locust's statistics screens #​2546
  • Improve the Class Picker #​2545
  • Add response.ok support to FastHttpUser's FastResponse, ala HttpUser/requests #​2520

Merged pull requests:

v2.20.1

Compare Source

Full Changelog

Fixed bugs:

  • Vite-version needs to be updated #​2528
  • Issue of 100% CPU usage when closing WebSocket connections. #​2516

Merged pull requests:

v2.20.0

Compare Source

Full Changelog

Fixed bugs:

  • har2locust KeyError: '_resourceType' #​2503
  • FastHTTPUser determines StatusCode 304 as Failed #​2500
  • FastHttpUser is stricter than HttpUser about the host attribute #​2492
  • Unable to modify custom parameters from UI using modern UI #​2489
  • Exception 'LookupError: unknown encoding:' when response contains content-type not handled by requests.utils.get_encoding_from_headers #​2482

Merged pull requests:

v2.19.1

Compare Source

Full Changelog

Closed issues:

  • SocketIOUser not support send BINARY data #​2457

Merged pull requests:

v2.19.0

Compare Source

Full Changelog

Merged pull requests:

  • Fix issue with --processes: Stop parent process from trying to kill children too fast #​2478 (cyberw)
  • Update command line argument descriptions and docs #​2477 (cyberw)
  • Update minimum version of various dependencies #​2476 (cyberw)
  • Stop worker from automatically quitting if connected to an older version master that doesnt send heartbeats #​2475 (cyberw)
  • Shut down workers if master goes missing for too long #​2474 (cyberw)
  • Add --processes parameter to automatically fork subprocesses #​2472 (cyberw)

v2.18.4

Compare Source

Full Changelog

Fixed bugs:

  • Total RPS Charts | Failures line chart does not display current number of failures #​2469
  • Modern UI: Lack of information about time and user count in charts #​2467
  • Modern UI: Wrong chart's legend for overridden percentiles values #​2463
  • Modern UI: Can't sort columns on statistics page and downloaded report #​2449
  • Incorrect RPS when decreasing the number of users #​2399

Closed issues:

  • Improve UI of Sorting Columns #​2466

Merged pull requests:

v2.18.3

Compare Source

Full Changelog

Closed issues:

  • Add Modern UI HTML Report to --html Option #​2458

Merged pull requests:

SvenskaSpel/locust-plugins (locust_plugins)

v3.4.2

Compare Source

What's Changed

  • Dashboards: Dont accidentall

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@forking-renovate forking-renovate bot added the dependencies Pull requests that update a dependency file label Apr 27, 2024
@renovate-bot renovate-bot force-pushed the renovate/loadgenerator branch 3 times, most recently from cc06a22 to 5c28303 Compare May 6, 2024 18:54
Copy link

This PR was marked stale due to lack of activity. It will be closed in 7 days.

@github-actions github-actions bot added the Stale label May 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant