1 1. Add support for architecture-specific dependencies to the database:
4 ALTER TABLE PackageDepends ADD COLUMN DepArch VARCHAR(255) NULL DEFAULT NULL;
5 ALTER TABLE PackageRelations ADD COLUMN RelArch VARCHAR(255) NULL DEFAULT NULL;
6 ALTER TABLE PackageSources ADD COLUMN SourceArch VARCHAR(255) NULL DEFAULT NULL;
9 2. Add a time stamp column to the package votes table:
12 ALTER TABLE PackageVotes ADD COLUMN VoteTS BIGINT NULL DEFAULT NULL;
15 3. Add a "wayland" category:
18 INSERT INTO PackageCategories (Category) VALUES ('wayland');
21 4. The configuration file format has been changed. Make sure you convert
22 web/lib/config.inc.php to the new format (see conf/config.proto for an example
23 configuration) and put the resulting file in conf/config.
25 5. Support for non-virtual URLs has been removed.