Skip to content

Bump fauxfactory from 3.1.1 to 4.2.1#237

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pip/fauxfactory-4.2.1
Open

Bump fauxfactory from 3.1.1 to 4.2.1#237
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pip/fauxfactory-4.2.1

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 7, 2026

Bumps fauxfactory from 3.1.1 to 4.2.1.

Release notes

Sourced from fauxfactory's releases.

v4.2.1

What's Changed

Full Changelog: omaciel/fauxfactory@v4.2.0...v4.2.1

v4.2.0

[4.2.0] - 2025-12-17

Added

  • New List Generator: Added gen_list() function for generating lists directly

    • gen_list(): Generate lists from item schema definitions
      • Supports callable generators for each list item
      • Supports dict/list schemas for complex list items
      • Supports literal values for constant lists
      • Customizable list size via size parameter (default: 3)
      • Full validation support with validator, default, and tries parameters
      • Max depth protection for nested structures (default: 10)

    Examples:

    from fauxfactory import gen_list, gen_alpha, gen_email, gen_integer
    Generate list of strings
    tags = gen_list(gen_alpha, size=5)
    Returns: ['xKjPqR', 'mNoPqR', 'aBcDeF', 'ghIjKl', 'mnOpQr']
    Generate list of dictionaries
    users = gen_list({
    'name': gen_alpha,
    'email': gen_email,
    'active': True,
    }, size=3)
    Returns: [
    {'name': 'xKjPqR', 'email': 'abc@example.com', 'active': True},
    {'name': 'mNoPqR', 'email': 'def@example.com', 'active': True},
    {'name': 'aBcDeF', 'email': 'ghi@example.com', 'active': True},
    ]
    Generate matrix (list of lists)
    matrix = gen_list([lambda: gen_integer(min_value=0, max_value=9)], size=3)
    Returns: [[1, 5, 8], [3, 7, 2], [9, 4, 6]]

... (truncated)

Changelog

Sourced from fauxfactory's changelog.

[4.2.1] - 2026-03-30

Changed

  • Updated installation documentation to recommend uv
  • Updated Mergify configuration for current schema
  • Bumped CI action: codecov/codecov-action from 5 to 6

Fixed

  • Resolved pycrypto build failure on Python 3.11+ by upgrading keyring

Dependencies

  • Bumped cryptography from 44.0.2 to 46.0.6
  • Bumped jinja2 from 3.1.5 to 3.1.6
  • Bumped urllib3 from 2.3.0 to 2.6.3
  • Bumped requests from 2.32.3 to 2.33.0
  • Bumped wheel from 0.45.1 to 0.46.2

[4.2.0] - 2025-12-17

Added

  • New List Generator: Added gen_list() function for generating lists directly

    • gen_list(): Generate lists from item schema definitions
      • Supports callable generators for each list item
      • Supports dict/list schemas for complex list items
      • Supports literal values for constant lists
      • Customizable list size via size parameter (default: 3)
      • Full validation support with validator, default, and tries parameters
      • Max depth protection for nested structures (default: 10)

    Examples:

    from fauxfactory import gen_list, gen_alpha, gen_email, gen_integer
    Generate list of strings
    tags = gen_list(gen_alpha, size=5)
    Returns: ['xKjPqR', 'mNoPqR', 'aBcDeF', 'ghIjKl', 'mnOpQr']
    Generate list of dictionaries
    users = gen_list({
    'name': gen_alpha,
    'email': gen_email,
    'active': True,
    }, size=3)
    Returns: [
    {'name': 'xKjPqR', 'email': 'abc@example.com', 'active': True},

... (truncated)

Commits
  • 499100c Bump version to 4.2.1
  • b822bcb Bump jinja2 from 3.1.5 to 3.1.6
  • 0d3e14e Bump urllib3 from 2.3.0 to 2.6.3
  • 55bf68b fix: upgrade keyring to resolve pycrypto build failure
  • 142eab7 Bump cryptography from 44.0.2 to 46.0.6
  • ac6cc00 Bump requests from 2.32.3 to 2.33.0
  • b4b21bc fix(mergify): move method and commit_message_template to queue_rules
  • 74dd550 Bump wheel from 0.45.1 to 0.46.2
  • d2b526f ci(deps): bump codecov/codecov-action from 5 to 6
  • b957787 Updated README.rst
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [fauxfactory](https://github.com/omaciel/fauxfactory) from 3.1.1 to 4.2.1.
- [Release notes](https://github.com/omaciel/fauxfactory/releases)
- [Changelog](https://github.com/omaciel/fauxfactory/blob/master/CHANGELOG.md)
- [Commits](omaciel/fauxfactory@v3.1.1...v4.2.1)

---
updated-dependencies:
- dependency-name: fauxfactory
  dependency-version: 4.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Apr 7, 2026

Labels

The following labels could not be found: 6.13.z, 6.14.z, 6.15.z, 6.16.z, CherryPick, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants