daml/release/RELEASE.md
2023-11-16 14:07:43 +00:00

24 KiB
Raw Blame History

Making a Release

Please read this document carefully.

At a high level, a release goes through the following steps. All releases must use the same version number for stable releases; there is more leeway for snapshots and RCs.

  1. A "daml repo" release, orchestrated from this repository.
  2. A "canton repo" release, where the code in the release commit must have a dependency on the artifacts produced by step 1.
  3. An "assembly repo" release, which combines the daml and canton release artifacts and creates the GitHub Release on the daml repo.
  4. A "daml-finance repo" release. This is independant of the other steps on a technical level.
  5. A "docs repo" release to publish documentation on docs.daml.com.
  6. Manual tests and approval of the final release artifacts.

Note that these are the technical steps to create the release artifacts. The release process as a whole is quite a bit larger and involves synchronization between various teams about exactly what we want to include in a release, when we want to release it, communication to various stakeholders, etc. For details on the broader process, see the release planning document.

For the more detailed technical steps, we need to distinguish between three cases:

a. A new minor release. b. A patch release on an existing minor version. c. The weekly snapshot.

The way in which we get to the final artifact differs based on the three cases above, but the manual testing steps are always the same. As such, they have their own section at the end of this document.

Minor Release

For a minor release, we will usually set a target date and a target scope. When we get "close enough" to the target scope or date, we create the release branches for the future release, branching off from main. There is no hard rule about when this step happens, and there may be a few days between repos.

In the daml repo, the release branch for minor version A.B must be named release/A.B.x, e.g. release/2.7.x. In the canton repo, the release branch is named release-line-A.B, e.g. release-line-2.7. In both repos, we have special "branch protection rules" set up in GitHub for branches with those names.

Note: This also means you should not create branches with those (or similar) names if they are not meant to be release branches.

When the release branches contain all the required changes and there are no blockers left, we create a release candidate (RC). This step can be repeated multiple times: if issues are found with the current RC, we'll add patches to the release branches, and create a new RC.

Note: In most cases work should not be done on a release branch directly. Changes should go into the main branch first, and then be backported to the release branch.

After some time and testing (see the release planning document for details), the RC is accepted and we create a new release from the same code base.

RC version strings in the daml repo are indistinguishable from snapshot names. In the canton repo, snapshots are usually names by their date of production (e.g. 20230401) whereas RCs contain an explicit rc market (e.g. 2.6.0-rc2). This can create some confusion, but is hard to change at this time.

When you create the release branch in the daml repo, make a PR to main bumping [NIGHTLY_PREFIX] accordingly.

The steps to create a release are:

  1. In the daml repo, edit the LATEST file. The format of that file is a commit sha of the code you want to release (at this point typically the tip of the release branch), the version number you want to attribute to the build, and the words SPLIT_RELEASE (for historical reason dating to pre-2.0 days). For a release candidate, one can generate a snapshot version string using the release.sh script. For example, to create a PR for a 2.0.0 release candidate:

    $ git fetch
    $ ./release.sh snapshot origin/release/2.0.x 2.0.0
    

    You should put that line in the file in order to preserve semver ordering, and overwrite any existing snapshot with the same prefix.

    Stable releases should use the same code as the last RC, so instead of adding a new line you should simply remove the -snapshot.* part of the version string on the appropriate line of the LATEST file.

  2. Make a PR targeting the main branch with just that one line added, touching no other file. Add the Standard-Change label to that PR.

  3. When the PR is merged, the build of the corresponding commit on main will create a "split release" bundle and push it to Artifactory. It should notify on #ci-failures-daml on Slack.

  4. The next step is to request a build from the Canton team (on #team-canton) that relies on the RC snapshot. Once you have a canton release, you can proceed.

  5. Go to the assembly repo, and follow the instructions there to make a release using the Canton version that was just created. The LATEST file on the assembly repo only contains one version; it is safe to overwrite it, and to "go backwards" if needed.

  6. Once the main build of the assembly repo has finished, you should proceed with testing. You should open up this document in the branch of the release you're making, as testing instructions change over time. (Though rarely these days.)

Patch Release

On the technical side, a patch release is very similar to a minor release, except that:

  1. The non-technical steps of the broader process are much simpler. See the release planning document for details.
  2. Depending on the nature of the patch, we sometimes skip the RC process and go straight for a stable version number. This is a judgement call based on the specifics of the changes.

Patch releases are done from the corresponding release branch.

Weekly Snapshot

Note: You should not have to make any change to this repo.

The weekly snapshot relies on daily builds from both the canton and daml repos, so there is no need to create those manually.

  1. On Tuesday, you should see a reminder on Slack (#team-daml) with the name of the release tester for the week.

  2. On Wednesday morning, a cron should create a release PR on the assembly repo, mentioning you. Please reach out to @gary on Slack if that's missing.

  3. Follow the instructions in the PR description. Merge the PR and wait for the corresponding main build to finish.

  4. Once the assembly build is finished, it should post a message to Slack with instructions on how to get the release artifacts.

  5. Go to the Testing section of this file.

Note: Documentation for weekly snapshots should be published automatically by the docs repo cron. This is an hourly cron, however, and it can only run after the release artifacts have been created and pushed to GitHub releases on the daml repo, so it may take some time to appear.

Testing

This testing procedure starts once the release is listed on the releases page.

In the following notes, we assume that $VERSION contains the full version tag for the release you are testing - in other words, the full version as recorded on the Slack #team-daml message that is generated when closing the main build PR.

For example, for the Slack message:

team_daml_notifs

Just published 2.4.0-snapshot.20220830.10494.0.4622de48.

For testing:

  • Follow the instructions.
  • Install on macOS/Linux with curl -sSL https://get.daml.com/ | sh -s 2.4.0-snapshot.20220830.10494.0.4622de48.
  • Install on Windows using this link.

we set $VERSION to be 2.4.0-snapshot.20220830.10494.0.4622de48.

  • On Windows, install the new SDK using the installer on the releases page. This will typically be the asset named daml-sdk-$VERSION-windows.exe (located on the DAML releases page). Please ensure that $VERSION is expanded correctly!.

  • On MacOS/Linux (please ensure that $VERSION is expanded correctly!):

curl -sSL https://get.daml.com/ | sh -s "$VERSION"

Tips for Windows testing in an ad-hoc machine

If you are part of the release rotation, you can create Windows VMs through the [ad-hoc] project. The created machine is a bit raw, though, so here are a few tips to help you along.

First we should clone the git repository https://github.com/DACH-NY/daml-language-ad-hoc and then enter the cloned repo.

If this is your first time doing this, edit tf/main.tf and add your username to the members field of the google_project_iam_binding.machine_managers resource. Generate and submit a PR with these changes. Once the PR has been accepted, you should now have permission to create GCP compute instances.

Assuming direnv is installed, entering the daml-language-ad-hoc project directory will be sufficient to configure and install the extra software (e.g. the GCP SDK) required for your environment. Note that this could take a few minutes.

A new GCP windows instance can be created by running ./ad-hoc.sh temp windows inside the daml-language-ad-hoc project. This command prints IP address, username and password for the created Windows VM. Save this output. You will need this information later when you create an RDP connection.

‼️ After starting, it's going to take some time for the machine to be configured (see notes below).

Before you may connect to this windows instance, you need to ensure that the VPN is connected. On Mac OSX you can do this by selecting the preconfigured Connect GCP Frankfurt full tunnel VPN profile.

If you're on a Mac, you can use Microsoft Remote Desktop to connect. This can be installed via the Mac App Store or directly here.

If you're on Linux, you can use Remmina.

Remmina notes: when creating an RDP connection, you may want to specify custom resolution. The default setting is to use client resolution. You may notice a failure due to color depth settings. You can adjust those in the settings panel right below the resolution settings.

The ad-hoc machines take a bit of time to be available after being reported as created, so be patient for a bit if your first connection attempt(s) fail.

Once the Windows machine is up and running, use Firefox (in Windows) to download and install daml-sdk-$VERSION-windows.exe from https://github.com/digital-asset/daml/releases (please ensure $VERSION is expanded correctly!.

NOTE 1: Use Firefox for testing. Windows machines come with both Internet Explorer and Firefox installed. Do not make the mistake of trying to use Internet Explorer.

Ad-hoc machines also come with Node, VSCode and OpenJDK preinstalled, so you don't need to worry about those.

NOTE 2: After logging in, it takes some time for the machine to be configured. The script that installs Firefox, Node, VSCode and OpenJDK runs once the machine is available for login. The software you need should appear within about 10 minutes (an easy way to check is to try to open D:\ , as this volume is created after all the software is installed).

All the commands mentioned in this testing section can be run from a simple DOS prompt (start menu -> type "cmd" -> click "Command prompt").

At the end of your Windows testing session, please be sure to terminate the GCP instance by running ./ad-hoc.sh destroy $ID. Here $ID is the identity for your GCP instance - this is printed when you create your Windows instance.

  1. Prerequisites for running the tests:

    • Visual Studio Code, Java-SDK
    • Node.js
      • Just the bare install; no need to build C dependencies. If you have nix installed, you can use a suitable version of nodejs by running nix-shell -p nodejs-18_x before running the npm commands below.
    • Maven
  2. Run daml version --assistant=yes and verify that the new version is selected as the assistant version and the default version for new projects.

  3. Tests for the getting started guide (macOS/Linux and Windows). Note: if using a remote Windows VM and an RDP client that supports copy/paste, you can run through this on both Windows and your local unix in parallel fairly easily.

    1. For these steps you will need the getting started documentation for the release that you are about to make. This documentation (for the release that you are testing) is published at https://docs.daml.com/$VERSION/getting-started/index.html. Please ensure that $VERSION is expanded correctly before trying this link!

    2. daml new create-daml-app --template create-daml-app

    3. cd create-daml-app

      1. daml start
    4. In a new terminal (with nodejs configured as above), from the ui folder:

      1. npm install

        • if this command returns with an exit code of 0, errors may be safely ignored.
      2. npm start

    5. Open two browser windows (you want to see them simultaneously ideally) at localhost:3000.

    6. Log in as alice in the first window, log in as bob in the second window.

    7. In the first window, where you are logged in as Alice, follow Bob by typing their name in the dropdown (note that it will be Bob not bob, the former is the global alias, the latter is the participant-local username). Verify that Bob appears in the list of users Alice is following. Verify in the other browser window that Alice shows up in Bobs network.

    8. In the second window, where you are logged in as Bob, follow Alice by selecting it in the dropdown. Verify that Alice appears in the list of users Bob is following. Verify in the other browser window that Bob shows up in Alices network.

    9. Open the "Your first feature" section of the Getting Started Guide, e.g., from https://docs.daml.com/$VERSION/getting-started/first-feature.html if you did not build docs locally.

    10. In a third terminal window, run daml studio --replace=always from the project root directory. This should open Visual Studio Code. In the editor, open daml/User.daml.

    11. Copy the Message template from the documentation to the end of User.daml.

    12. Copy the SendMessage choice from the documentation to the User template below the Follow choice.

    13. Save your changes and close VSCode.

    14. In the first terminal window (where daml start is running), press 'r' (respectively 'r' + 'Enter' on Windows).

    15. In the third terminal window, run daml studio.

    16. Create MessageList.tsx, MessageEdit.tsx and modify MainView.tsx as described in the documentation.

    17. Verify that you do not see errors in the typescript code in VSCode.

    18. Save your changes and close VSCode.

    19. As before, open two browser windows at localhost:3000 and log in as alice and bob.

    20. Make Alice follow Bob.

    21. From Bob, select Alice in the Select a follower dropdown, insert hi alice in the message field and click on Send.

    22. Verify that Alice has received the message in the other window.

    23. Make Bob follow Alice.

    24. From Alice, select Bob in the Select a follower dropdown, insert hi bob in the message field and click on Send.

    25. Verify that Bob has received the message in the other window.

    26. You can now close both browser windows and both running processes (daml start and npm start).

    27. Don't forget to run this on the other platform! E.g. if you just ran through on Linux or macOS, you still need to run on Windows, and vice versa. For testing on Windows instances, please refer to the Tips for Windows testing in an ad-hoc machine notes above.

  4. Run through the following test plan on Windows. This is slightly shortened to make testing faster and since most issues are not platform specific.

    1. Run daml new myproject to create a new project and switch to it using cd myproject.
    2. Run daml start.
    3. Open your browser at http://localhost:7500, verify that you can log in as alice and there is one contract, and that the template list contains Main:Asset among other templates.
    4. Kill daml start with Ctrl-C.
    5. Run daml studio --replace=always and open daml/Main.daml. Verify that the script result appears within 30 seconds.
      • you will need to click on the Script results link in the open VS code window in order to verify this
    6. Add + at the end of line 26 after (PartyIdHint "Alice") and verify that you get an error on line 27.
  5. On your PR (the one that triggered the release process: on daml for 1.x releases, and on assembly for 2.x releases), add the comment:

    Manual tests passed on Windows.

  6. Tests for quickstart-java (Linux/macOS)

    While this is no longer the default in the Getting Started Guide, we still test it since the process covers things not covered by the new Getting Started Guide (e.g. Navigator, Scripts, Maven artifacts, etc.)

    1. Create a new project with daml new quickstart --template quickstart-java and switch to it using cd quickstart.

    2. Verify the new version is specified in daml.yaml as the sdk-version.

    3. Run daml start. Your browser should be opened automatically at http://localhost:7500.

      1. Login as alice and verify that there is 1 contract.

      2. In the templates section, verify that the templates list contains Iou:Iou, Iou:IouTransfer, and IouTrade:IouTrade among other templates.

    4. Close the tab and kill daml start using Ctrl-C.

    5. Run daml build.

    6. In 3 separate terminals (each being in the quickstart-java project directory), run:

      1. In Terminal 1 run daml sandbox --port 6865

      2. In Terminal 2, run each of the following:

        1. daml ledger upload-dar --host localhost --port 6865 .daml/dist/quickstart-0.0.1.dar

        daml script --ledger-host localhost --ledger-port 6865 --dar .daml/dist/quickstart-0.0.1.dar --script-name Main:initialize --output-file output.json
        
        1. cat output.json and verify that the output looks like this:

          ["Alice::NAMESPACE", "EUR_Bank::NAMESPACE"]
          

          where NAMESPACE is some randomly generated series of hex digits.

        2. daml navigator server localhost 6865 --port 7500

      3. In Terminal 3, run:

        daml codegen java && mvn compile exec:java@run-quickstart -Dparty=$(cat output.json | sed 's/\[\"//' | sed 's/".*//')
        

        Note that this step scrapes the Alice::NAMESPACE party name from the output.json produced in the previous steps.

        Note: It takes some time (typically around half-an-hour) for our artifacts to be available on Maven Central. If you try running the last command before the artifacts are available, you will get a "not found" error. Trying to build again in the next 24 hours will result in:

        Failure to find ... was cached in the local repository, resolution will not be reattempted until the update interval of digitalasset-releases has elapsed or updates are forced
        

        This is Maven telling you it has locally cached that "not found" result and will consider it valid for 24h. To bypass that and force Maven to try the network call again, add a -U option, as in mvn compile exec:java@run-quickstart -U. Note that this is required to bypass your local cache of the failure; it will not be required for a user trying to run the quickstart after the artifacts have been published.

        Another common problem is that artifacts fail to resolve because of custom Maven settings. Check your ~/.m2/settings.xml configuration and try disabling them temporarily.

    7. Point your browser to http://localhost:7500, login as alice and verify that there is 1 contract, 1 owned IOU, and the templates list contains Iou:Iou, Iou:IouTransfer, and IouTrade:IouTrade among other templates.

    8. Check that curl http://localhost:8080/iou returns:

      {"0":{"issuer":"EUR_Bank::NAMESPACE","owner":"Alice::NAMESPACE","currency":"EUR","amount":100.0000000000,"observers":[]}}
      

      where NAMESPACE is again the series of hex digits that you saw before.

    9. Kill all processes.

    10. Run daml studio --replace=always. This should open VSCode and trigger the Daml extension that's bundled with the new SDK version. (The new VSCode extension will not be in the marketplace at this point.)

    11. Open daml/Main.daml.

    12. Click on Script results above initialize (in the code) and wait for the script results to appear.

    13. Add + at the end of line 14, after (PartyIdHint "Alice") and confirm you get an error in line 15.

    14. Add 1 after the + and confirm you get a type error in line 14, which says that Script Party does not match Int.

    15. Delete the +1 and the e in the second "Alice" and verify that the script results are updated to the misspelled name.

    16. Right click on eurBank in line 28 and verify that "Go to Definition" takes you to the definition in line 17.

    17. Close all files.

    Note: when running daml studio --replace=always, you force the installation of the VSCode extension bundled with the Daml SDK, and disable the auto-upgrade mechanism in VSCode. To instruct VSCode to go back to the published version of the extension, including auto-upgrades, you can run daml studio --replace=published.

  7. On your PR (the one that triggered the release process: on daml for 1.x releases, and on assembly for 2.x releases), add the comment:

    Manual tests passed on [Linux/macOS].

    specifying which platform you tested on.

  8. If the release is bad, ask Gary to delete the release from the releases page. Mention why it is bad as a comment on your PR, and stop the process here.

    Note that the Standard-Change label must remain on the PR, even if the release has failed.

  9. Announce the release on #product-daml on Slack. For a stable release, direct people to the release blog post. If there were any errors during testing, but we decided to keep the release anyway, report those on the PR and include a link to the PR in the announcement.

For a stable release, you need to additionally:

  1. Go to the releases page and remove the prerelease marker on the release. Also change the text to See [the release notes blog]() for details. adding in the direct link to this version's release notes. Documentation for this release will be added to docs.daml.com on the next hour.

  2. Coordinate with product (& marketing) for the relevant public announcements (Daml Forum, Twitter, etc.).

  3. Documentation is published automatically once the release is public on GitHub, though this runs on an hourly cron.

Thanks for making a release!