Difference between revisions of "Release Process"

From Archivematica
Jump to navigation Jump to search
(20 intermediate revisions by 4 users not shown)
Line 41: Line 41:
 
# Checkout fido from https://github.com/openpreserve/fido
 
# Checkout fido from https://github.com/openpreserve/fido
 
# Update signatures
 
# Update signatures
#* Run <code>python2 -m fido.update_signatures</code> from the fido repository root
+
#* Run <code>python setup.py install</code>
 +
#* Run <code>python -m fido.update_signatures</code> from the fido repository root
 
# Add:
 
# Add:
 
#* New signature file <code>fido/conf/DROID_SignatureFile-v##.xml</code>
 
#* New signature file <code>fido/conf/DROID_SignatureFile-v##.xml</code>
Line 51: Line 52:
 
#* Old formats file
 
#* Old formats file
 
#* Old PRONOM zip file
 
#* Old PRONOM zip file
# Update the container signatures (download here: https://www.nationalarchives.gov.uk/aboutapps/pronom/droid-signature-files.htm)
+
# Replace:
#* See this pull request submitted to update to PRONOM 90: https://github.com/openpreserve/fido/pull/110
+
#* the container signatures (download here: https://www.nationalarchives.gov.uk/aboutapps/pronom/droid-signature-files.htm)
# Update <code>fido/fido.py</code> to point to the new format_files
+
#* the reference path to the container signatures in fido.py
 +
# Update version:
 +
#* Update in __init__.py
 +
#* Update in versions.xml
 
# Create pull request.  
 
# Create pull request.  
# Release new version of FIDO
+
# Release new version of FIDO.
  
  
Line 68: Line 72:
 
=== Package Siegfried ===
 
=== Package Siegfried ===
  
First, clone the [https://github.com/artefactual-labs/am-packbuild/ am-packbuild] repo. Update the Makefiles available at <code>rpm/siegfried/Makefile</code>, and  <code>deb/siegfried/Makefile</code> , and run <code>make</code> in each directory to build the packages.
+
When a new Siegfried version becomes available, clone the [https://github.com/artefactual-labs/am-packbuild/ am-packbuild] repo and update the Makefiles available at <code>rpm/siegfried/Makefile</code>, and  <code>deb/siegfried/Makefile</code> , and run <code>make</code> in each directory to build the packages.
  
 
=== Update FPR ===
 
=== Update FPR ===
  
 +
==== Examples ====
 
<div class="text-alert">
 
<div class="text-alert">
 
* In https://github.com/artefactual/archivematica-fpr-admin/pull/51, the devtools used here to generate the migration were included in archivematica-fpr-admin as django-admin management tools.
 
* In https://github.com/artefactual/archivematica-fpr-admin/pull/51, the devtools used here to generate the migration were included in archivematica-fpr-admin as django-admin management tools.
Line 82: Line 87:
 
*** https://github.com/artefactual/archivematica-fpr-admin/pull/51
 
*** https://github.com/artefactual/archivematica-fpr-admin/pull/51
 
*** https://github.com/artefactual/archivematica-fpr-admin/pull/55
 
*** https://github.com/artefactual/archivematica-fpr-admin/pull/55
 +
 +
There used to be a [https://projects.artefactual.com/issues/10466#change-46673 bug] in the imports model. To fix, Remove the <code>apps.get_model</code> lines and Import the models directly with <code>from fpr.models import Format, FormatVersion, IDRule</code>. You shouldn't have to do this now.
 +
 
</div>
 
</div>
  
This process is currently more convoluted than it needs to be, and should be simplified.
+
==== Update workflow ====
 +
 
 +
This depends on FIDO having updated PRONOM files. See [[#Update FIDO]]
  
This depends on FIDO having updated their PRONOM files. See [[#Update FIDO]]
 
  
 
# Generate a JSON with the current version of the FPR (for use later)
 
# Generate a JSON with the current version of the FPR (for use later)
#* <code>python testproject/manage.py dumpdata fpr > fpr-current.json</code>
+
#* <code>python src/dashboard/src/manage.py dumpdata fpr > tmp/fpr-current.json</code>
# Generate a blank data migration
+
# Make a new migration (you can copy from a previous one) and update it accordingly
#* E.g. <code>python testproject/manage.py makemigrations --empty --name pronom_89 fpr</code>
+
#* E.g. <code>cp src/dashboard/src/fpr/migrations/0022_pronom_94.py src/dashboard/src/fpr/migrations/0032_pronom_96.py</code>
 
# Generate the FPR migration body.  This also updates the local database's FPR with the new PRONOM IDs
 
# Generate the FPR migration body.  This also updates the local database's FPR with the new PRONOM IDs
#* E.g. <code>python testproject/manage.py import_pronom_ids path/to/fido/fido/conf/formats-v89.xml --output-filename pronom89.txt</code>
+
#* E.g. <code>python src/dashboard/src/manage.py import_pronom_ids path/to/fido/fido/conf/formats-v96.xml --output-filename pronom96.txt</code>
# Copy the output into the blank migration above the Migration class
+
# Copy the output into the blank migration above the Migration class. (Note: This is temporary, to create the data inside the FPR for the analyst steps below)
# Add the below RunPython operation into the Migration class, in the operations list
+
# Make sure the below RunPython operation is in the Migration class, in the operations list
#* <code>migrations.RunPython(data_migration),</code>
 
# <s>Due to a [https://projects.artefactual.com/issues/10466#change-46673 bug], fix the imports</s>
 
#* <s>Remove the <code>apps.get_model</code> lines</s>
 
#* <s>Import the models directly with <code>from fpr.models import Format, FormatVersion, IDRule</code></s>
 
# Commit
 
 
# Deploy on testing pipeline or locally
 
# Deploy on testing pipeline or locally
  
 
    
 
    
(Analysts)  
+
(Analyst work)  
# Update the new entries
+
# Update the new entries. Edit ONLY entries added by the latest PRONOM update otherwise the fixture won't work properly!
#* '''Ask to edit ONLY entries added by the latest PRONOM update otherwise the fixture won't work properly'''
+
#* Move new formats to the most appropriate category
#* Move new formats to a more appropriate category
 
 
#* Create rules & commands
 
#* Create rules & commands
 
#* Test with data for new formats
 
#* Test with data for new formats
(End Analysts)  
+
(End Analyst work)  
 
    
 
    
  
 
# Generate a JSON with the updated version of the FPR on the testing pipeline
 
# Generate a JSON with the updated version of the FPR on the testing pipeline
#* <code>python testproject/manage.py dumpdata fpr > fpr-updated.json</code>
+
#* <code>python src/dashboard/src/manage.py dumpdata fpr > tmp/fpr-updated.json</code>
 
# Get the updates as JSON
 
# Get the updates as JSON
#* E.g. <code>python testproject/manage.py get_fpr_changes fpr-current.json fpr-updated.json fpr/migrations/pronom_89.json</code>
+
#* E.g. <code>python src/dashboard/src/manage.py get_fpr_changes fpr-current.json fpr-updated.json pronom_96.json</code>
# Update the migration to load the JSON updates
+
# Update the migration to load the JSON updates (see previous migrations)
#* Replace the contents of the data migration function with
 
#** <code>fixture_file = os.path.join(os.path.dirname(__file__), 'pronom_89.json')</code>
 
#** <code>call_command('loaddata', fixture_file, app_label='fpr')</code>
 
 
# Review JSON -- some IDs with multipleformats are being imported and will have to be manually reviewed until bug is identified/corrected.
 
# Review JSON -- some IDs with multipleformats are being imported and will have to be manually reviewed until bug is identified/corrected.
#* Remove the direct imports from the bug
+
#* Remove any direct imports from the bug
 
#* '''Remove the pk's from the entries in the JSON document.'''
 
#* '''Remove the pk's from the entries in the JSON document.'''
 
#* Improvement Note: Because this is using loaddata, this will have problems if the FPR models are changed. A possible solution is to update get-fpr-changes to generate a migration instead of JSON
 
#* Improvement Note: Because this is using loaddata, this will have problems if the FPR models are changed. A possible solution is to update get-fpr-changes to generate a migration instead of JSON
# Commit
+
# Rebuild and test migration
# Merge
+
# Commit, send PR, merge
# Make new FPR release. Don't forget to update fpr/__init__.py! Then tag the release (e.g. `v.1.7.9`) and push the latest tag.
+
 
# Update AM's dashboard base.txt [https://github.com/artefactual/archivematica/blob/qa/1.x/src/dashboard/src/requirements/base.txt]
+
=== Finally, update IDTools versions in the FPR ===
 +
# FPR needs a migration to point to the latest and accurate versions of Fido and Siegfried, and disables the previous version of Siegfried (Fido is disabled by default. As of 1.9, there can only be one enabled identification tool). See this PR for an example of a functional migration, and heed the messy commits as a warning: https://github.com/artefactual/archivematica/pull/1547/files
 +
# Testing the above migration can be done by running <code>make bootstrap-dashboard-db</code> to recreate the dashboard and run all associated migrations.
  
 
== Update dependencies ==
 
== Update dependencies ==
Line 281: Line 283:
  
 
* Ensure you are adding the tag to the right commit! It should match the last commit of the final release candidate.
 
* Ensure you are adding the tag to the right commit! It should match the last commit of the final release candidate.
 +
* You can create the tags from GitHub or from CLI: <code>git tag $VERSION $REVISION</code>and <code>git push origin refs/tags/$VERSION</code>
 +
* Make sure that the version is valid,
 +
** Valid values: v1.8.1, v1.8.1-rc.1
 +
** Invalid values: 1.8.1, 1.8, 1.8.1-rc1, v1.8.1-rc1
  
 
'''Step 3''': Sysadmin (for now; hopefully Jenkins for 1.8) builds new packages using the release tag.
 
'''Step 3''': Sysadmin (for now; hopefully Jenkins for 1.8) builds new packages using the release tag.
Line 290: Line 296:
 
* See the internal wiki for steps.
 
* See the internal wiki for steps.
  
''' Step 5''': Analyst updates the Archivematica documentation links in the install / upgrade section with the correct package names and locations.
+
'''Step 5''': Analyst updates the Archivematica documentation links in the install / upgrade section with the correct package names and locations (e.g. conf.py in docs repo)
  
''' Step 6''': Sysadmin updates deploy-pub to use the new links.
+
'''Step 6''': Sysadmin updates deploy-pub to use the new links.
  
 
'''Step 7''': Developer updates archivematica-web (managed in Gitolite / Gitlab) to show the new release.
 
'''Step 7''': Developer updates archivematica-web (managed in Gitolite / Gitlab) to show the new release.
Line 298: Line 304:
 
* See the internal wiki for steps.
 
* See the internal wiki for steps.
  
'''Step 8''': Developer changes the default branches in GitHub.
+
'''Step 8''': Developer changes the default branches in GitHub and Gitolite and updates references in https://gist.github.com/qubot.
  
 
'''Step 9''': Systems administrator updates am-packbuild and upgrades public and private demo sites.
 
'''Step 9''': Systems administrator updates am-packbuild and upgrades public and private demo sites.
Line 304: Line 310:
 
* See the internal wiki for steps.
 
* See the internal wiki for steps.
  
'''Step 10''': Release Captain finalizes the [https://wiki.archivematica.org/Release_Notes release notes] and adds a link to them in the [https://github.com/artefactual/archivematica/releases GitHub release].
+
'''Step 10''': Developer, Ops, or Analyst, creates a release branch, and release, of [https://github.com/artefactual-labs/archivematica-acceptance-tests Archivematica Automated Acceptance tests] (AMAUAT) in-line with the Archivematica versioning, e.g. for Archivematica 1.10 release a 1.10 branch and [https://github.com/artefactual-labs/archivematica-acceptance-tests/releases release] of AMAUAT.
 +
 
 +
'''Step 11''': Release Captain finalizes the [https://wiki.archivematica.org/Release_Notes release notes] and adds a link to them in the [https://github.com/artefactual/archivematica/releases GitHub release]. Make sure that the releases are marked as "published".
 +
* https://github.com/artefactual/archivematica/releases
 +
* https://github.com/artefactual/archivematica-storage-service/releases
  
'''Step 11''': Release Captain posts a notification to the [https://groups.google.com/forum/#!forum/archivematica Archivematica Google Group].
+
'''Step 12''': Release Captain posts a notification to the [https://groups.google.com/forum/#!forum/archivematica Archivematica Google Group] and the News section of the Artefactual website.
  
'''Step 12''': Release Captain closes all release-related issues in the Verified column in Waffle.
+
'''Step 13''': Release Captain closes all release-related issues in the Verified column in Waffle.
  
'''Step 13''': All involved eat cake (for a major release) or cupcakes (for a minor release).
+
'''Step 14''': All involved eat cake (for a major release) or cupcakes (for a minor release).
  
 
[[Category:Process documentation]]
 
[[Category:Process documentation]]

Revision as of 12:20, 25 January 2020

This is an outline/checklist of the process to create Archivematica & Storage service releases.

Overview

  1. Merge new features
  2. Test new features
  3. #Update PRONOM
  4. Write documentation
  5. Update dependencies
  6. Update version
  7. #Build deb/rpm packages
  8. Test packages for new installs and upgrades
  9. #Tag Release
  10. Update ansible roles
  11. Announce release

Translations

Needs to be improved!

  • Determine code freeze / call for translations process
  • Describe processes: push and pull - and when it needs to happen
  • We made a choice on how we're using Transifex to keep things simple: only one branch at a time pushed to Transifex. E.g. once SS 0.10.0 is released we have to decide if:
    1. We move Transifex to stable/0.10.x for a while so we can work on a minor release with translation fixes (e.g. 0.10.1), or
    2. We move to qa/0.11.x which would only make possible to bring new translations to SS 0.11.0.
  • Affected repositories
    • archivematica-storage-service
    • archivematica-workflow
    • archivematica-dashboard
      • Includes archivematica-fpr-admin
      • Includes appraisal-tab

Update PRONOM

PRONOM needs to be updated in our file identification tools, FIDO & Siegfried, as well as in the FPR.

Update FIDO

The FPR update currently use FIDO as a source for new PRONOM, since it is formatted nicer than PRONOM offers, so we depend on FIDO having updated their PRONOM. If that has not happened, we can generate a new formats-v##.xml by updating signatures manually. Artefactual can also update PRONOM and submit a PR to FIDO.

  1. Checkout fido from https://github.com/openpreserve/fido
  2. Update signatures
    • Run python setup.py install
    • Run python -m fido.update_signatures from the fido repository root
  3. Add:
    • New signature file fido/conf/DROID_SignatureFile-v##.xml
    • New formats file fido/conf/formats-v##.xml
    • New PRONOM zip file fido/conf/pronom-xml-v##.zip
    • Updated fido/conf/versions.xml
  4. Remove:
    • Old signature file
    • Old formats file
    • Old PRONOM zip file
  5. Replace:
  6. Update version:
    • Update in __init__.py
    • Update in versions.xml
  7. Create pull request.
  8. Release new version of FIDO.


Remember to package FIDO and Siegfried in Archivematica! See next step below.

Package FIDO

FIDO is packaged via PyPi under opf-fido. The Makefile includes a `make package` command that will do the update.

MCPClient's base.txt [1] will need to be updated with the latest version.

Package Siegfried

When a new Siegfried version becomes available, clone the am-packbuild repo and update the Makefiles available at rpm/siegfried/Makefile, and deb/siegfried/Makefile , and run make in each directory to build the packages.

Update FPR

Examples

There used to be a bug in the imports model. To fix, Remove the apps.get_model lines and Import the models directly with from fpr.models import Format, FormatVersion, IDRule. You shouldn't have to do this now.

Update workflow

This depends on FIDO having updated PRONOM files. See #Update FIDO


  1. Generate a JSON with the current version of the FPR (for use later)
    • python src/dashboard/src/manage.py dumpdata fpr > tmp/fpr-current.json
  2. Make a new migration (you can copy from a previous one) and update it accordingly
    • E.g. cp src/dashboard/src/fpr/migrations/0022_pronom_94.py src/dashboard/src/fpr/migrations/0032_pronom_96.py
  3. Generate the FPR migration body. This also updates the local database's FPR with the new PRONOM IDs
    • E.g. python src/dashboard/src/manage.py import_pronom_ids path/to/fido/fido/conf/formats-v96.xml --output-filename pronom96.txt
  4. Copy the output into the blank migration above the Migration class. (Note: This is temporary, to create the data inside the FPR for the analyst steps below)
  5. Make sure the below RunPython operation is in the Migration class, in the operations list
  6. Deploy on testing pipeline or locally


(Analyst work)

  1. Update the new entries. Edit ONLY entries added by the latest PRONOM update otherwise the fixture won't work properly!
    • Move new formats to the most appropriate category
    • Create rules & commands
    • Test with data for new formats

(End Analyst work)


  1. Generate a JSON with the updated version of the FPR on the testing pipeline
    • python src/dashboard/src/manage.py dumpdata fpr > tmp/fpr-updated.json
  2. Get the updates as JSON
    • E.g. python src/dashboard/src/manage.py get_fpr_changes fpr-current.json fpr-updated.json pronom_96.json
  3. Update the migration to load the JSON updates (see previous migrations)
  4. Review JSON -- some IDs with multipleformats are being imported and will have to be manually reviewed until bug is identified/corrected.
    • Remove any direct imports from the bug
    • Remove the pk's from the entries in the JSON document.
    • Improvement Note: Because this is using loaddata, this will have problems if the FPR models are changed. A possible solution is to update get-fpr-changes to generate a migration instead of JSON
  5. Rebuild and test migration
  6. Commit, send PR, merge

Finally, update IDTools versions in the FPR

  1. FPR needs a migration to point to the latest and accurate versions of Fido and Siegfried, and disables the previous version of Siegfried (Fido is disabled by default. As of 1.9, there can only be one enabled identification tool). See this PR for an example of a functional migration, and heed the messy commits as a warning: https://github.com/artefactual/archivematica/pull/1547/files
  2. Testing the above migration can be done by running make bootstrap-dashboard-db to recreate the dashboard and run all associated migrations.

Update dependencies

Python Packages

metsrw and agentarchives both have Makefiles that handle most of the packaging

  1. Check for open PRs, merge as necessary
  2. Update setup.py with the new version, create a pull request, code review, merge.
  3. Tag new release, push tag
    • git push --tags
  4. Run make package
  5. make clean will delete packaging related files

Update version

  1. Update PREMIS agent to Archivematica-X.X.X
  2. Update Dashboard-Administration-Version to X.X.X
  3. Update Storage services-Admin-Version to X.X.X

Build deb/rpm packages

The am-packbuild repository has all the code related to building packages, except the building gpg keys. The steps to follow in order to build production production packages are as follow

Debian packages

  1. Clone the am-packbuild repo. Latest work is available in master
  2. Put your gpg private key into debs/GPG-KEYS-REPOS. That's the place the Dockerfile looks for it when building the environment.
  3. Update the makefile at debs/archivematica/Makefile in order to reflect version/keys you want to use.
  4. Run <make>, and the packages will be available in the build once the building finishes.
  5. Upload packages to public debian repository

Debian reposities

There are two debian repositories, one for archivematica packages, and one for dependencies. The procedure in order to create new ones, or upload packages to them, is the same:

    • Create folder for repo, and configuration file:

mkdir -p /path/to/repos/repo/conf

cat > /path/to/repos/repo/conf/distributions << EOF

Codename: trusty

Components: main

Architectures: amd64 source

SignWith: <short gpg keyid>

EOF

    • Go inside the repo, and import the packages previously uploaded with:

cd /path/to/repos/repo/

reprepro includedeb trusty /path/to/packages/*.deb

reprepro includedsc trusty /path/to/packages/*.deb

The current official repo is at packages.archivematica.org

RPM Packages

  1. Package specs are available in am-packbuild/rpms
  2. There are vars in the Makefiles for version/release , so update them when needed
  3. In order to build them, just go into the directory you want to build, and run “make”

RPM Repositories

Once the packages are built, upload them to packages.archivematica.org/<version>/centos Sign the packages with rpm --addsign *.rpm (already signed packages will be skipped)

Go inside that dir, and as user ohbot run:

  • rpm --addsign *.rpm (already signed packages will be skipped)
  • createrepo . (For packages other than archivematica , use “centos-extras” repository)
  • gpg --detach-sign --armor repodata/repomd.xml

The first gpg command signs the rpms, and the later signs the repository content.

Development stage

In the final stages of development, the repositories for the new releases are created, but packages are signed with a development key to avoid mistakes. Once the development stage finishes, all new packages need to be rebuild using the production keys.

Development packages are built on each new commit to stable branches by Jenkins. Repositories are available at http://jenkins-ci.archivematica.org/repos/

Website

Needs to be improved!

Homepage

  • Make changes in archivematica-web.git
    • Update links
    • Add new doc repos
  • Deploy
    • Log in sites-pub as archivematica-web and run update-web.sh

Documentation

  • Deploy
    • Log in sites-pub as archivematica-web and run update-docs.sh

Wiki

  • Release notes
  • Installation notes
  • ...

News

  • Twitter
  • Mailing list
  • News section in artefactual.com

Update ansible roles

Check that the deploy-pub vars files for archivematica are updated, and the ansible-ansiblematica-src and ansible-archivematica-pkg roles are able to deploy the new version

Tag Release

  1. Add release tags to repositories
    • Archivematica
    • Storage Service
    • FPR-admin
    • appraisal tab
    • transfer browser
    • Others?
  2. Create stable/#.x branch
  3. Delete qa/#.x branch if necessary

Release Day Checklist

Step 0: Operations Team checklist tasks are complete (as of September 2018, this is an internal Trello list).

  • At this point, there should be a release candidate that has been tested. A release candidate always precedes a tagged release. If any new issues have been uncovered, a new release candidate should be made and tested before proceeding with the rest of the steps.

Step 1: Release Captain decides whether the current release candidate is ready to release

  • Look at all recently filed issues in GitHub -- is anything concerning / relevant for this release? Does anything need to be addressed? If an issue is uncovered that does need to be fixed, this restarts the checklist back to Step 0.
  • Have automated tests passed?

Step 2: Release Captain creates a new tag for the release via gitolite (e.g. `v1.7.0` or `v0.11.0` for the Storage Service) or assigns someone else to do it.

  • Ensure you are adding the tag to the right commit! It should match the last commit of the final release candidate.
  • You can create the tags from GitHub or from CLI: git tag $VERSION $REVISIONand git push origin refs/tags/$VERSION
  • Make sure that the version is valid,
    • Valid values: v1.8.1, v1.8.1-rc.1
    • Invalid values: 1.8.1, 1.8, 1.8.1-rc1, v1.8.1-rc1

Step 3: Sysadmin (for now; hopefully Jenkins for 1.8) builds new packages using the release tag.

  • See the internal wiki for steps.

Step 4: Sysadmin copies new packages to the proper repository (e.g., https://packages.archivematica.org/1.7.x/)

  • See the internal wiki for steps.

Step 5: Analyst updates the Archivematica documentation links in the install / upgrade section with the correct package names and locations (e.g. conf.py in docs repo)

Step 6: Sysadmin updates deploy-pub to use the new links.

Step 7: Developer updates archivematica-web (managed in Gitolite / Gitlab) to show the new release.

  • See the internal wiki for steps.

Step 8: Developer changes the default branches in GitHub and Gitolite and updates references in https://gist.github.com/qubot.

Step 9: Systems administrator updates am-packbuild and upgrades public and private demo sites.

  • See the internal wiki for steps.

Step 10: Developer, Ops, or Analyst, creates a release branch, and release, of Archivematica Automated Acceptance tests (AMAUAT) in-line with the Archivematica versioning, e.g. for Archivematica 1.10 release a 1.10 branch and release of AMAUAT.

Step 11: Release Captain finalizes the release notes and adds a link to them in the GitHub release. Make sure that the releases are marked as "published".

Step 12: Release Captain posts a notification to the Archivematica Google Group and the News section of the Artefactual website.

Step 13: Release Captain closes all release-related issues in the Verified column in Waffle.

Step 14: All involved eat cake (for a major release) or cupcakes (for a minor release).