Skip to content

Add history component to package details page

What does this MR do?

This MR adds a new history component, and a feature flag to iteratively build the new UI format that includes it.

To smoothly change the UI (to accomplish this#227582) iteratively without disturbing the users this work is gated behind a feature flag and split in several MRs

Change Mr
Add feature flag and new History Component 👉🏻 You are here
Add additional metadata component TBD
Move the installation commands to the center column, remove the feature flag and clean up old code TBD

As an experimental process, I would like to appoint a single reviewer and a single maintainer for all of the MRs, so that everyone has all the context.

How to test

🚀 Buckle up! 🚀

To test this we will need to do some groundwork, luckily we can leverage the rails console for all of it:

  1. rails c
  2. p = Project.find(1)
  3. FactoryBot.create(:npm_package, :with_build, project: p)
  4. FactoryBot.create(:npm_package, project: p)
  5. Feature.enable(:packages_details_one_column, p)

After this, the feature will be enabled and the project with id 1 ( or any other selected on the second command ) and two npm packages will be added, one with pipeline data and one without

Screenshots

With pipeline data

Screenshot_2020-07-29_at_16.16.46

With the cursor over time:

Screenshot_2020-07-29_at_16.22.30

Without pipeline data

Screenshot_2020-07-29_at_16.16.30

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • [-] Label as security and @ mention @gitlab-com/gl-security/appsec
  • [-] The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • [-] Security reports checked/validated by a reviewer from the AppSec team

Part of #227582 (closed)

Edited by Nicolò Maria Mezzopera

Merge request reports