Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: formencode/formencode
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.1.0
Choose a base ref
...
head repository: formencode/formencode
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 10 commits
  • 7 files changed
  • 3 contributors

Commits on Nov 5, 2023

  1. Use https for the documentation

    Cito committed Nov 5, 2023
    Configuration menu
    Copy the full SHA
    64f6726 View commit details
    Browse the repository at this point in the history
  2. Fix badges

    Cito committed Nov 5, 2023
    Configuration menu
    Copy the full SHA
    43368d5 View commit details
    Browse the repository at this point in the history
  3. Make README a bit nicer

    Cito committed Nov 5, 2023
    Configuration menu
    Copy the full SHA
    ec2ea1b View commit details
    Browse the repository at this point in the history
  4. Fix syntax in README file

    Cito committed Nov 5, 2023
    Configuration menu
    Copy the full SHA
    28c9000 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. Configuration menu
    Copy the full SHA
    43edbb5 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2025

  1. Fix test automation

    This fixes tests on Github that are failing for several reasons:
    - Python 3.7 is not supported on the latest Ubuntu and MacOS images
    - The URL doctest is failing on a redirect from http to https
    lambacck committed Jan 30, 2025
    Configuration menu
    Copy the full SHA
    298bbb4 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2025

  1. Configuration menu
    Copy the full SHA
    a98fcd8 View commit details
    Browse the repository at this point in the history
  2. Don't allow FieldStorageUploadConverter without cgi module

    In Python 3.13 and later the cgi module has been removed and this meant
    that importing the `cgi` module started making it so
    `formencode.validators` could not be imported. This was resolved in #176
    by detecting the import error, setting `cgi` to `None`, and then
    skipping behaviour that used `cgi.FieldStorage`. Using
    `FieldStorageUploadConverter` without `cgi.FieldStorage` does not make
    sense. This change adds a check to
    `FieldStorageUploadConverter.__init_` to prevent instantiating it
    like we do for DNS validators so that using it doesn't silently do
    nothing.
    
    Probably if you are using FieldStorageUploadConverter then you'll have
    `legacy-cgi` installed because you are either already using it directly,
    or you are getting it transitively through something like WebOb.
    lambacck committed Jan 31, 2025
    Configuration menu
    Copy the full SHA
    8375977 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c296946 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #184 from formencode/automated-pypi-release-and-2.1.1

    Fix test automation and automate releases when a tag is pushed
    lambacck authored Jan 31, 2025
    Configuration menu
    Copy the full SHA
    c9659d6 View commit details
    Browse the repository at this point in the history
Loading