├── .github └── workflows │ └── check-and-update.yml ├── .gitignore ├── README.md └── newVersion.sh /.github/workflows/check-and-update.yml: -------------------------------------------------------------------------------- 1 | name: Check and update 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | schedule: 8 | - cron: '0 */2 * * *' 9 | 10 | jobs: 11 | build: 12 | runs-on: macOS-latest 13 | steps: 14 | - uses: actions/checkout@v4 15 | with: 16 | fetch-depth: 0 17 | - uses: actions/setup-node@v4 18 | - name: Set git user 19 | run: | 20 | git config --global user.email cedric@ninja-squad.com 21 | git config --global user.name cexbrayat 22 | git remote set-url origin https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/cexbrayat/angular-cli-diff.git 23 | env: 24 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 25 | - name: Generate new version 26 | run: ./newVersion.sh 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ponyracer/README.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Angular CLI diff 2 | 3 | This repository exposes an Angular CLI app generated with 4 | `ng new ponyracer` with each version of Angular CLI. 5 | 6 | A dedicated branch per version makes changes very easy 7 | to watch. For example: 8 | 9 | * https://github.com/cexbrayat/angular-cli-diff/compare/1.1.0...1.2.0 10 | * https://github.com/cexbrayat/angular-cli-diff/compare/1.1.3...1.4.0 11 | 12 | See table below for the complete list. 13 | 14 | Note that this is inspired by [RN diff](https://github.com/ncuillery/rn-diff). 15 | 16 | This is a small project that we needed to keep our ebook [Become a ninja with Angular](https://books.ninja-squad.com/angular) 17 | and our [online training about Angular](https://angular-exercises.ninja-squad.com) up to date, 18 | we hope it can be useful for you too! 19 | 20 | ## Version changes 21 | 22 | Version|Compare view|Stats 23 | ----|----|---- 24 | 20.1.0-next.0|[20.0.1...20.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.1...20.1.0-next.0)| 1 file changed, 9 insertions(+), 9 deletions(-) 25 | 20.0.1|[20.0.0...20.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0...20.0.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 26 | 20.0.0|[20.0.0-rc.4...20.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-rc.4...20.0.0)| 1 file changed, 9 insertions(+), 9 deletions(-) 27 | 20.0.0-rc.4|[20.0.0-rc.3...20.0.0-rc.4](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-rc.3...20.0.0-rc.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 28 | 20.0.0-rc.3|[20.0.0-rc.2...20.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-rc.2...20.0.0-rc.3)| 3 files changed, 3 insertions(+), 9 deletions(-) 29 | 20.0.0-rc.2|[20.0.0-rc.1...20.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-rc.1...20.0.0-rc.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 30 | 20.0.0-rc.1|[20.0.0-rc.0...20.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-rc.0...20.0.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 31 | 20.0.0-rc.0|[20.0.0-next.9...20.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-next.9...20.0.0-rc.0)| 2 files changed, 2 insertions(+), 3 deletions(-) 32 | 20.0.0-next.9|[20.0.0-next.8...20.0.0-next.9](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-next.8...20.0.0-next.9)| 1 file changed, 3 insertions(+), 3 deletions(-) 33 | 20.0.0-next.8|[20.0.0-next.7...20.0.0-next.8](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-next.7...20.0.0-next.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 34 | 20.0.0-next.7|[20.0.0-next.6...20.0.0-next.7](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-next.6...20.0.0-next.7)| 5 files changed, 10 insertions(+), 8 deletions(-) 35 | 20.0.0-next.6|[20.0.0-next.5...20.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-next.5...20.0.0-next.6)| 4 files changed, 19 insertions(+), 10 deletions(-) 36 | 20.0.0-next.5|[20.0.0-next.4...20.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-next.4...20.0.0-next.5)| 3 files changed, 3 insertions(+), 3 deletions(-) 37 | 20.0.0-next.4|[20.0.0-next.3...20.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-next.3...20.0.0-next.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 38 | 20.0.0-next.3|[20.0.0-next.2...20.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-next.2...20.0.0-next.3)| 3 files changed, 5 insertions(+), 8 deletions(-) 39 | 20.0.0-next.2|[20.0.0-next.1...20.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-next.1...20.0.0-next.2)| 6 files changed, 13 insertions(+), 13 deletions(-) 40 | 20.0.0-next.1|[20.0.0-next.0...20.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/20.0.0-next.0...20.0.0-next.1)| 4 files changed, 4 insertions(+), 6 deletions(-) 41 | 20.0.0-next.0|[19.2.14...20.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.14...20.0.0-next.0)| 2 files changed, 15 insertions(+), 15 deletions(-) 42 | 19.2.14|[19.2.13...19.2.14](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.13...19.2.14)| 1 file changed, 2 insertions(+), 2 deletions(-) 43 | 19.2.13|[19.2.12...19.2.13](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.12...19.2.13)| 1 file changed, 2 insertions(+), 2 deletions(-) 44 | 19.2.12|[19.2.11...19.2.12](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.11...19.2.12)| 1 file changed, 2 insertions(+), 2 deletions(-) 45 | 19.2.11|[19.2.10...19.2.11](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.10...19.2.11)| 1 file changed, 2 insertions(+), 2 deletions(-) 46 | 19.2.10|[19.2.9...19.2.10](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.9...19.2.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 47 | 19.2.9|[19.2.8...19.2.9](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.8...19.2.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 48 | 19.2.8|[19.2.7...19.2.8](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.7...19.2.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 49 | 19.2.7|[19.2.6...19.2.7](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.6...19.2.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 50 | 19.2.6|[19.2.5...19.2.6](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.5...19.2.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 51 | 19.2.5|[19.2.4...19.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.4...19.2.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 52 | 19.2.4|[19.2.3...19.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.3...19.2.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 53 | 19.2.3|[19.2.2...19.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.2...19.2.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 54 | 19.2.2|[19.2.1...19.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.1...19.2.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 55 | 19.2.1|[19.2.0...19.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.0...19.2.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 56 | 19.2.0|[19.2.0-rc.0...19.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.0-rc.0...19.2.0)| 1 file changed, 10 insertions(+), 10 deletions(-) 57 | 19.2.0-rc.0|[19.2.0-next.2...19.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.0-next.2...19.2.0-rc.0)| 1 file changed, 2 insertions(+), 3 deletions(-) 58 | 19.2.0-next.2|[19.2.0-next.1...19.2.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.0-next.1...19.2.0-next.2)| 1 file changed, 3 insertions(+), 3 deletions(-) 59 | 19.2.0-next.1|[19.2.0-next.0...19.2.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/19.2.0-next.0...19.2.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 60 | 19.2.0-next.0|[19.1.9...19.2.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.9...19.2.0-next.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 61 | 19.1.9|[19.1.8...19.1.9](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.8...19.1.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 62 | 19.1.8|[19.1.7...19.1.8](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.7...19.1.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 63 | 19.1.7|[19.1.6...19.1.7](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.6...19.1.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 64 | 19.1.6|[19.1.5...19.1.6](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.5...19.1.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 65 | 19.1.5|[19.1.4...19.1.5](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.4...19.1.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 66 | 19.1.4|[19.1.3...19.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.3...19.1.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 67 | 19.1.3|[19.1.2...19.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.2...19.1.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 68 | 19.1.2|[19.1.1...19.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.1...19.1.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 69 | 19.1.1|[19.1.0...19.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.0...19.1.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 70 | 19.1.0|[19.1.0-rc.0...19.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.0-rc.0...19.1.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 71 | 19.1.0-rc.0|[19.1.0-next.2...19.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.0-next.2...19.1.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 72 | 19.1.0-next.2|[19.1.0-next.1...19.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.0-next.1...19.1.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 73 | 19.1.0-next.1|[19.1.0-next.0...19.1.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/19.1.0-next.0...19.1.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 74 | 19.1.0-next.0|[19.0.7...19.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.7...19.1.0-next.0)| 1 file changed, 13 insertions(+), 13 deletions(-) 75 | 19.0.7|[19.0.6...19.0.7](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.6...19.0.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 76 | 19.0.6|[19.0.5...19.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.5...19.0.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 77 | 19.0.5|[19.0.4...19.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.4...19.0.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 78 | 19.0.4|[19.0.3...19.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.3...19.0.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 79 | 19.0.3|[19.0.2...19.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.2...19.0.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 80 | 19.0.2|[19.0.1...19.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.1...19.0.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 81 | 19.0.1|[19.0.0...19.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0...19.0.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 82 | 19.0.0|[19.0.0-rc.3...19.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-rc.3...19.0.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 83 | 19.0.0-rc.3|[19.0.0-rc.2...19.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-rc.2...19.0.0-rc.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 84 | 19.0.0-rc.2|[19.0.0-rc.1...19.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-rc.1...19.0.0-rc.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 85 | 19.0.0-rc.1|[19.0.0-rc.0...19.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-rc.0...19.0.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 86 | 19.0.0-rc.0|[19.0.0-next.13...19.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.13...19.0.0-rc.0)| 2 files changed, 2 insertions(+), 3 deletions(-) 87 | 19.0.0-next.13|[19.0.0-next.12...19.0.0-next.13](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.12...19.0.0-next.13)| 1 file changed, 2 insertions(+), 2 deletions(-) 88 | 19.0.0-next.12|[19.0.0-next.11...19.0.0-next.12](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.11...19.0.0-next.12)| 3 files changed, 3 insertions(+), 6 deletions(-) 89 | 19.0.0-next.11|[19.0.0-next.10...19.0.0-next.11](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.10...19.0.0-next.11)| 3 files changed, 7 insertions(+), 4 deletions(-) 90 | 19.0.0-next.10|[19.0.0-next.9...19.0.0-next.10](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.9...19.0.0-next.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 91 | 19.0.0-next.9|[19.0.0-next.8...19.0.0-next.9](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.8...19.0.0-next.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 92 | 19.0.0-next.8|[19.0.0-next.7...19.0.0-next.8](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.7...19.0.0-next.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 93 | 19.0.0-next.7|[19.0.0-next.6...19.0.0-next.7](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.6...19.0.0-next.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 94 | 19.0.0-next.6|[19.0.0-next.5...19.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.5...19.0.0-next.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 95 | 19.0.0-next.5|[19.0.0-next.4...19.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.4...19.0.0-next.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 96 | 19.0.0-next.4|[19.0.0-next.3...19.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.3...19.0.0-next.4)| 1 file changed, 4 insertions(+), 4 deletions(-) 97 | 19.0.0-next.3|[19.0.0-next.2...19.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.2...19.0.0-next.3)| 2 files changed, 3 insertions(+), 7 deletions(-) 98 | 19.0.0-next.2|[19.0.0-next.1...19.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.1...19.0.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 99 | 19.0.0-next.1|[19.0.0-next.0...19.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/19.0.0-next.0...19.0.0-next.1)| 3 files changed, 5 insertions(+), 7 deletions(-) 100 | 19.0.0-next.0|[18.2.19...19.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.19...19.0.0-next.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 101 | 18.2.19|[18.2.18...18.2.19](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.18...18.2.19)| 1 file changed, 2 insertions(+), 2 deletions(-) 102 | 18.2.18|[18.2.17...18.2.18](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.17...18.2.18)| 1 file changed, 2 insertions(+), 2 deletions(-) 103 | 18.2.17|[18.2.16...18.2.17](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.16...18.2.17)| 1 file changed, 2 insertions(+), 2 deletions(-) 104 | 18.2.16|[18.2.15...18.2.16](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.15...18.2.16)| 1 file changed, 2 insertions(+), 2 deletions(-) 105 | 18.2.15|[18.2.14...18.2.15](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.14...18.2.15)| 1 file changed, 2 insertions(+), 2 deletions(-) 106 | 18.2.14|[18.2.13...18.2.14](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.13...18.2.14)| 1 file changed, 2 insertions(+), 2 deletions(-) 107 | 18.2.13|[18.2.12...18.2.13](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.12...18.2.13)| 1 file changed, 2 insertions(+), 2 deletions(-) 108 | 18.2.12|[18.2.11...18.2.12](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.11...18.2.12)| 1 file changed, 2 insertions(+), 2 deletions(-) 109 | 18.2.11|[18.2.10...18.2.11](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.10...18.2.11)| 1 file changed, 2 insertions(+), 2 deletions(-) 110 | 18.2.10|[18.2.9...18.2.10](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.9...18.2.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 111 | 18.2.9|[18.2.8...18.2.9](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.8...18.2.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 112 | 18.2.8|[18.2.7...18.2.8](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.7...18.2.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 113 | 18.2.7|[18.2.6...18.2.7](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.6...18.2.7)| 2 files changed, 3 insertions(+), 2 deletions(-) 114 | 18.2.6|[18.2.5...18.2.6](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.5...18.2.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 115 | 18.2.5|[18.2.4...18.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.4...18.2.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 116 | 18.2.4|[18.2.3...18.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.3...18.2.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 117 | 18.2.3|[18.2.2...18.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.2...18.2.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 118 | 18.2.2|[18.2.1...18.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.1...18.2.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 119 | 18.2.1|[18.2.0...18.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.0...18.2.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 120 | 18.2.0|[18.2.0-rc.0...18.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.0-rc.0...18.2.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 121 | 18.2.0-rc.0|[18.2.0-next.3...18.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.0-next.3...18.2.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 122 | 18.2.0-next.3|[18.2.0-next.2...18.2.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.0-next.2...18.2.0-next.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 123 | 18.2.0-next.2|[18.2.0-next.1...18.2.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.0-next.1...18.2.0-next.2)| 1 file changed, 3 insertions(+), 3 deletions(-) 124 | 18.2.0-next.1|[18.2.0-next.0...18.2.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/18.2.0-next.0...18.2.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 125 | 18.2.0-next.0|[18.1.4...18.2.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.4...18.2.0-next.0)| 2 files changed, 12 insertions(+), 11 deletions(-) 126 | 18.1.4|[18.1.3...18.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.3...18.1.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 127 | 18.1.3|[18.1.2...18.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.2...18.1.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 128 | 18.1.2|[18.1.1...18.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.1...18.1.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 129 | 18.1.1|[18.1.0...18.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.0...18.1.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 130 | 18.1.0|[18.1.0-rc.1...18.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.0-rc.1...18.1.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 131 | 18.1.0-rc.1|[18.1.0-rc.0...18.1.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.0-rc.0...18.1.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 132 | 18.1.0-rc.0|[18.1.0-next.3...18.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.0-next.3...18.1.0-rc.0)| 1 file changed, 3 insertions(+), 3 deletions(-) 133 | 18.1.0-next.3|[18.1.0-next.2...18.1.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.0-next.2...18.1.0-next.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 134 | 18.1.0-next.2|[18.1.0-next.1...18.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.0-next.1...18.1.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 135 | 18.1.0-next.1|[18.1.0-next.0...18.1.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/18.1.0-next.0...18.1.0-next.1)| 2 files changed, 2 insertions(+), 3 deletions(-) 136 | 18.1.0-next.0|[18.0.7...18.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.7...18.1.0-next.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 137 | 18.0.7|[18.0.6...18.0.7](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.6...18.0.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 138 | 18.0.6|[18.0.5...18.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.5...18.0.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 139 | 18.0.5|[18.0.4...18.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.4...18.0.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 140 | 18.0.4|[18.0.3...18.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.3...18.0.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 141 | 18.0.3|[18.0.2...18.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.2...18.0.3)| 4 files changed, 8 insertions(+), 5 deletions(-) 142 | 18.0.2|[18.0.1...18.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.1...18.0.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 143 | 18.0.1|[18.0.0...18.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0...18.0.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 144 | 18.0.0|[18.0.0-rc.3...18.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0-rc.3...18.0.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 145 | 18.0.0-rc.3|[18.0.0-rc.2...18.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0-rc.2...18.0.0-rc.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 146 | 18.0.0-rc.2|[18.0.0-rc.1...18.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0-rc.1...18.0.0-rc.2)| 2 files changed, 6 insertions(+), 6 deletions(-) 147 | 18.0.0-rc.1|[18.0.0-rc.0...18.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0-rc.0...18.0.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 148 | 18.0.0-rc.0|[18.0.0-next.5...18.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0-next.5...18.0.0-rc.0)| 2 files changed, 3 insertions(+), 6 deletions(-) 149 | 18.0.0-next.5|[18.0.0-next.4...18.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0-next.4...18.0.0-next.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 150 | 18.0.0-next.4|[18.0.0-next.3...18.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0-next.3...18.0.0-next.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 151 | 18.0.0-next.3|[18.0.0-next.2...18.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0-next.2...18.0.0-next.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 152 | 18.0.0-next.2|[18.0.0-next.1...18.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0-next.1...18.0.0-next.2)| 2 files changed, 4 insertions(+), 4 deletions(-) 153 | 18.0.0-next.1|[18.0.0-next.0...18.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/18.0.0-next.0...18.0.0-next.1)| 4 files changed, 10 insertions(+), 6 deletions(-) 154 | 18.0.0-next.0|[17.3.17...18.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.17...18.0.0-next.0)| 2 files changed, 12 insertions(+), 12 deletions(-) 155 | 17.3.17|[17.3.16...17.3.17](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.16...17.3.17)| 1 file changed, 2 insertions(+), 2 deletions(-) 156 | 17.3.16|[17.3.15...17.3.16](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.15...17.3.16)| 1 file changed, 2 insertions(+), 2 deletions(-) 157 | 17.3.15|[17.3.14...17.3.15](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.14...17.3.15)| 1 file changed, 2 insertions(+), 2 deletions(-) 158 | 17.3.14|[17.3.13...17.3.14](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.13...17.3.14)| 1 file changed, 2 insertions(+), 2 deletions(-) 159 | 17.3.13|[17.3.12...17.3.13](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.12...17.3.13)| 1 file changed, 2 insertions(+), 2 deletions(-) 160 | 17.3.12|[17.3.11...17.3.12](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.11...17.3.12)| 1 file changed, 2 insertions(+), 2 deletions(-) 161 | 17.3.11|[17.3.10...17.3.11](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.10...17.3.11)| 1 file changed, 2 insertions(+), 2 deletions(-) 162 | 17.3.10|[17.3.9...17.3.10](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.9...17.3.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 163 | 17.3.9|[17.3.8...17.3.9](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.8...17.3.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 164 | 17.3.8|[17.3.7...17.3.8](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.7...17.3.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 165 | 17.3.7|[17.3.6...17.3.7](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.6...17.3.7)| 2 files changed, 3 insertions(+), 3 deletions(-) 166 | 17.3.6|[17.3.5...17.3.6](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.5...17.3.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 167 | 17.3.5|[17.3.4...17.3.5](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.4...17.3.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 168 | 17.3.4|[17.3.3...17.3.4](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.3...17.3.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 169 | 17.3.3|[17.3.2...17.3.3](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.2...17.3.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 170 | 17.3.2|[17.3.1...17.3.2](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.1...17.3.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 171 | 17.3.1|[17.3.0...17.3.1](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.0...17.3.1)| 2 files changed, 2 insertions(+), 3 deletions(-) 172 | 17.3.0|[17.3.0-rc.0...17.3.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.3.0-rc.0...17.3.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 173 | 17.3.0-rc.0|[17.2.3...17.3.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.2.3...17.3.0-rc.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 174 | 17.2.3|[17.2.2...17.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/17.2.2...17.2.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 175 | 17.2.2|[17.2.1...17.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/17.2.1...17.2.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 176 | 17.2.1|[17.2.0...17.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/17.2.0...17.2.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 177 | 17.2.0|[17.2.0-rc.0...17.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.2.0-rc.0...17.2.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 178 | 17.2.0-rc.0|[17.2.0-next.1...17.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.2.0-next.1...17.2.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 179 | 17.2.0-next.1|[17.2.0-next.0...17.2.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/17.2.0-next.0...17.2.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 180 | 17.2.0-next.0|[17.1.4...17.2.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.4...17.2.0-next.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 181 | 17.1.4|[17.1.3...17.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.3...17.1.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 182 | 17.1.3|[17.1.2...17.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.2...17.1.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 183 | 17.1.2|[17.1.1...17.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.1...17.1.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 184 | 17.1.1|[17.1.0...17.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.0...17.1.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 185 | 17.1.0|[17.1.0-rc.1...17.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.0-rc.1...17.1.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 186 | 17.1.0-rc.1|[17.1.0-rc.0...17.1.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.0-rc.0...17.1.0-rc.1)| 1 file changed, 3 insertions(+), 3 deletions(-) 187 | 17.1.0-rc.0|[17.1.0-next.3...17.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.0-next.3...17.1.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 188 | 17.1.0-next.3|[17.1.0-next.2...17.1.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.0-next.2...17.1.0-next.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 189 | 17.1.0-next.2|[17.1.0-next.1...17.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.0-next.1...17.1.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 190 | 17.1.0-next.1|[17.1.0-next.0...17.1.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/17.1.0-next.0...17.1.0-next.1)| 1 file changed, 3 insertions(+), 3 deletions(-) 191 | 17.1.0-next.0|[17.0.10...17.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.10...17.1.0-next.0)| 3 files changed, 13 insertions(+), 14 deletions(-) 192 | 17.0.10|[17.0.9...17.0.10](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.9...17.0.10)| 2 files changed, 6 insertions(+), 6 deletions(-) 193 | 17.0.9|[17.0.8...17.0.9](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.8...17.0.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 194 | 17.0.8|[17.0.7...17.0.8](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.7...17.0.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 195 | 17.0.7|[17.0.6...17.0.7](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.6...17.0.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 196 | 17.0.6|[17.0.5...17.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.5...17.0.6)| 2 files changed, 3 insertions(+), 2 deletions(-) 197 | 17.0.5|[17.0.4...17.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.4...17.0.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 198 | 17.0.4|[17.0.3...17.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.3...17.0.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 199 | 17.0.3|[17.0.2...17.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.2...17.0.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 200 | 17.0.2|[17.0.1...17.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.1...17.0.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 201 | 17.0.1|[17.0.0...17.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0...17.0.1)| 4 files changed, 5 insertions(+), 6 deletions(-) 202 | 17.0.0|[17.0.0-rc.5...17.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-rc.5...17.0.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 203 | 17.0.0-rc.5|[17.0.0-rc.4...17.0.0-rc.5](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-rc.4...17.0.0-rc.5)| 3 files changed, 47 insertions(+), 81 deletions(-) 204 | 17.0.0-rc.4|[17.0.0-rc.3...17.0.0-rc.4](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-rc.3...17.0.0-rc.4)| 3 files changed, 285 insertions(+), 398 deletions(-) 205 | 17.0.0-rc.3|[17.0.0-rc.2...17.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-rc.2...17.0.0-rc.3)| 2 files changed, 3 insertions(+), 3 deletions(-) 206 | 17.0.0-rc.2|[17.0.0-rc.1...17.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-rc.1...17.0.0-rc.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 207 | 17.0.0-rc.1|[17.0.0-rc.0...17.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-rc.0...17.0.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 208 | 17.0.0-rc.0|[17.0.0-next.9...17.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-next.9...17.0.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 209 | 17.0.0-next.9|[17.0.0-next.8...17.0.0-next.9](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-next.8...17.0.0-next.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 210 | 17.0.0-next.8|[17.0.0-next.7...17.0.0-next.8](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-next.7...17.0.0-next.8)| 2 files changed, 6 insertions(+), 6 deletions(-) 211 | 17.0.0-next.7|[17.0.0-next.6...17.0.0-next.7](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-next.6...17.0.0-next.7)| 4 files changed, 9 insertions(+), 8 deletions(-) 212 | 17.0.0-next.6|[17.0.0-next.5...17.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-next.5...17.0.0-next.6)| 8 files changed, 24 insertions(+), 40 deletions(-) 213 | 17.0.0-next.5|[17.0.0-next.4...17.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-next.4...17.0.0-next.5)| 1 file changed, 3 insertions(+), 3 deletions(-) 214 | 17.0.0-next.4|[17.0.0-next.3...17.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-next.3...17.0.0-next.4)| 7 files changed, 23 insertions(+), 10 deletions(-) 215 | 17.0.0-next.3|[17.0.0-next.0...17.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/17.0.0-next.0...17.0.0-next.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 216 | 17.0.0-next.0|[16.2.16...17.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.16...17.0.0-next.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 217 | 16.2.16|[16.2.15...16.2.16](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.15...16.2.16)| 1 file changed, 2 insertions(+), 2 deletions(-) 218 | 16.2.15|[16.2.14...16.2.15](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.14...16.2.15)| 1 file changed, 2 insertions(+), 2 deletions(-) 219 | 16.2.14|[16.2.13...16.2.14](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.13...16.2.14)| 1 file changed, 2 insertions(+), 2 deletions(-) 220 | 16.2.13|[16.2.12...16.2.13](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.12...16.2.13)| 1 file changed, 2 insertions(+), 2 deletions(-) 221 | 16.2.12|[16.2.11...16.2.12](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.11...16.2.12)| 1 file changed, 2 insertions(+), 2 deletions(-) 222 | 16.2.11|[16.2.10...16.2.11](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.10...16.2.11)| 1 file changed, 2 insertions(+), 2 deletions(-) 223 | 16.2.10|[16.2.9...16.2.10](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.9...16.2.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 224 | 16.2.9|[16.2.8...16.2.9](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.8...16.2.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 225 | 16.2.8|[16.2.7...16.2.8](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.7...16.2.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 226 | 16.2.7|[16.2.6...16.2.7](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.6...16.2.7)| 2 files changed, 5 insertions(+), 6 deletions(-) 227 | 16.2.6|[16.2.5...16.2.6](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.5...16.2.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 228 | 16.2.5|[16.2.4...16.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.4...16.2.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 229 | 16.2.4|[16.2.3...16.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.3...16.2.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 230 | 16.2.3|[16.2.2...16.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.2...16.2.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 231 | 16.2.2|[16.2.1...16.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.1...16.2.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 232 | 16.2.1|[16.2.0...16.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.0...16.2.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 233 | 16.2.0|[16.2.0-rc.1...16.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.0-rc.1...16.2.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 234 | 16.2.0-rc.1|[16.2.0-rc.0...16.2.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.0-rc.0...16.2.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 235 | 16.2.0-rc.0|[16.2.0-next.4...16.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.0-next.4...16.2.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 236 | 16.2.0-next.4|[16.2.0-next.3...16.2.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.0-next.3...16.2.0-next.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 237 | 16.2.0-next.3|[16.2.0-next.2...16.2.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.0-next.2...16.2.0-next.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 238 | 16.2.0-next.2|[16.2.0-next.1...16.2.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.0-next.1...16.2.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 239 | 16.2.0-next.1|[16.2.0-next.0...16.2.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/16.2.0-next.0...16.2.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 240 | 16.2.0-next.0|[16.1.8...16.2.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.8...16.2.0-next.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 241 | 16.1.8|[16.1.7...16.1.8](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.7...16.1.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 242 | 16.1.7|[16.1.6...16.1.7](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.6...16.1.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 243 | 16.1.6|[16.1.5...16.1.6](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.5...16.1.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 244 | 16.1.5|[16.1.4...16.1.5](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.4...16.1.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 245 | 16.1.4|[16.1.3...16.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.3...16.1.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 246 | 16.1.3|[16.1.2...16.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.2...16.1.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 247 | 16.1.2|[16.1.1...16.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.1...16.1.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 248 | 16.1.1|[16.1.0...16.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.0...16.1.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 249 | 16.1.0|[16.1.0-rc.0...16.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.0-rc.0...16.1.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 250 | 16.1.0-rc.0|[16.1.0-next.2...16.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.0-next.2...16.1.0-rc.0)| 1 file changed, 4 insertions(+), 4 deletions(-) 251 | 16.1.0-next.2|[16.1.0-next.1...16.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.0-next.1...16.1.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 252 | 16.1.0-next.1|[16.1.0-next.0...16.1.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/16.1.0-next.0...16.1.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 253 | 16.1.0-next.0|[16.0.6...16.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.6...16.1.0-next.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 254 | 16.0.6|[16.0.5...16.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.5...16.0.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 255 | 16.0.5|[16.0.4...16.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.4...16.0.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 256 | 16.0.4|[16.0.3...16.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.3...16.0.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 257 | 16.0.3|[16.0.2...16.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.2...16.0.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 258 | 16.0.2|[16.0.1...16.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.1...16.0.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 259 | 16.0.1|[16.0.0...16.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0...16.0.1)| 2 files changed, 2 insertions(+), 2 deletions(-) 260 | 16.0.0|[16.0.0-rc.4...16.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-rc.4...16.0.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 261 | 16.0.0-rc.4|[16.0.0-rc.3...16.0.0-rc.4](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-rc.3...16.0.0-rc.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 262 | 16.0.0-rc.3|[16.0.0-rc.2...16.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-rc.2...16.0.0-rc.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 263 | 16.0.0-rc.2|[16.0.0-rc.1...16.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-rc.1...16.0.0-rc.2)| 1 file changed, 3 insertions(+), 3 deletions(-) 264 | 16.0.0-rc.1|[16.0.0-rc.0...16.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-rc.0...16.0.0-rc.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 265 | 16.0.0-rc.0|[16.0.0-next.7...16.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-next.7...16.0.0-rc.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 266 | 16.0.0-next.7|[16.0.0-next.6...16.0.0-next.7](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-next.6...16.0.0-next.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 267 | 16.0.0-next.6|[16.0.0-next.5...16.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-next.5...16.0.0-next.6)| 2 files changed, 5 insertions(+), 9 deletions(-) 268 | 16.0.0-next.5|[16.0.0-next.4...16.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-next.4...16.0.0-next.5)| 1 file changed, 4 insertions(+), 4 deletions(-) 269 | 16.0.0-next.4|[16.0.0-next.3...16.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-next.3...16.0.0-next.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 270 | 16.0.0-next.3|[16.0.0-next.2...16.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-next.2...16.0.0-next.3)| 1 file changed, 3 insertions(+), 3 deletions(-) 271 | 16.0.0-next.2|[16.0.0-next.1...16.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-next.1...16.0.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 272 | 16.0.0-next.1|[16.0.0-next.0...16.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/16.0.0-next.0...16.0.0-next.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 273 | 16.0.0-next.0|[15.2.11...16.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.11...16.0.0-next.0)| 2 files changed, 11 insertions(+), 11 deletions(-) 274 | 15.2.11|[15.2.10...15.2.11](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.10...15.2.11)| 1 file changed, 2 insertions(+), 2 deletions(-) 275 | 15.2.10|[15.2.9...15.2.10](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.9...15.2.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 276 | 15.2.9|[15.2.8...15.2.9](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.8...15.2.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 277 | 15.2.8|[15.2.7...15.2.8](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.7...15.2.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 278 | 15.2.7|[15.2.6...15.2.7](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.6...15.2.7)| 2 files changed, 3 insertions(+), 3 deletions(-) 279 | 15.2.6|[15.2.5...15.2.6](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.5...15.2.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 280 | 15.2.5|[15.2.4...15.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.4...15.2.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 281 | 15.2.4|[15.2.3...15.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.3...15.2.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 282 | 15.2.3|[15.2.2...15.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.2...15.2.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 283 | 15.2.2|[15.2.1...15.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.1...15.2.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 284 | 15.2.1|[15.2.0...15.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.0...15.2.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 285 | 15.2.0|[15.2.0-rc.0...15.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.0-rc.0...15.2.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 286 | 15.2.0-rc.0|[15.2.0-next.4...15.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.0-next.4...15.2.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 287 | 15.2.0-next.4|[15.2.0-next.3...15.2.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.0-next.3...15.2.0-next.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 288 | 15.2.0-next.3|[15.2.0-next.2...15.2.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.0-next.2...15.2.0-next.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 289 | 15.2.0-next.2|[15.2.0-next.1...15.2.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.0-next.1...15.2.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 290 | 15.2.0-next.1|[15.2.0-next.0...15.2.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/15.2.0-next.0...15.2.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 291 | 15.2.0-next.0|[15.1.6...15.2.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.6...15.2.0-next.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 292 | 15.1.6|[15.1.5...15.1.6](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.5...15.1.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 293 | 15.1.5|[15.1.4...15.1.5](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.4...15.1.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 294 | 15.1.4|[15.1.3...15.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.3...15.1.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 295 | 15.1.3|[15.1.2...15.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.2...15.1.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 296 | 15.1.2|[15.1.1...15.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.1...15.1.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 297 | 15.1.1|[15.1.0...15.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.0...15.1.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 298 | 15.1.0|[15.1.0-rc.0...15.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.0-rc.0...15.1.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 299 | 15.1.0-rc.0|[15.1.0-next.3...15.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.0-next.3...15.1.0-rc.0)| 1 file changed, 13 insertions(+), 13 deletions(-) 300 | 15.1.0-next.3|[15.1.0-next.2...15.1.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.0-next.2...15.1.0-next.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 301 | 15.1.0-next.2|[15.1.0-next.1...15.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.0-next.1...15.1.0-next.2)| 1 file changed, 3 insertions(+), 3 deletions(-) 302 | 15.1.0-next.1|[15.1.0-next.0...15.1.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/15.1.0-next.0...15.1.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 303 | 15.1.0-next.0|[15.0.5...15.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.5...15.1.0-next.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 304 | 15.0.5|[15.0.4...15.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.4...15.0.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 305 | 15.0.4|[15.0.3...15.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.3...15.0.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 306 | 15.0.3|[15.0.2...15.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.2...15.0.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 307 | 15.0.2|[15.0.1...15.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.1...15.0.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 308 | 15.0.1|[15.0.0...15.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0...15.0.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 309 | 15.0.0|[15.0.0-rc.5...15.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-rc.5...15.0.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 310 | 15.0.0-rc.5|[15.0.0-rc.4...15.0.0-rc.5](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-rc.4...15.0.0-rc.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 311 | 15.0.0-rc.4|[15.0.0-rc.3...15.0.0-rc.4](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-rc.3...15.0.0-rc.4)| 1 file changed, 3 insertions(+), 3 deletions(-) 312 | 15.0.0-rc.3|[15.0.0-rc.2...15.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-rc.2...15.0.0-rc.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 313 | 15.0.0-rc.2|[15.0.0-rc.1...15.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-rc.1...15.0.0-rc.2)| 1 file changed, 3 insertions(+), 3 deletions(-) 314 | 15.0.0-rc.1|[15.0.0-rc.0...15.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-rc.0...15.0.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 315 | 15.0.0-rc.0|[15.0.0-next.6...15.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-next.6...15.0.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 316 | 15.0.0-next.6|[15.0.0-next.5...15.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-next.5...15.0.0-next.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 317 | 15.0.0-next.5|[15.0.0-next.4...15.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-next.4...15.0.0-next.5)| 1 file changed, 3 insertions(+), 3 deletions(-) 318 | 15.0.0-next.4|[15.0.0-next.3...15.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-next.3...15.0.0-next.4)| 4 files changed, 2 insertions(+), 49 deletions(-) 319 | 15.0.0-next.3|[15.0.0-next.2...15.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-next.2...15.0.0-next.3)| 9 files changed, 12 insertions(+), 120 deletions(-) 320 | 15.0.0-next.2|[15.0.0-next.1...15.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-next.1...15.0.0-next.2)| 3 files changed, 10 insertions(+), 9 deletions(-) 321 | 15.0.0-next.1|[15.0.0-next.0...15.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/15.0.0-next.0...15.0.0-next.1)| 2 files changed, 2 insertions(+), 18 deletions(-) 322 | 15.0.0-next.0|[14.2.13...15.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.13...15.0.0-next.0)| 1 file changed, 13 insertions(+), 13 deletions(-) 323 | 14.2.13|[14.2.12...14.2.13](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.12...14.2.13)| 1 file changed, 2 insertions(+), 2 deletions(-) 324 | 14.2.12|[14.2.11...14.2.12](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.11...14.2.12)| 1 file changed, 2 insertions(+), 2 deletions(-) 325 | 14.2.11|[14.2.10...14.2.11](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.10...14.2.11)| 1 file changed, 2 insertions(+), 2 deletions(-) 326 | 14.2.10|[14.2.9...14.2.10](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.9...14.2.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 327 | 14.2.9|[14.2.8...14.2.9](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.8...14.2.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 328 | 14.2.8|[14.2.7...14.2.8](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.7...14.2.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 329 | 14.2.7|[14.2.6...14.2.7](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.6...14.2.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 330 | 14.2.6|[14.2.5...14.2.6](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.5...14.2.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 331 | 14.2.5|[14.2.4...14.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.4...14.2.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 332 | 14.2.4|[14.2.3...14.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.3...14.2.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 333 | 14.2.3|[14.2.2...14.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.2...14.2.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 334 | 14.2.2|[14.2.1...14.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.1...14.2.2)| 1 file changed, 11 insertions(+), 11 deletions(-) 335 | 14.2.1|[14.2.0...14.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.0...14.2.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 336 | 14.2.0|[14.2.0-rc.0...14.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.0-rc.0...14.2.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 337 | 14.2.0-rc.0|[14.2.0-next.2...14.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.0-next.2...14.2.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 338 | 14.2.0-next.2|[14.2.0-next.1...14.2.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.0-next.1...14.2.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 339 | 14.2.0-next.1|[14.2.0-next.0...14.2.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/14.2.0-next.0...14.2.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 340 | 14.2.0-next.0|[14.1.3...14.2.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/14.1.3...14.2.0-next.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 341 | 14.1.3|[14.1.2...14.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/14.1.2...14.1.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 342 | 14.1.2|[14.1.1...14.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/14.1.1...14.1.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 343 | 14.1.1|[14.1.0...14.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/14.1.0...14.1.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 344 | 14.1.0|[14.1.0-rc.3...14.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/14.1.0-rc.3...14.1.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 345 | 14.1.0-rc.3|[14.1.0-next.4...14.1.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/14.1.0-next.4...14.1.0-rc.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 346 | 14.1.0-next.4|[14.1.0-next.3...14.1.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/14.1.0-next.3...14.1.0-next.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 347 | 14.1.0-next.3|[14.1.0-next.2...14.1.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/14.1.0-next.2...14.1.0-next.3)| 1 file changed, 5 insertions(+), 5 deletions(-) 348 | 14.1.0-next.2|[14.1.0-next.1...14.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/14.1.0-next.1...14.1.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 349 | 14.1.0-next.1|[14.1.0-next.0...14.1.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/14.1.0-next.0...14.1.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 350 | 14.1.0-next.0|[14.0.7...14.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.7...14.1.0-next.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 351 | 14.0.7|[14.0.6...14.0.7](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.6...14.0.7)| 2 files changed, 3 insertions(+), 3 deletions(-) 352 | 14.0.6|[14.0.5...14.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.5...14.0.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 353 | 14.0.5|[14.0.4...14.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.4...14.0.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 354 | 14.0.4|[14.0.3...14.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.3...14.0.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 355 | 14.0.3|[14.0.2...14.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.2...14.0.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 356 | 14.0.2|[14.0.1...14.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.1...14.0.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 357 | 14.0.1|[14.0.0...14.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0...14.0.1)| 2 files changed, 3 insertions(+), 7 deletions(-) 358 | 14.0.0|[14.0.0-rc.3...14.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-rc.3...14.0.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 359 | 14.0.0-rc.3|[14.0.0-rc.2...14.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-rc.2...14.0.0-rc.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 360 | 14.0.0-rc.2|[14.0.0-rc.1...14.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-rc.1...14.0.0-rc.2)| 1 file changed, 3 insertions(+), 3 deletions(-) 361 | 14.0.0-rc.1|[14.0.0-rc.0...14.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-rc.0...14.0.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 362 | 14.0.0-rc.0|[14.0.0-next.13...14.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.13...14.0.0-rc.0)| 2 files changed, 12 insertions(+), 12 deletions(-) 363 | 14.0.0-next.13|[14.0.0-next.12...14.0.0-next.13](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.12...14.0.0-next.13)| 1 file changed, 2 insertions(+), 2 deletions(-) 364 | 14.0.0-next.12|[14.0.0-next.11...14.0.0-next.12](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.11...14.0.0-next.12)| 1 file changed, 2 insertions(+), 2 deletions(-) 365 | 14.0.0-next.11|[14.0.0-next.10...14.0.0-next.11](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.10...14.0.0-next.11)| 1 file changed, 2 insertions(+), 2 deletions(-) 366 | 14.0.0-next.10|[14.0.0-next.9...14.0.0-next.10](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.9...14.0.0-next.10)| 1 file changed, 3 insertions(+), 3 deletions(-) 367 | 14.0.0-next.9|[14.0.0-next.8...14.0.0-next.9](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.8...14.0.0-next.9)| 1 file changed, 3 insertions(+), 3 deletions(-) 368 | 14.0.0-next.8|[14.0.0-next.7...14.0.0-next.8](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.7...14.0.0-next.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 369 | 14.0.0-next.7|[14.0.0-next.6...14.0.0-next.7](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.6...14.0.0-next.7)| 2 files changed, 4 insertions(+), 5 deletions(-) 370 | 14.0.0-next.6|[14.0.0-next.5...14.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.5...14.0.0-next.6)| 1 file changed, 2 insertions(+), 3 deletions(-) 371 | 14.0.0-next.5|[14.0.0-next.4...14.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.4...14.0.0-next.5)| 1 file changed, 3 insertions(+), 3 deletions(-) 372 | 14.0.0-next.4|[14.0.0-next.3...14.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.3...14.0.0-next.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 373 | 14.0.0-next.3|[14.0.0-next.2...14.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.2...14.0.0-next.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 374 | 14.0.0-next.2|[14.0.0-next.1...14.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.1...14.0.0-next.2)| 1 file changed, 3 insertions(+), 3 deletions(-) 375 | 14.0.0-next.1|[14.0.0-next.0...14.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/14.0.0-next.0...14.0.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 376 | 14.0.0-next.0|[13.3.11...14.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.11...14.0.0-next.0)| 2 files changed, 12 insertions(+), 12 deletions(-) 377 | 13.3.11|[13.3.10...13.3.11](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.10...13.3.11)| 1 file changed, 2 insertions(+), 2 deletions(-) 378 | 13.3.10|[13.3.9...13.3.10](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.9...13.3.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 379 | 13.3.9|[13.3.8...13.3.9](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.8...13.3.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 380 | 13.3.8|[13.3.7...13.3.8](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.7...13.3.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 381 | 13.3.7|[13.3.6...13.3.7](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.6...13.3.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 382 | 13.3.6|[13.3.5...13.3.6](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.5...13.3.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 383 | 13.3.5|[13.3.4...13.3.5](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.4...13.3.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 384 | 13.3.4|[13.3.3...13.3.4](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.3...13.3.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 385 | 13.3.3|[13.3.2...13.3.3](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.2...13.3.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 386 | 13.3.2|[13.3.1...13.3.2](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.1...13.3.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 387 | 13.3.1|[13.3.0...13.3.1](https://github.com/cexbrayat/angular-cli-diff/compare/13.3.0...13.3.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 388 | 13.3.0|[13.2.6...13.3.0](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.6...13.3.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 389 | 13.2.6|[13.2.5...13.2.6](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.5...13.2.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 390 | 13.2.5|[13.2.4...13.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.4...13.2.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 391 | 13.2.4|[13.2.3...13.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.3...13.2.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 392 | 13.2.3|[13.2.2...13.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.2...13.2.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 393 | 13.2.2|[13.2.1...13.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.1...13.2.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 394 | 13.2.1|[13.2.0...13.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.0...13.2.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 395 | 13.2.0|[13.2.0-rc.1...13.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.0-rc.1...13.2.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 396 | 13.2.0-rc.1|[13.2.0-rc.0...13.2.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.0-rc.0...13.2.0-rc.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 397 | 13.2.0-rc.0|[13.2.0-next.2...13.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.0-next.2...13.2.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 398 | 13.2.0-next.2|[13.2.0-next.1...13.2.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.0-next.1...13.2.0-next.2)| 1 file changed, 4 insertions(+), 4 deletions(-) 399 | 13.2.0-next.1|[13.2.0-next.0...13.2.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/13.2.0-next.0...13.2.0-next.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 400 | 13.2.0-next.0|[13.1.4...13.2.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/13.1.4...13.2.0-next.0)| 1 file changed, 3 insertions(+), 3 deletions(-) 401 | 13.1.4|[13.1.3...13.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/13.1.3...13.1.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 402 | 13.1.3|[13.1.2...13.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/13.1.2...13.1.3)| 2 files changed, 11 insertions(+), 15 deletions(-) 403 | 13.1.2|[13.1.1...13.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/13.1.1...13.1.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 404 | 13.1.1|[13.1.0...13.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/13.1.0...13.1.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 405 | 13.1.0|[13.1.0-rc.0...13.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/13.1.0-rc.0...13.1.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 406 | 13.1.0-rc.0|[13.1.0-next.3...13.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/13.1.0-next.3...13.1.0-rc.0)| 1 file changed, 4 insertions(+), 4 deletions(-) 407 | 13.1.0-next.3|[13.1.0-next.2...13.1.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/13.1.0-next.2...13.1.0-next.3)| 4 files changed, 68 insertions(+), 2 deletions(-) 408 | 13.1.0-next.2|[13.1.0-next.1...13.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/13.1.0-next.1...13.1.0-next.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 409 | 13.1.0-next.1|[13.1.0-next.0...13.1.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/13.1.0-next.0...13.1.0-next.1)| 1 file changed, 3 insertions(+), 3 deletions(-) 410 | 13.1.0-next.0|[13.0.4...13.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.4...13.1.0-next.0)| 1 file changed, 3 insertions(+), 3 deletions(-) 411 | 13.0.4|[13.0.3...13.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.3...13.0.4)| 2 files changed, 3 insertions(+), 3 deletions(-) 412 | 13.0.3|[13.0.2...13.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.2...13.0.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 413 | 13.0.2|[13.0.1...13.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.1...13.0.2)| 2 files changed, 8 insertions(+), 25 deletions(-) 414 | 13.0.1|[13.0.0...13.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0...13.0.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 415 | 13.0.0|[13.0.0-rc.3...13.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-rc.3...13.0.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 416 | 13.0.0-rc.3|[13.0.0-rc.2...13.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-rc.2...13.0.0-rc.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 417 | 13.0.0-rc.2|[13.0.0-rc.1...13.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-rc.1...13.0.0-rc.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 418 | 13.0.0-rc.1|[13.0.0-rc.0...13.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-rc.0...13.0.0-rc.1)| 1 file changed, 4 insertions(+), 4 deletions(-) 419 | 13.0.0-rc.0|[13.0.0-next.9...13.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-next.9...13.0.0-rc.0)| 2 files changed, 3 insertions(+), 3 deletions(-) 420 | 13.0.0-next.9|[13.0.0-next.8...13.0.0-next.9](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-next.8...13.0.0-next.9)| 3 files changed, 4 insertions(+), 4 deletions(-) 421 | 13.0.0-next.8|[13.0.0-next.7...13.0.0-next.8](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-next.7...13.0.0-next.8)| 2 files changed, 4 insertions(+), 11 deletions(-) 422 | 13.0.0-next.7|[13.0.0-next.6...13.0.0-next.7](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-next.6...13.0.0-next.7)| 1 file changed, 4 insertions(+), 4 deletions(-) 423 | 13.0.0-next.6|[13.0.0-next.5...13.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-next.5...13.0.0-next.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 424 | 13.0.0-next.5|[13.0.0-next.4...13.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-next.4...13.0.0-next.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 425 | 13.0.0-next.4|[13.0.0-next.3...13.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-next.3...13.0.0-next.4)| 1 file changed, 3 insertions(+), 3 deletions(-) 426 | 13.0.0-next.3|[13.0.0-next.2...13.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-next.2...13.0.0-next.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 427 | 13.0.0-next.2|[13.0.0-next.1...13.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-next.1...13.0.0-next.2)| 1 file changed, 3 insertions(+), 3 deletions(-) 428 | 13.0.0-next.1|[13.0.0-next.0...13.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-next.0...13.0.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 429 | 13.0.0-next.0|[12.2.18...13.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.18...13.0.0-next.0)| 4 files changed, 13 insertions(+), 17 deletions(-) 430 | 12.2.18|[12.2.17...12.2.18](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.17...12.2.18)| 1 file changed, 2 insertions(+), 2 deletions(-) 431 | 12.2.17|[12.2.16...12.2.17](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.16...12.2.17)| 1 file changed, 2 insertions(+), 2 deletions(-) 432 | 12.2.16|[12.2.15...12.2.16](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.15...12.2.16)| 1 file changed, 2 insertions(+), 2 deletions(-) 433 | 12.2.15|[12.2.14...12.2.15](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.14...12.2.15)| 1 file changed, 2 insertions(+), 2 deletions(-) 434 | 12.2.14|[12.2.13...12.2.14](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.13...12.2.14)| 1 file changed, 2 insertions(+), 2 deletions(-) 435 | 12.2.13|[12.2.12...12.2.13](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.12...12.2.13)| 1 file changed, 2 insertions(+), 2 deletions(-) 436 | 12.2.12|[12.2.11...12.2.12](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.11...12.2.12)| 1 file changed, 2 insertions(+), 2 deletions(-) 437 | 12.2.11|[12.2.10...12.2.11](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.10...12.2.11)| 1 file changed, 2 insertions(+), 2 deletions(-) 438 | 12.2.10|[12.2.9...12.2.10](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.9...12.2.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 439 | 12.2.9|[12.2.8...12.2.9](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.8...12.2.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 440 | 12.2.8|[12.2.7...12.2.8](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.7...12.2.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 441 | 12.2.7|[12.2.6...12.2.7](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.6...12.2.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 442 | 12.2.6|[12.2.5...12.2.6](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.5...12.2.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 443 | 12.2.5|[12.2.4...12.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.4...12.2.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 444 | 12.2.4|[12.2.3...12.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.3...12.2.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 445 | 12.2.3|[12.2.2...12.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.2...12.2.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 446 | 12.2.2|[12.2.1...12.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.1...12.2.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 447 | 12.2.1|[12.2.0...12.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.0...12.2.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 448 | 12.2.0|[12.2.0-rc.0...12.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.0-rc.0...12.2.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 449 | 12.2.0-rc.0|[12.2.0-next.3...12.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.0-next.3...12.2.0-rc.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 450 | 12.2.0-next.3|[12.2.0-next.2...12.2.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.0-next.2...12.2.0-next.3)| 1 file changed, 13 insertions(+), 13 deletions(-) 451 | 12.2.0-next.2|[12.2.0-next.0...12.2.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/12.2.0-next.0...12.2.0-next.2)| 2 files changed, 15 insertions(+), 13 deletions(-) 452 | 12.2.0-next.0|[12.1.4...12.2.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/12.1.4...12.2.0-next.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 453 | 12.1.4|[12.1.3...12.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/12.1.3...12.1.4)| 1 file changed, 11 insertions(+), 11 deletions(-) 454 | 12.1.3|[12.1.2...12.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/12.1.2...12.1.3)| 1 file changed, 11 insertions(+), 11 deletions(-) 455 | 12.1.2|[12.1.1...12.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/12.1.1...12.1.2)| 3 files changed, 32 insertions(+), 47 deletions(-) 456 | 12.1.1|[12.1.0...12.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/12.1.0...12.1.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 457 | 12.1.0|[12.1.0-next.6...12.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/12.1.0-next.6...12.1.0)| 2 files changed, 18 insertions(+), 11 deletions(-) 458 | 12.1.0-next.6|[12.1.0-next.5...12.1.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/12.1.0-next.5...12.1.0-next.6)| 1 file changed, 11 insertions(+), 11 deletions(-) 459 | 12.1.0-next.5|[12.1.0-next.4...12.1.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/12.1.0-next.4...12.1.0-next.5)| 1 file changed, 13 insertions(+), 13 deletions(-) 460 | 12.1.0-next.4|[12.1.0-next.3...12.1.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/12.1.0-next.3...12.1.0-next.4)| 1 file changed, 11 insertions(+), 11 deletions(-) 461 | 12.1.0-next.3|[12.1.0-next.2...12.1.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/12.1.0-next.2...12.1.0-next.3)| 1 file changed, 11 insertions(+), 11 deletions(-) 462 | 12.1.0-next.2|[12.0.5...12.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.5...12.1.0-next.2)| 1 file changed, 11 insertions(+), 11 deletions(-) 463 | 12.0.5|[12.0.4...12.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.4...12.0.5)| 1 file changed, 11 insertions(+), 11 deletions(-) 464 | 12.0.4|[12.0.3...12.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.3...12.0.4)| 1 file changed, 11 insertions(+), 11 deletions(-) 465 | 12.0.3|[12.0.2...12.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.2...12.0.3)| 1 file changed, 11 insertions(+), 11 deletions(-) 466 | 12.0.2|[12.0.1...12.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.1...12.0.2)| 1 file changed, 11 insertions(+), 11 deletions(-) 467 | 12.0.1|[12.0.0...12.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0...12.0.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 468 | 12.0.0|[12.0.0-rc.3...12.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-rc.3...12.0.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 469 | 12.0.0-rc.3|[12.0.0-rc.2...12.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-rc.2...12.0.0-rc.3)| 1 file changed, 11 insertions(+), 11 deletions(-) 470 | 12.0.0-rc.2|[12.0.0-rc.1...12.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-rc.1...12.0.0-rc.2)| 1 file changed, 11 insertions(+), 11 deletions(-) 471 | 12.0.0-rc.1|[12.0.0-rc.0...12.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-rc.0...12.0.0-rc.1)| 2 files changed, 12 insertions(+), 26 deletions(-) 472 | 12.0.0-rc.0|[12.0.0-next.9...12.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-next.9...12.0.0-rc.0)| 6 files changed, 20 insertions(+), 123 deletions(-) 473 | 12.0.0-next.9|[12.0.0-next.8...12.0.0-next.9](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-next.8...12.0.0-next.9)| 1 file changed, 12 insertions(+), 12 deletions(-) 474 | 12.0.0-next.8|[12.0.0-next.7...12.0.0-next.8](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-next.7...12.0.0-next.8)| 1 file changed, 11 insertions(+), 11 deletions(-) 475 | 12.0.0-next.7|[12.0.0-next.6...12.0.0-next.7](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-next.6...12.0.0-next.7)| 1 file changed, 11 insertions(+), 11 deletions(-) 476 | 12.0.0-next.6|[12.0.0-next.5...12.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-next.5...12.0.0-next.6)| 2 files changed, 12 insertions(+), 152 deletions(-) 477 | 12.0.0-next.5|[12.0.0-next.4...12.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-next.4...12.0.0-next.5)| 7 files changed, 20 insertions(+), 47 deletions(-) 478 | 12.0.0-next.4|[12.0.0-next.3...12.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-next.3...12.0.0-next.4)| 3 files changed, 41 insertions(+), 33 deletions(-) 479 | 12.0.0-next.3|[12.0.0-next.2...12.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-next.2...12.0.0-next.3)| 1 file changed, 12 insertions(+), 12 deletions(-) 480 | 12.0.0-next.2|[12.0.0-next.1...12.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-next.1...12.0.0-next.2)| 1 file changed, 13 insertions(+), 13 deletions(-) 481 | 12.0.0-next.1|[12.0.0-next.0...12.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/12.0.0-next.0...12.0.0-next.1)| 4 files changed, 15 insertions(+), 15 deletions(-) 482 | 12.0.0-next.0|[11.2.19...12.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.19...12.0.0-next.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 483 | 11.2.19|[11.2.18...11.2.19](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.18...11.2.19)| 1 file changed, 1 insertion(+), 1 deletion(-) 484 | 11.2.18|[11.2.17...11.2.18](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.17...11.2.18)| 1 file changed, 2 insertions(+), 2 deletions(-) 485 | 11.2.17|[11.2.16...11.2.17](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.16...11.2.17)| 1 file changed, 2 insertions(+), 2 deletions(-) 486 | 11.2.16|[11.2.15...11.2.16](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.15...11.2.16)| 1 file changed, 1 insertion(+), 1 deletion(-) 487 | 11.2.15|[11.2.14...11.2.15](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.14...11.2.15)| 1 file changed, 1 insertion(+), 1 deletion(-) 488 | 11.2.14|[11.2.13...11.2.14](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.13...11.2.14)| 1 file changed, 1 insertion(+), 1 deletion(-) 489 | 11.2.13|[11.2.12...11.2.13](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.12...11.2.13)| 1 file changed, 11 insertions(+), 11 deletions(-) 490 | 11.2.12|[11.2.11...11.2.12](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.11...11.2.12)| 1 file changed, 11 insertions(+), 11 deletions(-) 491 | 11.2.11|[11.2.10...11.2.11](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.10...11.2.11)| 1 file changed, 11 insertions(+), 11 deletions(-) 492 | 11.2.10|[11.2.9...11.2.10](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.9...11.2.10)| 1 file changed, 11 insertions(+), 11 deletions(-) 493 | 11.2.9|[11.2.8...11.2.9](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.8...11.2.9)| 1 file changed, 11 insertions(+), 11 deletions(-) 494 | 11.2.8|[11.2.7...11.2.8](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.7...11.2.8)| 1 file changed, 11 insertions(+), 11 deletions(-) 495 | 11.2.7|[11.2.6...11.2.7](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.6...11.2.7)| 1 file changed, 11 insertions(+), 11 deletions(-) 496 | 11.2.6|[11.2.5...11.2.6](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.5...11.2.6)| 2 files changed, 25 insertions(+), 20 deletions(-) 497 | 11.2.5|[11.2.4...11.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.4...11.2.5)| 2 files changed, 13 insertions(+), 12 deletions(-) 498 | 11.2.4|[11.2.3...11.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.3...11.2.4)| 1 file changed, 10 insertions(+), 10 deletions(-) 499 | 11.2.3|[11.2.2...11.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.2...11.2.3)| 2 files changed, 30 insertions(+), 49 deletions(-) 500 | 11.2.2|[11.2.1...11.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.1...11.2.2)| 1 file changed, 11 insertions(+), 11 deletions(-) 501 | 11.2.1|[11.2.0...11.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.0...11.2.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 502 | 11.2.0|[11.2.0-rc.1...11.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.0-rc.1...11.2.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 503 | 11.2.0-rc.1|[11.2.0-rc.0...11.2.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.0-rc.0...11.2.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 504 | 11.2.0-rc.0|[11.2.0-next.0...11.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/11.2.0-next.0...11.2.0-rc.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 505 | 11.2.0-next.0|[11.1.4...11.2.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.4...11.2.0-next.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 506 | 11.1.4|[11.1.3...11.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.3...11.1.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 507 | 11.1.3|[11.1.2...11.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.2...11.1.3)| 1 file changed, 11 insertions(+), 11 deletions(-) 508 | 11.1.2|[11.1.1...11.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.1...11.1.2)| 1 file changed, 11 insertions(+), 11 deletions(-) 509 | 11.1.1|[11.1.0...11.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.0...11.1.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 510 | 11.1.0|[11.1.0-rc.0...11.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.0-rc.0...11.1.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 511 | 11.1.0-rc.0|[11.1.0-next.4...11.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.0-next.4...11.1.0-rc.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 512 | 11.1.0-next.4|[11.1.0-next.3...11.1.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.0-next.3...11.1.0-next.4)| 1 file changed, 11 insertions(+), 11 deletions(-) 513 | 11.1.0-next.3|[11.1.0-next.2...11.1.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.0-next.2...11.1.0-next.3)| 2 files changed, 14 insertions(+), 12 deletions(-) 514 | 11.1.0-next.2|[11.1.0-next.1...11.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.0-next.1...11.1.0-next.2)| 1 file changed, 12 insertions(+), 12 deletions(-) 515 | 11.1.0-next.1|[11.1.0-next.0...11.1.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/11.1.0-next.0...11.1.0-next.1)| 3 files changed, 14 insertions(+), 14 deletions(-) 516 | 11.1.0-next.0|[11.0.7...11.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.7...11.1.0-next.0)| 2 files changed, 13 insertions(+), 12 deletions(-) 517 | 11.0.7|[11.0.6...11.0.7](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.6...11.0.7)| 1 file changed, 11 insertions(+), 11 deletions(-) 518 | 11.0.6|[11.0.5...11.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.5...11.0.6)| 1 file changed, 11 insertions(+), 11 deletions(-) 519 | 11.0.5|[11.0.4...11.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.4...11.0.5)| 1 file changed, 11 insertions(+), 11 deletions(-) 520 | 11.0.4|[11.0.3...11.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.3...11.0.4)| 1 file changed, 11 insertions(+), 11 deletions(-) 521 | 11.0.3|[11.0.2...11.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.2...11.0.3)| 2 files changed, 17 insertions(+), 11 deletions(-) 522 | 11.0.2|[11.0.1...11.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.1...11.0.2)| 2 files changed, 14 insertions(+), 11 deletions(-) 523 | 11.0.1|[11.0.0...11.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0...11.0.1)| 2 files changed, 3 insertions(+), 3 deletions(-) 524 | 11.0.0|[11.0.0-rc.3...11.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-rc.3...11.0.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 525 | 11.0.0-rc.3|[11.0.0-rc.2...11.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-rc.2...11.0.0-rc.3)| 1 file changed, 11 insertions(+), 11 deletions(-) 526 | 11.0.0-rc.2|[11.0.0-rc.1...11.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-rc.1...11.0.0-rc.2)| 1 file changed, 11 insertions(+), 11 deletions(-) 527 | 11.0.0-rc.1|[11.0.0-rc.0...11.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-rc.0...11.0.0-rc.1)| 1 file changed, 12 insertions(+), 12 deletions(-) 528 | 11.0.0-rc.0|[11.0.0-next.7...11.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-next.7...11.0.0-rc.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 529 | 11.0.0-next.7|[11.0.0-next.6...11.0.0-next.7](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-next.6...11.0.0-next.7)| 1 file changed, 11 insertions(+), 11 deletions(-) 530 | 11.0.0-next.6|[11.0.0-next.5...11.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-next.5...11.0.0-next.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 531 | 11.0.0-next.5|[11.0.0-next.4...11.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-next.4...11.0.0-next.5)| 6 files changed, 20 insertions(+), 23 deletions(-) 532 | 11.0.0-next.4|[11.0.0-next.3...11.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-next.3...11.0.0-next.4)| 4 files changed, 11 insertions(+), 22 deletions(-) 533 | 11.0.0-next.3|[11.0.0-next.2...11.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-next.2...11.0.0-next.3)| 1 file changed, 11 insertions(+), 11 deletions(-) 534 | 11.0.0-next.2|[11.0.0-next.1...11.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-next.1...11.0.0-next.2)| 2 files changed, 13 insertions(+), 14 deletions(-) 535 | 11.0.0-next.1|[11.0.0-next.0...11.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/11.0.0-next.0...11.0.0-next.1)| 3 files changed, 22 insertions(+), 17 deletions(-) 536 | 11.0.0-next.0|[10.2.4...11.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/10.2.4...11.0.0-next.0)| 2 files changed, 13 insertions(+), 14 deletions(-) 537 | 10.2.4|[10.2.3...10.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/10.2.3...10.2.4)| 1 file changed, 12 insertions(+), 12 deletions(-) 538 | 10.2.3|[10.2.2...10.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/10.2.2...10.2.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 539 | 10.2.2|[10.2.1...10.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/10.2.1...10.2.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 540 | 10.2.1|[10.2.0...10.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/10.2.0...10.2.1)| 2 files changed, 14 insertions(+), 12 deletions(-) 541 | 10.2.0|[10.1.7...10.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.7...10.2.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 542 | 10.1.7|[10.1.6...10.1.7](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.6...10.1.7)| 1 file changed, 11 insertions(+), 11 deletions(-) 543 | 10.1.6|[10.1.5...10.1.6](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.5...10.1.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 544 | 10.1.5|[10.1.4...10.1.5](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.4...10.1.5)| 1 file changed, 11 insertions(+), 11 deletions(-) 545 | 10.1.4|[10.1.3...10.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.3...10.1.4)| 1 file changed, 11 insertions(+), 11 deletions(-) 546 | 10.1.3|[10.1.2...10.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.2...10.1.3)| 1 file changed, 11 insertions(+), 11 deletions(-) 547 | 10.1.2|[10.1.1...10.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.1...10.1.2)| 1 file changed, 11 insertions(+), 11 deletions(-) 548 | 10.1.1|[10.1.0...10.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.0...10.1.1)| 1 file changed, 11 insertions(+), 11 deletions(-) 549 | 10.1.0|[10.1.0-rc.0...10.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.0-rc.0...10.1.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 550 | 10.1.0-rc.0|[10.1.0-next.7...10.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.0-next.7...10.1.0-rc.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 551 | 10.1.0-next.7|[10.1.0-next.6...10.1.0-next.7](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.0-next.6...10.1.0-next.7)| 1 file changed, 12 insertions(+), 12 deletions(-) 552 | 10.1.0-next.6|[10.1.0-next.5...10.1.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.0-next.5...10.1.0-next.6)| 2 files changed, 12 insertions(+), 11 deletions(-) 553 | 10.1.0-next.5|[10.1.0-next.4...10.1.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.0-next.4...10.1.0-next.5)| 6 files changed, 41 insertions(+), 58 deletions(-) 554 | 10.1.0-next.4|[10.1.0-next.3...10.1.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.0-next.3...10.1.0-next.4)| 1 file changed, 11 insertions(+), 11 deletions(-) 555 | 10.1.0-next.3|[10.1.0-next.2...10.1.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.0-next.2...10.1.0-next.3)| 1 file changed, 13 insertions(+), 13 deletions(-) 556 | 10.1.0-next.2|[10.1.0-next.1...10.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.0-next.1...10.1.0-next.2)| 1 file changed, 11 insertions(+), 11 deletions(-) 557 | 10.1.0-next.1|[10.1.0-next.0...10.1.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/10.1.0-next.0...10.1.0-next.1)| 3 files changed, 47 insertions(+), 47 deletions(-) 558 | 10.1.0-next.0|[10.0.8...10.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.8...10.1.0-next.0)| 2 files changed, 34 insertions(+), 34 deletions(-) 559 | 10.0.8|[10.0.7...10.0.8](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.7...10.0.8)| 1 file changed, 11 insertions(+), 11 deletions(-) 560 | 10.0.7|[10.0.6...10.0.7](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.6...10.0.7)| 1 file changed, 11 insertions(+), 11 deletions(-) 561 | 10.0.6|[10.0.5...10.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.5...10.0.6)| 1 file changed, 11 insertions(+), 11 deletions(-) 562 | 10.0.5|[10.0.4...10.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.4...10.0.5)| 1 file changed, 11 insertions(+), 11 deletions(-) 563 | 10.0.4|[10.0.3...10.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.3...10.0.4)| 1 file changed, 11 insertions(+), 11 deletions(-) 564 | 10.0.3|[10.0.2...10.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.2...10.0.3)| 2 files changed, 11 insertions(+), 14 deletions(-) 565 | 10.0.2|[10.0.1...10.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.1...10.0.2)| 2 files changed, 13 insertions(+), 13 deletions(-) 566 | 10.0.1|[10.0.0...10.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0...10.0.1)| 2 files changed, 13 insertions(+), 12 deletions(-) 567 | 10.0.0|[10.0.0-rc.5...10.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-rc.5...10.0.0)| 1 file changed, 11 insertions(+), 11 deletions(-) 568 | 10.0.0-rc.5|[10.0.0-rc.4...10.0.0-rc.5](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-rc.4...10.0.0-rc.5)| 7 files changed, 16 insertions(+), 5 deletions(-) 569 | 10.0.0-rc.4|[10.0.0-rc.3...10.0.0-rc.4](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-rc.3...10.0.0-rc.4)| 1 file changed, 11 insertions(+), 11 deletions(-) 570 | 10.0.0-rc.3|[10.0.0-rc.2...10.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-rc.2...10.0.0-rc.3)| 2 files changed, 19 insertions(+), 15 deletions(-) 571 | 10.0.0-rc.2|[10.0.0-rc.0...10.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-rc.0...10.0.0-rc.2)| 3 files changed, 20 insertions(+), 16 deletions(-) 572 | 10.0.0-rc.0|[10.0.0-next.6...10.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-next.6...10.0.0-rc.0)| 6 files changed, 56 insertions(+), 40 deletions(-) 573 | 10.0.0-next.6|[10.0.0-next.5...10.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-next.5...10.0.0-next.6)| 1 file changed, 14 insertions(+), 14 deletions(-) 574 | 10.0.0-next.5|[10.0.0-next.4...10.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-next.4...10.0.0-next.5)| 1 file changed, 12 insertions(+), 12 deletions(-) 575 | 10.0.0-next.4|[10.0.0-next.3...10.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-next.3...10.0.0-next.4)| 6 files changed, 40 insertions(+), 26 deletions(-) 576 | 10.0.0-next.3|[10.0.0-next.2...10.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-next.2...10.0.0-next.3)| 1 file changed, 13 insertions(+), 13 deletions(-) 577 | 10.0.0-next.2|[10.0.0-next.1...10.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-next.1...10.0.0-next.2)| 1 file changed, 12 insertions(+), 12 deletions(-) 578 | 10.0.0-next.1|[10.0.0-next.0...10.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/10.0.0-next.0...10.0.0-next.1)| 1 file changed, 13 insertions(+), 13 deletions(-) 579 | 10.0.0-next.0|[9.1.15...10.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.15...10.0.0-next.0)| 3 files changed, 20 insertions(+), 15 deletions(-) 580 | 9.1.15|[9.1.14...9.1.15](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.14...9.1.15)| 1 file changed, 2 insertions(+), 2 deletions(-) 581 | 9.1.14|[9.1.13...9.1.14](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.13...9.1.14)| 1 file changed, 2 insertions(+), 2 deletions(-) 582 | 9.1.13|[9.1.12...9.1.13](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.12...9.1.13)| 1 file changed, 11 insertions(+), 11 deletions(-) 583 | 9.1.12|[9.1.11...9.1.12](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.11...9.1.12)| 1 file changed, 2 insertions(+), 2 deletions(-) 584 | 9.1.11|[9.1.10...9.1.11](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.10...9.1.11)| 1 file changed, 11 insertions(+), 11 deletions(-) 585 | 9.1.10|[9.1.9...9.1.10](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.9...9.1.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 586 | 9.1.9|[9.1.8...9.1.9](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.8...9.1.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 587 | 9.1.8|[9.1.7...9.1.8](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.7...9.1.8)| 1 file changed, 11 insertions(+), 11 deletions(-) 588 | 9.1.7|[9.1.6...9.1.7](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.6...9.1.7)| 1 file changed, 12 insertions(+), 12 deletions(-) 589 | 9.1.6|[9.1.5...9.1.6](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.5...9.1.6)| 1 file changed, 11 insertions(+), 11 deletions(-) 590 | 9.1.5|[9.1.4...9.1.5](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.4...9.1.5)| 1 file changed, 11 insertions(+), 12 deletions(-) 591 | 9.1.4|[9.1.3...9.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.3...9.1.4)| 1 file changed, 12 insertions(+), 12 deletions(-) 592 | 9.1.3|[9.1.2...9.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.2...9.1.3)| 1 file changed, 13 insertions(+), 13 deletions(-) 593 | 9.1.2|[9.1.1...9.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.1...9.1.2)| 1 file changed, 12 insertions(+), 12 deletions(-) 594 | 9.1.1|[9.1.0...9.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.0...9.1.1)| 2 files changed, 13 insertions(+), 13 deletions(-) 595 | 9.1.0|[9.1.0-rc.0...9.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.0-rc.0...9.1.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 596 | 9.1.0-rc.0|[9.1.0-next.4...9.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.0-next.4...9.1.0-rc.0)| 2 files changed, 13 insertions(+), 13 deletions(-) 597 | 9.1.0-next.4|[9.1.0-next.3...9.1.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.0-next.3...9.1.0-next.4)| 2 files changed, 77 insertions(+), 20 deletions(-) 598 | 9.1.0-next.3|[9.1.0-next.2...9.1.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.0-next.2...9.1.0-next.3)| 1 file changed, 13 insertions(+), 13 deletions(-) 599 | 9.1.0-next.2|[9.1.0-next.1...9.1.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.0-next.1...9.1.0-next.2)| 1 file changed, 12 insertions(+), 12 deletions(-) 600 | 9.1.0-next.1|[9.1.0-next.0...9.1.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/9.1.0-next.0...9.1.0-next.1)| 2 files changed, 15 insertions(+), 12 deletions(-) 601 | 9.1.0-next.0|[9.0.7...9.1.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.7...9.1.0-next.0)| 1 file changed, 14 insertions(+), 14 deletions(-) 602 | 9.0.7|[9.0.6...9.0.7](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.6...9.0.7)| 1 file changed, 12 insertions(+), 12 deletions(-) 603 | 9.0.6|[9.0.5...9.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.5...9.0.6)| 1 file changed, 12 insertions(+), 12 deletions(-) 604 | 9.0.5|[9.0.4...9.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.4...9.0.5)| 2 files changed, 12 insertions(+), 15 deletions(-) 605 | 9.0.4|[9.0.3...9.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.3...9.0.4)| 1 file changed, 12 insertions(+), 12 deletions(-) 606 | 9.0.3|[9.0.2...9.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.2...9.0.3)| 2 files changed, 17 insertions(+), 14 deletions(-) 607 | 9.0.2|[9.0.1...9.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.1...9.0.2)| 2 files changed, 13 insertions(+), 13 deletions(-) 608 | 9.0.1|[9.0.0...9.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0...9.0.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 609 | 9.0.0|[9.0.0-rc.14...9.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.14...9.0.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 610 | 9.0.0-rc.14|[9.0.0-rc.13...9.0.0-rc.14](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.13...9.0.0-rc.14)| 1 file changed, 2 insertions(+), 2 deletions(-) 611 | 9.0.0-rc.13|[9.0.0-rc.12...9.0.0-rc.13](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.12...9.0.0-rc.13)| 1 file changed, 13 insertions(+), 13 deletions(-) 612 | 9.0.0-rc.12|[9.0.0-rc.11...9.0.0-rc.12](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.11...9.0.0-rc.12)| 1 file changed, 12 insertions(+), 12 deletions(-) 613 | 9.0.0-rc.11|[9.0.0-rc.10...9.0.0-rc.11](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.10...9.0.0-rc.11)| 4 files changed, 23 insertions(+), 19 deletions(-) 614 | 9.0.0-rc.10|[9.0.0-rc.9...9.0.0-rc.10](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.9...9.0.0-rc.10)| 2 files changed, 5 insertions(+), 4 deletions(-) 615 | 9.0.0-rc.9|[9.0.0-rc.8...9.0.0-rc.9](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.8...9.0.0-rc.9)| 1 file changed, 12 insertions(+), 12 deletions(-) 616 | 9.0.0-rc.8|[9.0.0-rc.7...9.0.0-rc.8](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.7...9.0.0-rc.8)| 1 file changed, 12 insertions(+), 12 deletions(-) 617 | 9.0.0-rc.7|[9.0.0-rc.6...9.0.0-rc.7](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.6...9.0.0-rc.7)| 1 file changed, 12 insertions(+), 12 deletions(-) 618 | 9.0.0-rc.6|[9.0.0-rc.5...9.0.0-rc.6](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.5...9.0.0-rc.6)| 1 file changed, 12 insertions(+), 12 deletions(-) 619 | 9.0.0-rc.5|[9.0.0-rc.4...9.0.0-rc.5](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.4...9.0.0-rc.5)| 2 files changed, 14 insertions(+), 14 deletions(-) 620 | 9.0.0-rc.4|[9.0.0-rc.3...9.0.0-rc.4](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.3...9.0.0-rc.4)| 1 file changed, 12 insertions(+), 12 deletions(-) 621 | 9.0.0-rc.3|[9.0.0-rc.2...9.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.2...9.0.0-rc.3)| 1 file changed, 12 insertions(+), 12 deletions(-) 622 | 9.0.0-rc.2|[9.0.0-rc.1...9.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.1...9.0.0-rc.2)| 1 file changed, 13 insertions(+), 14 deletions(-) 623 | 9.0.0-rc.1|[9.0.0-rc.0...9.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-rc.0...9.0.0-rc.1)| 1 file changed, 12 insertions(+), 12 deletions(-) 624 | 9.0.0-rc.0|[9.0.0-next.19...9.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.19...9.0.0-rc.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 625 | 9.0.0-next.19|[9.0.0-next.18...9.0.0-next.19](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.18...9.0.0-next.19)| 1 file changed, 12 insertions(+), 12 deletions(-) 626 | 9.0.0-next.18|[9.0.0-next.17...9.0.0-next.18](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.17...9.0.0-next.18)| 1 file changed, 2 insertions(+), 2 deletions(-) 627 | 9.0.0-next.17|[9.0.0-next.16...9.0.0-next.17](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.16...9.0.0-next.17)| 1 file changed, 12 insertions(+), 12 deletions(-) 628 | 9.0.0-next.16|[9.0.0-next.15...9.0.0-next.16](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.15...9.0.0-next.16)| 2 files changed, 4 insertions(+), 4 deletions(-) 629 | 9.0.0-next.15|[9.0.0-next.14...9.0.0-next.15](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.14...9.0.0-next.15)| 1 file changed, 2 insertions(+), 2 deletions(-) 630 | 9.0.0-next.14|[9.0.0-next.13...9.0.0-next.14](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.13...9.0.0-next.14)| 1 file changed, 2 insertions(+), 2 deletions(-) 631 | 9.0.0-next.13|[9.0.0-next.12...9.0.0-next.13](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.12...9.0.0-next.13)| 2 files changed, 17 insertions(+), 17 deletions(-) 632 | 9.0.0-next.12|[9.0.0-next.11...9.0.0-next.12](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.11...9.0.0-next.12)| 1 file changed, 2 insertions(+), 2 deletions(-) 633 | 9.0.0-next.11|[9.0.0-next.10...9.0.0-next.11](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.10...9.0.0-next.11)| 1 file changed, 2 insertions(+), 2 deletions(-) 634 | 9.0.0-next.10|[9.0.0-next.9...9.0.0-next.10](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.9...9.0.0-next.10)| 1 file changed, 13 insertions(+), 13 deletions(-) 635 | 9.0.0-next.9|[9.0.0-next.8...9.0.0-next.9](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.8...9.0.0-next.9)| 2 files changed, 18 insertions(+), 17 deletions(-) 636 | 9.0.0-next.8|[9.0.0-next.7...9.0.0-next.8](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.7...9.0.0-next.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 637 | 9.0.0-next.7|[9.0.0-next.6...9.0.0-next.7](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.6...9.0.0-next.7)| 1 file changed, 13 insertions(+), 13 deletions(-) 638 | 9.0.0-next.6|[9.0.0-next.5...9.0.0-next.6](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.5...9.0.0-next.6)| 1 file changed, 13 insertions(+), 13 deletions(-) 639 | 9.0.0-next.5|[9.0.0-next.4...9.0.0-next.5](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.4...9.0.0-next.5)| 1 file changed, 13 insertions(+), 13 deletions(-) 640 | 9.0.0-next.4|[9.0.0-next.3...9.0.0-next.4](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.3...9.0.0-next.4)| 1 file changed, 2 insertions(+), 2 deletions(-) 641 | 9.0.0-next.3|[9.0.0-next.2...9.0.0-next.3](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.2...9.0.0-next.3)| 2 files changed, 19 insertions(+), 12 deletions(-) 642 | 9.0.0-next.2|[9.0.0-next.1...9.0.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.1...9.0.0-next.2)| 3 files changed, 18 insertions(+), 33 deletions(-) 643 | 9.0.0-next.1|[9.0.0-next.0...9.0.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/9.0.0-next.0...9.0.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 644 | 9.0.0-next.0|[8.3.28...9.0.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.28...9.0.0-next.0)| 3 files changed, 24 insertions(+), 28 deletions(-) 645 | 8.3.28|[8.3.27...8.3.28](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.27...8.3.28)| 1 file changed, 2 insertions(+), 2 deletions(-) 646 | 8.3.27|[8.3.26...8.3.27](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.26...8.3.27)| 1 file changed, 3 insertions(+), 3 deletions(-) 647 | 8.3.26|[8.3.25...8.3.26](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.25...8.3.26)| 1 file changed, 1 insertion(+), 1 deletion(-) 648 | 8.3.25|[8.3.24...8.3.25](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.24...8.3.25)| 1 file changed, 2 insertions(+), 2 deletions(-) 649 | 8.3.24|[8.3.23...8.3.24](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.23...8.3.24)| 1 file changed, 2 insertions(+), 2 deletions(-) 650 | 8.3.23|[8.3.22...8.3.23](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.22...8.3.23)| 1 file changed, 2 insertions(+), 2 deletions(-) 651 | 8.3.22|[8.3.21...8.3.22](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.21...8.3.22)| 1 file changed, 2 insertions(+), 2 deletions(-) 652 | 8.3.21|[8.3.20...8.3.21](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.20...8.3.21)| 1 file changed, 2 insertions(+), 2 deletions(-) 653 | 8.3.20|[8.3.19...8.3.20](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.19...8.3.20)| 1 file changed, 2 insertions(+), 2 deletions(-) 654 | 8.3.19|[8.3.18...8.3.19](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.18...8.3.19)| 1 file changed, 12 insertions(+), 12 deletions(-) 655 | 8.3.18|[8.3.17...8.3.18](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.17...8.3.18)| 1 file changed, 2 insertions(+), 2 deletions(-) 656 | 8.3.17|[8.3.16...8.3.17](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.16...8.3.17)| 1 file changed, 2 insertions(+), 2 deletions(-) 657 | 8.3.16|[8.3.15...8.3.16](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.15...8.3.16)| 1 file changed, 12 insertions(+), 12 deletions(-) 658 | 8.3.15|[8.3.14...8.3.15](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.14...8.3.15)| 1 file changed, 12 insertions(+), 12 deletions(-) 659 | 8.3.14|[8.3.13...8.3.14](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.13...8.3.14)| 1 file changed, 2 insertions(+), 2 deletions(-) 660 | 8.3.13|[8.3.12...8.3.13](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.12...8.3.13)| 1 file changed, 2 insertions(+), 2 deletions(-) 661 | 8.3.12|[8.3.10...8.3.12](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.10...8.3.12)| 1 file changed, 2 insertions(+), 2 deletions(-) 662 | 8.3.10|[8.3.9...8.3.10](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.9...8.3.10)| 2 files changed, 13 insertions(+), 13 deletions(-) 663 | 8.3.9|[8.3.8...8.3.9](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.8...8.3.9)| 1 file changed, 2 insertions(+), 2 deletions(-) 664 | 8.3.8|[8.3.7...8.3.8](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.7...8.3.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 665 | 8.3.7|[8.3.6...8.3.7](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.6...8.3.7)| 2 files changed, 12 insertions(+), 13 deletions(-) 666 | 8.3.6|[8.3.5...8.3.6](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.5...8.3.6)| 1 file changed, 12 insertions(+), 12 deletions(-) 667 | 8.3.5|[8.3.4...8.3.5](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.4...8.3.5)| 1 file changed, 12 insertions(+), 12 deletions(-) 668 | 8.3.4|[8.3.3...8.3.4](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.3...8.3.4)| 1 file changed, 12 insertions(+), 12 deletions(-) 669 | 8.3.3|[8.3.2...8.3.3](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.2...8.3.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 670 | 8.3.2|[8.3.1...8.3.2](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.1...8.3.2)| 1 file changed, 12 insertions(+), 12 deletions(-) 671 | 8.3.1|[8.3.0...8.3.1](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.0...8.3.1)| 2 files changed, 3 insertions(+), 3 deletions(-) 672 | 8.3.0|[8.3.0-rc.0...8.3.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.0-rc.0...8.3.0)| 2 files changed, 46 insertions(+), 12 deletions(-) 673 | 8.3.0-rc.0|[8.3.0-next.2...8.3.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.0-next.2...8.3.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 674 | 8.3.0-next.2|[8.3.0-next.1...8.3.0-next.2](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.0-next.1...8.3.0-next.2)| 7 files changed, 506 insertions(+), 25 deletions(-) 675 | 8.3.0-next.1|[8.3.0-next.0...8.3.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/8.3.0-next.0...8.3.0-next.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 676 | 8.3.0-next.0|[8.2.2...8.3.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.2.2...8.3.0-next.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 677 | 8.2.2|[8.2.1...8.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/8.2.1...8.2.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 678 | 8.2.1|[8.2.0...8.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/8.2.0...8.2.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 679 | 8.2.0|[8.2.0-rc.0...8.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.2.0-rc.0...8.2.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 680 | 8.2.0-rc.0|[8.2.0-next.1...8.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.2.0-next.1...8.2.0-rc.0)| 2 files changed, 19 insertions(+), 14 deletions(-) 681 | 8.2.0-next.1|[8.2.0-next.0...8.2.0-next.1](https://github.com/cexbrayat/angular-cli-diff/compare/8.2.0-next.0...8.2.0-next.1)| 2 files changed, 16 insertions(+), 12 deletions(-) 682 | 8.2.0-next.0|[8.1.3...8.2.0-next.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.1.3...8.2.0-next.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 683 | 8.1.3|[8.1.2...8.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/8.1.2...8.1.3)| 2 files changed, 14 insertions(+), 14 deletions(-) 684 | 8.1.2|[8.1.1...8.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/8.1.1...8.1.2)| 1 file changed, 12 insertions(+), 12 deletions(-) 685 | 8.1.1|[8.1.0...8.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/8.1.0...8.1.1)| 1 file changed, 12 insertions(+), 12 deletions(-) 686 | 8.1.0|[8.1.0-rc.0...8.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.1.0-rc.0...8.1.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 687 | 8.1.0-rc.0|[8.1.0-beta.3...8.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.1.0-beta.3...8.1.0-rc.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 688 | 8.1.0-beta.3|[8.1.0-beta.2...8.1.0-beta.3](https://github.com/cexbrayat/angular-cli-diff/compare/8.1.0-beta.2...8.1.0-beta.3)| 2 files changed, 5 insertions(+), 1 deletion(-) 689 | 8.1.0-beta.2|[8.1.0-beta.1...8.1.0-beta.2](https://github.com/cexbrayat/angular-cli-diff/compare/8.1.0-beta.1...8.1.0-beta.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 690 | 8.1.0-beta.1|[8.1.0-beta.0...8.1.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/8.1.0-beta.0...8.1.0-beta.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 691 | 8.1.0-beta.0|[8.0.6...8.1.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.6...8.1.0-beta.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 692 | 8.0.6|[8.0.5...8.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.5...8.0.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 693 | 8.0.5|[8.0.4...8.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.4...8.0.5)| 3 files changed, 13 insertions(+), 15 deletions(-) 694 | 8.0.4|[8.0.3...8.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.3...8.0.4)| 2 files changed, 3 insertions(+), 2 deletions(-) 695 | 8.0.3|[8.0.2...8.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.2...8.0.3)| 2 files changed, 14 insertions(+), 13 deletions(-) 696 | 8.0.2|[8.0.1...8.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.1...8.0.2)| 2 files changed, 2 insertions(+), 1 deletion(-) 697 | 8.0.1|[8.0.0...8.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0...8.0.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 698 | 8.0.0|[8.0.0-rc.4...8.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-rc.4...8.0.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 699 | 8.0.0-rc.4|[8.0.0-rc.3...8.0.0-rc.4](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-rc.3...8.0.0-rc.4)| 2 files changed, 13 insertions(+), 17 deletions(-) 700 | 8.0.0-rc.3|[8.0.0-rc.2...8.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-rc.2...8.0.0-rc.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 701 | 8.0.0-rc.2|[8.0.0-rc.1...8.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-rc.1...8.0.0-rc.2)| 1 file changed, 12 insertions(+), 12 deletions(-) 702 | 8.0.0-rc.1|[8.0.0-rc.0...8.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-rc.0...8.0.0-rc.1)| 1 file changed, 12 insertions(+), 12 deletions(-) 703 | 8.0.0-rc.0|[8.0.0-beta.18...8.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.18...8.0.0-rc.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 704 | 8.0.0-beta.18|[8.0.0-beta.17...8.0.0-beta.18](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.17...8.0.0-beta.18)| 1 file changed, 12 insertions(+), 12 deletions(-) 705 | 8.0.0-beta.17|[8.0.0-beta.16...8.0.0-beta.17](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.16...8.0.0-beta.17)| 1 file changed, 2 insertions(+), 2 deletions(-) 706 | 8.0.0-beta.16|[8.0.0-beta.15...8.0.0-beta.16](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.15...8.0.0-beta.16)| 3 files changed, 11 insertions(+), 10 deletions(-) 707 | 8.0.0-beta.15|[8.0.0-beta.14...8.0.0-beta.15](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.14...8.0.0-beta.15)| 1 file changed, 1 insertion(+), 1 deletion(-) 708 | 8.0.0-beta.14|[8.0.0-beta.13...8.0.0-beta.14](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.13...8.0.0-beta.14)| 3 files changed, 22 insertions(+), 20 deletions(-) 709 | 8.0.0-beta.13|[8.0.0-beta.12...8.0.0-beta.13](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.12...8.0.0-beta.13)| 1 file changed, 1 insertion(+), 1 deletion(-) 710 | 8.0.0-beta.12|[8.0.0-beta.11...8.0.0-beta.12](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.11...8.0.0-beta.12)| 1 file changed, 1 insertion(+), 2 deletions(-) 711 | 8.0.0-beta.11|[8.0.0-beta.10...8.0.0-beta.11](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.10...8.0.0-beta.11)| 3 files changed, 22 insertions(+), 22 deletions(-) 712 | 8.0.0-beta.10|[8.0.0-beta.9...8.0.0-beta.10](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.9...8.0.0-beta.10)| 1 file changed, 12 insertions(+), 12 deletions(-) 713 | 8.0.0-beta.9|[8.0.0-beta.8...8.0.0-beta.9](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.8...8.0.0-beta.9)| 1 file changed, 1 insertion(+), 1 deletion(-) 714 | 8.0.0-beta.8|[8.0.0-beta.7...8.0.0-beta.8](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.7...8.0.0-beta.8)| 3 files changed, 25 insertions(+), 16 deletions(-) 715 | 8.0.0-beta.7|[8.0.0-beta.6...8.0.0-beta.7](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.6...8.0.0-beta.7)| 1 file changed, 2 insertions(+), 2 deletions(-) 716 | 8.0.0-beta.6|[8.0.0-beta.5...8.0.0-beta.6](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.5...8.0.0-beta.6)| 1 file changed, 2 insertions(+), 2 deletions(-) 717 | 8.0.0-beta.5|[8.0.0-beta.4...8.0.0-beta.5](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.4...8.0.0-beta.5)| 13 files changed, 83 insertions(+), 100 deletions(-) 718 | 8.0.0-beta.4|[8.0.0-beta.2...8.0.0-beta.4](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.2...8.0.0-beta.4)| 2 files changed, 2 insertions(+), 8 deletions(-) 719 | 8.0.0-beta.2|[8.0.0-beta.1...8.0.0-beta.2](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.1...8.0.0-beta.2)| 2 files changed, 13 insertions(+), 13 deletions(-) 720 | 8.0.0-beta.1|[8.0.0-beta.0...8.0.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/8.0.0-beta.0...8.0.0-beta.1)| 2 files changed, 19 insertions(+), 13 deletions(-) 721 | 8.0.0-beta.0|[7.3.10...8.0.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.10...8.0.0-beta.0)| 1 file changed, 15 insertions(+), 15 deletions(-) 722 | 7.3.10|[7.3.9...7.3.10](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.9...7.3.10)| 1 file changed, 1 insertion(+), 1 deletion(-) 723 | 7.3.9|[7.3.8...7.3.9](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.8...7.3.9)| 1 file changed, 1 insertion(+), 1 deletion(-) 724 | 7.3.8|[7.3.7...7.3.8](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.7...7.3.8)| 1 file changed, 1 insertion(+), 1 deletion(-) 725 | 7.3.7|[7.3.6...7.3.7](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.6...7.3.7)| 1 file changed, 1 insertion(+), 1 deletion(-) 726 | 7.3.6|[7.3.5...7.3.6](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.5...7.3.6)| 1 file changed, 1 insertion(+), 1 deletion(-) 727 | 7.3.5|[7.3.4...7.3.5](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.4...7.3.5)| 2 files changed, 16 insertions(+), 16 deletions(-) 728 | 7.3.4|[7.3.3...7.3.4](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.3...7.3.4)| 2 files changed, 2 insertions(+), 2 deletions(-) 729 | 7.3.3|[7.3.2...7.3.3](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.2...7.3.3)| 2 files changed, 3 insertions(+), 3 deletions(-) 730 | 7.3.2|[7.3.1...7.3.2](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.1...7.3.2)| 4 files changed, 6 insertions(+), 3 deletions(-) 731 | 7.3.1|[7.3.0...7.3.1](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.0...7.3.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 732 | 7.3.0|[7.3.0-rc.0...7.3.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.0-rc.0...7.3.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 733 | 7.3.0-rc.0|[7.3.0-beta.0...7.3.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.3.0-beta.0...7.3.0-rc.0)| 1 file changed, 2 insertions(+), 2 deletions(-) 734 | 7.3.0-beta.0|[7.2.4...7.3.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.2.4...7.3.0-beta.0)| 5 files changed, 28 insertions(+), 105 deletions(-) 735 | 7.2.4|[7.2.3...7.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/7.2.3...7.2.4)| 2 files changed, 2 insertions(+), 2 deletions(-) 736 | 7.2.3|[7.2.2...7.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/7.2.2...7.2.3)| 2 files changed, 3 insertions(+), 3 deletions(-) 737 | 7.2.2|[7.2.1...7.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/7.2.1...7.2.2)| 2 files changed, 10 insertions(+), 1 deletion(-) 738 | 7.2.1|[7.2.0...7.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/7.2.0...7.2.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 739 | 7.2.0|[7.2.0-rc.0...7.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.2.0-rc.0...7.2.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 740 | 7.2.0-rc.0|[7.2.0-beta.2...7.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.2.0-beta.2...7.2.0-rc.0)| 1 file changed, 13 insertions(+), 13 deletions(-) 741 | 7.2.0-beta.2|[7.2.0-beta.1...7.2.0-beta.2](https://github.com/cexbrayat/angular-cli-diff/compare/7.2.0-beta.1...7.2.0-beta.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 742 | 7.2.0-beta.1|[7.2.0-beta.0...7.2.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/7.2.0-beta.0...7.2.0-beta.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 743 | 7.2.0-beta.0|[7.1.4...7.2.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.1.4...7.2.0-beta.0)| 2 files changed, 2 insertions(+), 1 deletion(-) 744 | 7.1.4|[7.1.3...7.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/7.1.3...7.1.4)| 2 files changed, 6 insertions(+), 10 deletions(-) 745 | 7.1.3|[7.1.2...7.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/7.1.2...7.1.3)| 2 files changed, 20 insertions(+), 11 deletions(-) 746 | 7.1.2|[7.1.1...7.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/7.1.1...7.1.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 747 | 7.1.1|[7.1.0...7.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/7.1.0...7.1.1)| 2 files changed, 2 insertions(+), 2 deletions(-) 748 | 7.1.0|[7.1.0-rc.0...7.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.1.0-rc.0...7.1.0)| 1 file changed, 12 insertions(+), 12 deletions(-) 749 | 7.1.0-rc.0|[7.1.0-beta.1...7.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.1.0-beta.1...7.1.0-rc.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 750 | 7.1.0-beta.1|[7.1.0-beta.0...7.1.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/7.1.0-beta.0...7.1.0-beta.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 751 | 7.1.0-beta.0|[7.0.7...7.1.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.7...7.1.0-beta.0)| 5 files changed, 22 insertions(+), 17 deletions(-) 752 | 7.0.7|[7.0.6...7.0.7](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.6...7.0.7)| 1 file changed, 1 insertion(+), 1 deletion(-) 753 | 7.0.6|[7.0.5...7.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.5...7.0.6)| 4 files changed, 4 insertions(+), 4 deletions(-) 754 | 7.0.5|[7.0.4...7.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.4...7.0.5)| 1 file changed, 2 insertions(+), 2 deletions(-) 755 | 7.0.4|[7.0.3...7.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.3...7.0.4)| 1 file changed, 1 insertion(+), 1 deletion(-) 756 | 7.0.3|[7.0.2...7.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.2...7.0.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 757 | 7.0.2|[7.0.1...7.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.1...7.0.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 758 | 7.0.1|[7.0.0-rc.3...7.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.0-rc.3...7.0.1)| 1 file changed, 14 insertions(+), 14 deletions(-) 759 | 7.0.0-rc.3|[7.0.0-rc.2...7.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.0-rc.2...7.0.0-rc.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 760 | 7.0.0-rc.2|[7.0.0-rc.1...7.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.0-rc.1...7.0.0-rc.2)| 3 files changed, 4 insertions(+), 6 deletions(-) 761 | 7.0.0-rc.1|[7.0.0-rc.0...7.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.0-rc.0...7.0.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 762 | 7.0.0-rc.0|[7.0.0-beta.4...7.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.0-beta.4...7.0.0-rc.0)| 4 files changed, 31 insertions(+), 23 deletions(-) 763 | 7.0.0-beta.4|[7.0.0-beta.3...7.0.0-beta.4](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.0-beta.3...7.0.0-beta.4)| 1 file changed, 1 insertion(+), 1 deletion(-) 764 | 7.0.0-beta.3|[7.0.0-beta.2...7.0.0-beta.3](https://github.com/cexbrayat/angular-cli-diff/compare/7.0.0-beta.2...7.0.0-beta.3)| 2 files changed, 14 insertions(+), 13 deletions(-) 765 | 7.0.0-beta.2|[6.2.9...7.0.0-beta.2](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.9...7.0.0-beta.2)| 2 files changed, 16 insertions(+), 16 deletions(-) 766 | 6.2.9|[6.2.8...6.2.9](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.8...6.2.9)| 1 file changed, 1 insertion(+), 1 deletion(-) 767 | 6.2.8|[6.2.7...6.2.8](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.7...6.2.8)| 1 file changed, 1 insertion(+), 1 deletion(-) 768 | 6.2.7|[6.2.6...6.2.7](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.6...6.2.7)| 1 file changed, 1 insertion(+), 1 deletion(-) 769 | 6.2.6|[6.2.5...6.2.6](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.5...6.2.6)| 1 file changed, 1 insertion(+), 1 deletion(-) 770 | 6.2.5|[6.2.4...6.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.4...6.2.5)| 1 file changed, 1 insertion(+), 1 deletion(-) 771 | 6.2.4|[6.2.3...6.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.3...6.2.4)| 2 files changed, 11 insertions(+), 7 deletions(-) 772 | 6.2.3|[6.2.2...6.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.2...6.2.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 773 | 6.2.2|[6.2.1...6.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.1...6.2.2)| 3 files changed, 4 insertions(+), 4 deletions(-) 774 | 6.2.1|[6.2.0...6.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.0...6.2.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 775 | 6.2.0|[6.2.0-rc.1...6.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.0-rc.1...6.2.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 776 | 6.2.0-rc.1|[6.2.0-rc.0...6.2.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.0-rc.0...6.2.0-rc.1)| 2 files changed, 8 insertions(+), 7 deletions(-) 777 | 6.2.0-rc.0|[6.2.0-beta.3...6.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.0-beta.3...6.2.0-rc.0)| 1 file changed, 3 insertions(+), 3 deletions(-) 778 | 6.2.0-beta.3|[6.2.0-beta.2...6.2.0-beta.3](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.0-beta.2...6.2.0-beta.3)| 2 files changed, 2 insertions(+), 1 deletion(-) 779 | 6.2.0-beta.2|[6.2.0-beta.1...6.2.0-beta.2](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.0-beta.1...6.2.0-beta.2)| 2 files changed, 2 insertions(+), 1 deletion(-) 780 | 6.2.0-beta.1|[6.2.0-beta.0...6.2.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/6.2.0-beta.0...6.2.0-beta.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 781 | 6.2.0-beta.0|[6.1.5...6.2.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.5...6.2.0-beta.0)| 2 files changed, 11 insertions(+), 11 deletions(-) 782 | 6.1.5|[6.1.4...6.1.5](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.4...6.1.5)| 2 files changed, 5 insertions(+), 3 deletions(-) 783 | 6.1.4|[6.1.3...6.1.4](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.3...6.1.4)| 2 files changed, 3 insertions(+), 3 deletions(-) 784 | 6.1.3|[6.1.2...6.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.2...6.1.3)| 2 files changed, 5 insertions(+), 5 deletions(-) 785 | 6.1.2|[6.1.1...6.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.1...6.1.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 786 | 6.1.1|[6.1.0...6.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.0...6.1.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 787 | 6.1.0|[6.1.0-rc.3...6.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.0-rc.3...6.1.0)| 1 file changed, 13 insertions(+), 13 deletions(-) 788 | 6.1.0-rc.3|[6.1.0-rc.2...6.1.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.0-rc.2...6.1.0-rc.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 789 | 6.1.0-rc.2|[6.1.0-rc.1...6.1.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.0-rc.1...6.1.0-rc.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 790 | 6.1.0-rc.1|[6.1.0-rc.0...6.1.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.0-rc.0...6.1.0-rc.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 791 | 6.1.0-rc.0|[6.1.0-beta.2...6.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.0-beta.2...6.1.0-rc.0)| 4 files changed, 6 insertions(+), 7 deletions(-) 792 | 6.1.0-beta.2|[6.1.0-beta.0...6.1.0-beta.2](https://github.com/cexbrayat/angular-cli-diff/compare/6.1.0-beta.0...6.1.0-beta.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 793 | 6.1.0-beta.0|[6.0.8...6.1.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.8...6.1.0-beta.0)| 3 files changed, 5 insertions(+), 5 deletions(-) 794 | 6.0.8|[6.0.7...6.0.8](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.7...6.0.8)| 1 file changed, 2 insertions(+), 2 deletions(-) 795 | 6.0.7|[6.0.5...6.0.7](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.5...6.0.7)| 3 files changed, 9 insertions(+), 4 deletions(-) 796 | 6.0.5|[6.0.3...6.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.3...6.0.5)| 1 file changed, 13 insertions(+), 13 deletions(-) 797 | 6.0.3|[6.0.2...6.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.2...6.0.3)| 2 files changed, 3 insertions(+), 3 deletions(-) 798 | 6.0.2|[6.0.1...6.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.1...6.0.2)| 1 file changed, 13 insertions(+), 13 deletions(-) 799 | 6.0.1|[6.0.0...6.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0...6.0.1)| 2 files changed, 3 insertions(+), 3 deletions(-) 800 | 6.0.0|[6.0.0-rc.10...6.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.10...6.0.0)| 1 file changed, 13 insertions(+), 13 deletions(-) 801 | 6.0.0-rc.10|[6.0.0-rc.9...6.0.0-rc.10](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.9...6.0.0-rc.10)| 1 file changed, 2 insertions(+), 2 deletions(-) 802 | 6.0.0-rc.9|[6.0.0-rc.8...6.0.0-rc.9](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.8...6.0.0-rc.9)| 2 files changed, 3 insertions(+), 4 deletions(-) 803 | 6.0.0-rc.8|[6.0.0-rc.7...6.0.0-rc.8](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.7...6.0.0-rc.8)| 3 files changed, 21 insertions(+), 36 deletions(-) 804 | 6.0.0-rc.7|[6.0.0-rc.6...6.0.0-rc.7](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.6...6.0.0-rc.7)| 4 files changed, 24 insertions(+), 20 deletions(-) 805 | 6.0.0-rc.6|[6.0.0-rc.5...6.0.0-rc.6](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.5...6.0.0-rc.6)| 2 files changed, 5 insertions(+), 10 deletions(-) 806 | 6.0.0-rc.5|[6.0.0-rc.4...6.0.0-rc.5](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.4...6.0.0-rc.5)| 3 files changed, 7 insertions(+), 7 deletions(-) 807 | 6.0.0-rc.4|[6.0.0-rc.3...6.0.0-rc.4](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.3...6.0.0-rc.4)| 3 files changed, 21 insertions(+), 3 deletions(-) 808 | 6.0.0-rc.3|[6.0.0-rc.2...6.0.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.2...6.0.0-rc.3)| 2 files changed, 1 insertion(+), 2 deletions(-) 809 | 6.0.0-rc.2|[6.0.0-rc.1...6.0.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.1...6.0.0-rc.2)| 1 file changed, 2 insertions(+), 2 deletions(-) 810 | 6.0.0-rc.1|[6.0.0-rc.0...6.0.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-rc.0...6.0.0-rc.1)| 2 files changed, 8 insertions(+), 8 deletions(-) 811 | 6.0.0-rc.0|[6.0.0-beta.9...6.0.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-beta.9...6.0.0-rc.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 812 | 6.0.0-beta.9|[6.0.0-beta.8...6.0.0-beta.9](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-beta.8...6.0.0-beta.9)| 24 files changed, 50 insertions(+), 50 deletions(-) 813 | 6.0.0-beta.8|[6.0.0-beta.7...6.0.0-beta.8](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-beta.7...6.0.0-beta.8)| 3 files changed, 14 insertions(+), 13 deletions(-) 814 | 6.0.0-beta.7|[6.0.0-beta.6...6.0.0-beta.7](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-beta.6...6.0.0-beta.7)| 29 files changed, 179 insertions(+), 120 deletions(-) 815 | 6.0.0-beta.6|[6.0.0-beta.5...6.0.0-beta.6](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-beta.5...6.0.0-beta.6)| 1 file changed, 1 insertion(+), 1 deletion(-) 816 | 6.0.0-beta.5|[6.0.0-beta.4...6.0.0-beta.5](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-beta.4...6.0.0-beta.5)| 1 file changed, 1 insertion(+), 1 deletion(-) 817 | 6.0.0-beta.4|[6.0.0-beta.3...6.0.0-beta.4](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-beta.3...6.0.0-beta.4)| 1 file changed, 1 insertion(+), 1 deletion(-) 818 | 6.0.0-beta.3|[6.0.0-beta.2...6.0.0-beta.3](https://github.com/cexbrayat/angular-cli-diff/compare/6.0.0-beta.2...6.0.0-beta.3)| 2 files changed, 18 insertions(+), 10 deletions(-) 819 | 6.0.0-beta.2|[1.7.4...6.0.0-beta.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.7.4...6.0.0-beta.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 820 | 1.7.4|[1.7.3...1.7.4](https://github.com/cexbrayat/angular-cli-diff/compare/1.7.3...1.7.4)| 1 file changed, 1 insertion(+), 1 deletion(-) 821 | 1.7.3|[1.7.2...1.7.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.7.2...1.7.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 822 | 1.7.2|[1.7.1...1.7.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.7.1...1.7.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 823 | 1.7.1|[1.7.0...1.7.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.7.0...1.7.1)| 2 files changed, 2 insertions(+), 1 deletion(-) 824 | 1.7.0|[1.7.0-rc.0...1.7.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.7.0-rc.0...1.7.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 825 | 1.7.0-rc.0|[1.7.0-beta.3...1.7.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.7.0-beta.3...1.7.0-rc.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 826 | 1.7.0-beta.3|[1.7.0-beta.2...1.7.0-beta.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.7.0-beta.2...1.7.0-beta.3)| 2 files changed, 14 insertions(+), 1 deletion(-) 827 | 1.7.0-beta.2|[1.7.0-beta.1...1.7.0-beta.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.7.0-beta.1...1.7.0-beta.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 828 | 1.7.0-beta.1|[1.7.0-beta.0...1.7.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.7.0-beta.0...1.7.0-beta.1)| 1 file changed, 3 insertions(+), 3 deletions(-) 829 | 1.7.0-beta.0|[1.6.8...1.7.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.8...1.7.0-beta.0)| 1 file changed, 3 insertions(+), 3 deletions(-) 830 | 1.6.8|[1.6.7...1.6.8](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.7...1.6.8)| 1 file changed, 1 insertion(+), 1 deletion(-) 831 | 1.6.7|[1.6.6...1.6.7](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.6...1.6.7)| 1 file changed, 1 insertion(+), 1 deletion(-) 832 | 1.6.6|[1.6.5...1.6.6](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.5...1.6.6)| 1 file changed, 1 insertion(+), 2 deletions(-) 833 | 1.6.5|[1.6.4...1.6.5](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.4...1.6.5)| 3 files changed, 13 insertions(+), 15 deletions(-) 834 | 1.6.4|[1.6.3...1.6.4](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.3...1.6.4)| 1 file changed, 4 insertions(+), 4 deletions(-) 835 | 1.6.3|[1.6.2...1.6.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.2...1.6.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 836 | 1.6.2|[1.6.1...1.6.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.1...1.6.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 837 | 1.6.1|[1.6.0...1.6.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.0...1.6.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 838 | 1.6.0|[1.6.0-rc.2...1.6.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.0-rc.2...1.6.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 839 | 1.6.0-rc.2|[1.6.0-rc.1...1.6.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.0-rc.1...1.6.0-rc.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 840 | 1.6.0-rc.1|[1.6.0-rc.0...1.6.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.0-rc.0...1.6.0-rc.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 841 | 1.6.0-rc.0|[1.6.0-beta.2...1.6.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.0-beta.2...1.6.0-rc.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 842 | 1.6.0-beta.2|[1.6.0-beta.1...1.6.0-beta.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.0-beta.1...1.6.0-beta.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 843 | 1.6.0-beta.1|[1.6.0-beta.0...1.6.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.6.0-beta.0...1.6.0-beta.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 844 | 1.6.0-beta.0|[1.5.6...1.6.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.6...1.6.0-beta.0)| 1 file changed, 4 insertions(+), 4 deletions(-) 845 | 1.5.6|[1.5.5...1.5.6](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.5...1.5.6)| 4 files changed, 24 insertions(+), 36 deletions(-) 846 | 1.5.5|[1.5.4...1.5.5](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.4...1.5.5)| 3 files changed, 5 insertions(+), 12 deletions(-) 847 | 1.5.4|[1.5.3...1.5.4](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.3...1.5.4)| 3 files changed, 6 insertions(+), 5 deletions(-) 848 | 1.5.3|[1.5.2...1.5.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.2...1.5.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 849 | 1.5.2|[1.5.1...1.5.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.1...1.5.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 850 | 1.5.1|[1.5.0...1.5.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0...1.5.1)| 3 files changed, 4 insertions(+), 2 deletions(-) 851 | 1.5.0|[1.5.0-rc.8...1.5.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-rc.8...1.5.0)| 1 file changed, 14 insertions(+), 14 deletions(-) 852 | 1.5.0-rc.8|[1.5.0-rc.7...1.5.0-rc.8](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-rc.7...1.5.0-rc.8)| 1 file changed, 1 insertion(+), 1 deletion(-) 853 | 1.5.0-rc.7|[1.5.0-rc.6...1.5.0-rc.7](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-rc.6...1.5.0-rc.7)| 1 file changed, 1 insertion(+), 1 deletion(-) 854 | 1.5.0-rc.6|[1.5.0-rc.5...1.5.0-rc.6](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-rc.5...1.5.0-rc.6)| 1 file changed, 1 insertion(+), 1 deletion(-) 855 | 1.5.0-rc.5|[1.5.0-rc.4...1.5.0-rc.5](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-rc.4...1.5.0-rc.5)| 1 file changed, 1 insertion(+), 1 deletion(-) 856 | 1.5.0-rc.4|[1.5.0-rc.3...1.5.0-rc.4](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-rc.3...1.5.0-rc.4)| 1 file changed, 1 insertion(+), 1 deletion(-) 857 | 1.5.0-rc.3|[1.5.0-rc.2...1.5.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-rc.2...1.5.0-rc.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 858 | 1.5.0-rc.2|[1.5.0-rc.1...1.5.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-rc.1...1.5.0-rc.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 859 | 1.5.0-rc.1|[1.5.0-rc.0...1.5.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-rc.0...1.5.0-rc.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 860 | 1.5.0-rc.0|[1.5.0-beta.4...1.5.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-beta.4...1.5.0-rc.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 861 | 1.5.0-beta.4|[1.5.0-beta.3...1.5.0-beta.4](https://github.com/cexbrayat/angular-cli-diff/compare/1.5.0-beta.3...1.5.0-beta.4)| 1 file changed, 1 insertion(+), 1 deletion(-) 862 | 1.5.0-beta.3|[1.4.10...1.5.0-beta.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.10...1.5.0-beta.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 863 | 1.4.10|[1.4.9...1.4.10](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.9...1.4.10)| 2 files changed, 1 insertion(+), 4 deletions(-) 864 | 1.4.9|[1.4.8...1.4.9](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.8...1.4.9)| 1 file changed, 1 insertion(+), 1 deletion(-) 865 | 1.4.8|[1.4.7...1.4.8](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.7...1.4.8)| 4 files changed, 11 insertions(+), 3 deletions(-) 866 | 1.4.7|[1.4.6...1.4.7](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.6...1.4.7)| 1 file changed, 1 insertion(+), 1 deletion(-) 867 | 1.4.6|[1.4.5...1.4.6](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.5...1.4.6)| 1 file changed, 1 insertion(+), 1 deletion(-) 868 | 1.4.5|[1.4.4...1.4.5](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.4...1.4.5)| 1 file changed, 1 insertion(+), 1 deletion(-) 869 | 1.4.4|[1.4.3...1.4.4](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.3...1.4.4)| 1 file changed, 1 insertion(+), 1 deletion(-) 870 | 1.4.3|[1.4.2...1.4.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.2...1.4.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 871 | 1.4.2|[1.4.1...1.4.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.1...1.4.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 872 | 1.4.1|[1.4.0...1.4.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.0...1.4.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 873 | 1.4.0|[1.4.0-rc.2...1.4.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.0-rc.2...1.4.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 874 | 1.4.0-rc.2|[1.4.0-rc.1...1.4.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.0-rc.1...1.4.0-rc.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 875 | 1.4.0-rc.1|[1.4.0-beta.2...1.4.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.0-beta.2...1.4.0-rc.1)| 6 files changed, 16 insertions(+), 14 deletions(-) 876 | 1.4.0-beta.2|[1.4.0-beta.1...1.4.0-beta.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.0-beta.1...1.4.0-beta.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 877 | 1.4.0-beta.1|[1.4.0-beta.0...1.4.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.4.0-beta.0...1.4.0-beta.1)| 4 files changed, 4 insertions(+), 13 deletions(-) 878 | 1.4.0-beta.0|[1.3.2...1.4.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.3.2...1.4.0-beta.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 879 | 1.3.2|[1.3.1...1.3.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.3.1...1.3.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 880 | 1.3.1|[1.3.0...1.3.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.3.0...1.3.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 881 | 1.3.0|[1.3.0-rc.5...1.3.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.3.0-rc.5...1.3.0)| 1 file changed, 1 insertion(+), 1 deletion(-) 882 | 1.3.0-rc.5|[1.3.0-rc.3...1.3.0-rc.5](https://github.com/cexbrayat/angular-cli-diff/compare/1.3.0-rc.3...1.3.0-rc.5)| 3 files changed, 3 insertions(+), 2 deletions(-) 883 | 1.3.0-rc.3|[1.3.0-rc.2...1.3.0-rc.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.3.0-rc.2...1.3.0-rc.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 884 | 1.3.0-rc.2|[1.3.0-rc.1...1.3.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.3.0-rc.1...1.3.0-rc.2)| 2 files changed, 2 insertions(+), 2 deletions(-) 885 | 1.3.0-rc.1|[1.3.0-rc.0...1.3.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.3.0-rc.0...1.3.0-rc.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 886 | 1.3.0-rc.0|[1.3.0-beta.1...1.3.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.3.0-beta.1...1.3.0-rc.0)| 4 files changed, 12 insertions(+), 9 deletions(-) 887 | 1.3.0-beta.1|[1.3.0-beta.0...1.3.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.3.0-beta.0...1.3.0-beta.1)| 9 files changed, 16 insertions(+), 9 deletions(-) 888 | 1.3.0-beta.0|[1.2.8...1.3.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.8...1.3.0-beta.0)| 12 files changed, 30 insertions(+), 41 deletions(-) 889 | 1.2.8|[1.2.7...1.2.8](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.7...1.2.8)| 1 file changed, 1 insertion(+), 1 deletion(-) 890 | 1.2.7|[1.2.6...1.2.7](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.6...1.2.7)| 3 files changed, 3 insertions(+), 2 deletions(-) 891 | 1.2.6|[1.2.5...1.2.6](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.5...1.2.6)| 1 file changed, 1 insertion(+), 1 deletion(-) 892 | 1.2.5|[1.2.4...1.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.4...1.2.5)| 2 files changed, 2 insertions(+), 2 deletions(-) 893 | 1.2.4|[1.2.3...1.2.4](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.3...1.2.4)| 1 file changed, 1 insertion(+), 1 deletion(-) 894 | 1.2.3|[1.2.2...1.2.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.2...1.2.3)| 1 file changed, 1 insertion(+), 1 deletion(-) 895 | 1.2.2|[1.2.1...1.2.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.1...1.2.2)| 2 files changed, 9 insertions(+), 6 deletions(-) 896 | 1.2.1|[1.2.0...1.2.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.0...1.2.1)| 9 files changed, 16 insertions(+), 9 deletions(-) 897 | 1.2.0|[1.2.0-rc.1...1.2.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.0-rc.1...1.2.0)| 3 files changed, 6 insertions(+), 4 deletions(-) 898 | 1.2.0-rc.1|[1.2.0-rc.0...1.2.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.0-rc.0...1.2.0-rc.1)| 1 file changed, 2 insertions(+), 2 deletions(-) 899 | 1.2.0-rc.0|[1.2.0-beta.1...1.2.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.0-beta.1...1.2.0-rc.0)| 2 files changed, 2 insertions(+), 2 deletions(-) 900 | 1.2.0-beta.1|[1.2.0-beta.0...1.2.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.2.0-beta.0...1.2.0-beta.1)| 3 files changed, 7 insertions(+), 10 deletions(-) 901 | 1.2.0-beta.0|[1.1.3...1.2.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.1.3...1.2.0-beta.0)| 3 files changed, 7 insertions(+), 5 deletions(-) 902 | 1.1.3|[1.1.2...1.1.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.1.2...1.1.3)| 1 file changed, 2 insertions(+), 2 deletions(-) 903 | 1.1.2|[1.1.1...1.1.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.1.1...1.1.2)| 2 files changed, 2 insertions(+), 2 deletions(-) 904 | 1.1.1|[1.1.0...1.1.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.1.0...1.1.1)| 2 files changed, 3 insertions(+), 5 deletions(-) 905 | 1.1.0|[1.1.0-rc.2...1.1.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.1.0-rc.2...1.1.0)| 2 files changed, 2 insertions(+), 1 deletion(-) 906 | 1.1.0-rc.2|[1.1.0-rc.1...1.1.0-rc.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.1.0-rc.1...1.1.0-rc.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 907 | 1.1.0-rc.1|[1.1.0-rc.0...1.1.0-rc.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.1.0-rc.0...1.1.0-rc.1)| 2 files changed, 15 insertions(+), 13 deletions(-) 908 | 1.1.0-rc.0|[1.1.0-beta.1...1.1.0-rc.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.1.0-beta.1...1.1.0-rc.0)| 3 files changed, 3 insertions(+), 6 deletions(-) 909 | 1.1.0-beta.1|[1.1.0-beta.0...1.1.0-beta.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.1.0-beta.0...1.1.0-beta.1)| 12 files changed, 66 insertions(+), 39 deletions(-) 910 | 1.1.0-beta.0|[1.0.6...1.1.0-beta.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.0.6...1.1.0-beta.0)| 8 files changed, 19 insertions(+), 34 deletions(-) 911 | 1.0.6|[1.0.5...1.0.6](https://github.com/cexbrayat/angular-cli-diff/compare/1.0.5...1.0.6)| 1 file changed, 1 insertion(+), 1 deletion(-) 912 | 1.0.5|[1.0.4...1.0.5](https://github.com/cexbrayat/angular-cli-diff/compare/1.0.4...1.0.5)| 1 file changed, 1 insertion(+), 1 deletion(-) 913 | 1.0.4|[1.0.3...1.0.4](https://github.com/cexbrayat/angular-cli-diff/compare/1.0.3...1.0.4)| 3 files changed, 3 insertions(+), 5 deletions(-) 914 | 1.0.3|[1.0.2...1.0.3](https://github.com/cexbrayat/angular-cli-diff/compare/1.0.2...1.0.3)| 5 files changed, 28 insertions(+), 10 deletions(-) 915 | 1.0.2|[1.0.1...1.0.2](https://github.com/cexbrayat/angular-cli-diff/compare/1.0.1...1.0.2)| 1 file changed, 1 insertion(+), 1 deletion(-) 916 | 1.0.1|[1.0.0...1.0.1](https://github.com/cexbrayat/angular-cli-diff/compare/1.0.0...1.0.1)| 1 file changed, 1 insertion(+), 1 deletion(-) 917 | 1.0.0|[1.0.0...1.0.0](https://github.com/cexbrayat/angular-cli-diff/compare/1.0.0...1.0.0)| 28 files changed, 645 insertions(+) 918 | 919 | ## Why this repository ? 920 | 921 | After an upgrade of Angular CLI on your project, you'll have to keep the configuration up-to-date, and it can be hard to keep track. 922 | 923 | This project lets you easily know what changed. For example, from 924 | [1.1.1 to the 1.2.5](https://github.com/cexbrayat/angular-cli-diff/compare/1.1.1...1.2.5). 925 | 926 | ## Angular Libraries 927 | 928 | If you are a library maintainer, you may want to check out https://github.com/cexbrayat/angular-cli-library-diff. It has the same goal as this repo, but also generates a library inside the generated project to see the differences in configuration. 929 | -------------------------------------------------------------------------------- /newVersion.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | versions=$(npm view @angular/cli versions --json) 6 | 7 | versions=${versions//\"/} 8 | versions=${versions//\[/} 9 | versions=${versions//\]/} 10 | versions=${versions//\,/} 11 | 12 | versions=(${versions}) 13 | 14 | blocklist=(1.0.0-beta.28.3 1.0.0-beta.29 1.0.0-beta.30 1.0.0-beta.31 1.0.0-beta.32 15 | 1.0.0-beta.32.2 1.0.0-beta.32.3 1.0.0-beta.33 1.0.0-beta.33.1 16 | 1.0.0-rc.0 1.0.0-rc.1 1.0.0-rc.2 1.0.0-rc.3 1.0.0-rc.4 17 | 1.3.0-rc.4 18 | 1.4.0-rc.0 19 | 1.5.0-beta.0 1.5.0-beta.1 1.5.0-beta.2 20 | 6.0.4 21 | 7.0.0-beta.0 7.0.0-beta.1 22 | 10.0.0-rc.1 23 | 14.1.0-rc.0 14.1.0-rc.1 14.1.0-rc.2 24 | 17.0.0-next.1 17.0.0-next.2) 25 | 26 | lastVersion="1.0.0" 27 | rebaseNeeded=false 28 | 29 | for version in "${versions[@]}" 30 | do 31 | 32 | if [[ " ${blocklist[@]} " =~ " ${version} " ]] 33 | then 34 | echo "Skipping blocklisted ${version}" 35 | continue 36 | fi 37 | 38 | if [ `git branch --list ${version}` ] || [ `git branch --list --remote origin/${version}` ] 39 | then 40 | echo "${version} already generated." 41 | git checkout ${version} 42 | if [ ${rebaseNeeded} = true ] 43 | then 44 | git rebase --onto ${lastVersion} HEAD~ ${version} -X theirs 45 | diffStat=`git --no-pager diff HEAD~ --shortstat` 46 | git push origin ${version} -f 47 | diffUrl="[${lastVersion}...${version}](https://github.com/cexbrayat/angular-cli-diff/compare/${lastVersion}...${version})" 48 | git checkout master 49 | # rewrite stats in README after rebase 50 | sed -i.bak -e "/^${version}|/ d" README.md && rm README.md.bak 51 | sed -i.bak -e 's/----|----|----/----|----|----\ 52 | NEWLINE/g' README.md && rm README.md.bak 53 | sed -i.bak -e "s@NEWLINE@${version}|${diffUrl}|${diffStat}@" README.md && rm README.md.bak 54 | git commit -a --amend --no-edit 55 | git checkout ${version} 56 | fi 57 | lastVersion=${version} 58 | continue 59 | fi 60 | 61 | echo "Generate ${version}" 62 | rebaseNeeded=true 63 | git checkout -b ${version} 64 | # delete app 65 | rm -rf ponyracer 66 | # generate app with new CLI version 67 | flags="--skip-install --no-interactive" 68 | # strict is only applicable for version >=10.0.0-next.3 69 | if [ `npx semver ${version} --include-prerelease --range ">=10.0.0-next.3"` ] 70 | then 71 | flags="${flags} --strict" 72 | fi 73 | npx @angular/cli@${version} new ponyracer ${flags} 74 | git add ponyracer 75 | git commit -am "chore: version ${version}" 76 | diffStat=`git --no-pager diff HEAD~ --shortstat` 77 | git push origin ${version} -f 78 | git checkout master 79 | diffUrl="[${lastVersion}...${version}](https://github.com/cexbrayat/angular-cli-diff/compare/${lastVersion}...${version})" 80 | # insert a row in the version table of the README 81 | sed -i.bak "/^${version}|/ d" README.md && rm README.md.bak 82 | sed -i.bak 's/----|----|----/----|----|----\ 83 | NEWLINE/g' README.md && rm README.md.bak 84 | sed -i.bak "s@NEWLINE@${version}|${diffUrl}|${diffStat}@" README.md && rm README.md.bak 85 | # commit 86 | git commit -a --amend --no-edit 87 | git checkout ${version} 88 | lastVersion=${version} 89 | 90 | done 91 | 92 | git checkout master 93 | git push origin master -f 94 | --------------------------------------------------------------------------------