Skip to content

Resolve duplicate versions for an add-on to allow the version string to be unique per add-on #7585

@wagnerand

Description

@wagnerand

To date, there are about 2800 submissions with a duplicate version string (the version number). 16 of these affected webextensions [1].

We should resolve these duplicates so we can make the version string unique (per add-on).

[1] Query for reference:

select
  v.addon_id, v.version, count(v.id)
  from versions v
  where v.id in (
    select f.version_id
    from files f
    where f.is_signed = 1 and f.is_webextension = 1)
  group by v.addon_id, v.version having count(v.id) > 1;

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions