Skip to content

New Package details UI

What does this MR do?

This MR moves the installation command to his new UI place, it also removes all the old code ( that was building the old UI ) and removes all the dead code.

It also removes the Files table if the package is of type composer ( because they do not have any file associated )

It also removes the feature flag altogether

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

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(:conan_package, project: p)
  5. FactoryBot.create(:nuget_package, :with_metadatum, project: p)
  6. FactoryBot.create(:maven_package, project: p)
  7. FactoryBot.create(:pypi_package, project: p)
  8. Feature.enable(:packages_details_one_column, p)

After this, the feature will be enabled on the project with id 1 ( or any other selected on the second command ) and a npm, conan, nuget, maven and pypi package will be created.

Note that the packages created with FactoryBot have fake data inside that may not match with the 'real' one Note that the factories my fail, simply retrying the command ( even multiple time ) allows them to run

Screenshots

Maven Conan Nuget Npm Composer PyPi
Screenshot_2020-08-05_at_14.15.39 Screenshot_2020-08-05_at_14.15.54 Screenshot_2020-08-05_at_14.16.01 Screenshot_2020-08-05_at_14.15.46 Screenshot_2020-08-05_at_15.05.01 Screenshot_2020-08-05_at_15.16.03

note: Composer does not have an installation instructions block yet, the installation instructions tabs will be removed in favor of a flat UI solution in a follow-up work

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