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

Feature: Module Lifecycle and Experimental/Deprecated Features #3910

Merged
merged 4 commits into from
Mar 25, 2024

Commits on Mar 25, 2024

  1. introduce a feature lifecycle to ./configure.py

    The new configuration switches --enable/disable-deprecated-features
    and --enable/disable-experimental-features define the C macros
    BOTAN_DISABLE_DEPRECATED_FEATURES and BOTAN_ENABLE_EXPERIMENTAL_FEATURES.
    There are currently no code-locations that actually react to these.
    reneme committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    affa6f2 View commit details
    Browse the repository at this point in the history
  2. introduce a basic module lifecycle

    Modules may now be marked as 'Deprecated' or 'Experimental' in
    their <module_info> section. When configuring a build with either
    of them, a warning will be issued in the output of ./configure.py.
    
    Experimental modules won't be built by default and may be enabled
    either explicitly via --enable-modules or globally (all-at-once) with
    --enable-experimental-features.
    
    Deprecated modules are built by default but are scheduled for
    removal in a future release of the library.
    reneme committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    b37cb27 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b8c1d3c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5269469 View commit details
    Browse the repository at this point in the history