metadrop/drupal-maintenance-reporter

There is no license information available for the latest version (1.4.4) of this package.

Tools to make maintenance reports in drupal projects

1.4.4 2025-01-29 18:22 UTC

This package is auto-updated.

Last update: 2025-03-01 00:31:54 UTC


README

This project contains tools to do maintenance reports.

It allows:

  • Showing the updated packages in a specific period.
  • Show the fixed securities in a specific period.

Requirements

These packages must be installed globally:

Usage

This example command generates a report of the develop branch of February 2023:

cd my-project

./vendor/bin/drupal-maintenance-reporter report develop --from=2023-02-01 --to=2023-02-28

Arguments

  • branch: Git branch to analyze.
  • from: Y-m-d date to start from.
  • to: Y-m-d date to start to.

Examples

  • Generate a full report (packages updated + fixed securities):

    cd my-project
    
    ./vendor/bin/drupal-maintenance-reporter report develop --from=2023-02-01 --to=2023-02-28
    
  • Show packages updated given a specific period:

    cd my-project
    
    ./vendor/bin/drupal-maintenance-reporter composer-lock-diff-period develop --from=2023-02-01 --to=2023-02-28
    
  • Fixed securities in a specific period:

    cd my-project
    
    ./vendor/bin/drupal-maintenance-reporter securities-fixed develop --from=2023-02-01 --to=2023-02-28