%# The data structure for this file looks like this: { from: 'v1.2.3', to: 'v1.2.4', packages: { /* The PackageInfoMap from "lib/packages.ts" */ // For a commit with description: // ------------------------------------------------------ // feat(@angular/pwa): add something to this // // Fixes #123 // ------------------------------------------------------ // See https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser commits: [ { type: 'feat', // | 'fix' | 'refactor' | 'build' | 'test' | 'ci' scope: '@angular/pwa', // package name (or null) subject: 'add something to this', header: 'feat(@angular/pwa): add something to this', body: null, footer: 'Fixes #123', references: [ { action: 'Closes', owner: null, repository: null, issue: '123', raw: '#123', prefix: '#' } ], } ] } %><% // Sort those packages to the top, in those orders. Others will be sorted alphabetically. const CUSTOM_SORT_ORDER = [ '@angular/cli', '@schematics/angular', '@angular-devkit/architect-cli', '@angular-devkit/schematics-cli', ]; %> # Commits
<% if (scope) { %><%= scope %> (<%= packages[scope].version %>)<% } else { %>Misc<% } %> | ||
Commit | Description | Notes |