Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
initplatform committed Nov 18, 2020
1 parent 680a8a5 commit 3b01077
Show file tree
Hide file tree
Showing 7 changed files with 1,978 additions and 1,661 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Expand Up @@ -9,10 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.3.0] - 2020-11-18

- [Changed] Updated to Angular 11
- [Changed] Upgraded all dependencies

## [1.2.0] - 2020-09-18

- [Changed] New release process
- [Changed] Updated Dependencies
- [Changed] Upgraded all dependencies

## [1.1.1] - 2020-04-03

Expand Down
1 change: 0 additions & 1 deletion angular.json
Expand Up @@ -41,7 +41,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
Expand Down
3,551 changes: 1,932 additions & 1,619 deletions package-lock.json

Large diffs are not rendered by default.

72 changes: 36 additions & 36 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "sb-admin-angular",
"version": "1.2.0",
"version": "1.3.0",
"scripts": {
"build": "npm run build:pug && npm run ng -- build --prod --build-optimizer=true --statsJson=true && npm run build:version",
"build:debug": "npm run build:pug && npm run ng -- build --prod --source-map --build-optimizer=true --statsJson=true && npm run build:version",
Expand All @@ -23,50 +23,50 @@
},
"private": true,
"dependencies": {
"@angular/animations": "10.1.2",
"@angular/common": "10.1.2",
"@angular/compiler": "10.1.2",
"@angular/core": "10.1.2",
"@angular/forms": "10.1.2",
"@angular/platform-browser": "10.1.2",
"@angular/platform-browser-dynamic": "10.1.2",
"@angular/router": "10.1.2",
"@fortawesome/angular-fontawesome": "0.7.0",
"@fortawesome/fontawesome-svg-core": "1.2.30",
"@fortawesome/free-brands-svg-icons": "5.14.0",
"@fortawesome/free-regular-svg-icons": "5.14.0",
"@fortawesome/free-solid-svg-icons": "5.14.0",
"@ng-bootstrap/ng-bootstrap": "7.0.0",
"@prettier/plugin-pug": "1.5.1",
"chart.js": "2.9.3",
"@angular/animations": "11.0.1",
"@angular/common": "11.0.1",
"@angular/compiler": "11.0.1",
"@angular/core": "11.0.1",
"@angular/forms": "11.0.1",
"@angular/platform-browser": "11.0.1",
"@angular/platform-browser-dynamic": "11.0.1",
"@angular/router": "11.0.1",
"@fortawesome/angular-fontawesome": "0.8.0",
"@fortawesome/fontawesome-svg-core": "1.2.32",
"@fortawesome/free-brands-svg-icons": "5.15.1",
"@fortawesome/free-regular-svg-icons": "5.15.1",
"@fortawesome/free-solid-svg-icons": "5.15.1",
"@ng-bootstrap/ng-bootstrap": "8.0.0",
"@prettier/plugin-pug": "1.10.1",
"chart.js": "2.9.4",
"object-hash": "2.0.3",
"rxjs": "6.6.3",
"tslib": "2.0.1",
"uuid": "8.3.0",
"webpack-bundle-analyzer": "3.9.0",
"zone.js": "0.11.1"
"tslib": "2.0.3",
"uuid": "8.3.1",
"webpack-bundle-analyzer": "4.1.0",
"zone.js": "0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1001.2",
"@angular/cli": "10.1.2",
"@angular/compiler-cli": "10.1.2",
"@angular/language-service": "10.1.2",
"@angular-devkit/build-angular": "0.1100.2",
"@angular/cli": "11.0.2",
"@angular/compiler-cli": "11.0.1",
"@angular/language-service": "11.0.1",
"@inip/static-server": "1.0.1",
"@sbpro/ng": "1.4.1",
"@types/chart.js": "2.9.24",
"@types/jasmine": "3.5.14",
"@sbpro/ng": "1.4.2",
"@types/chart.js": "2.9.28",
"@types/jasmine": "3.6.1",
"@types/jasminewd2": "2.0.8",
"@types/node": "14.11.1",
"@types/object-hash": "1.3.3",
"@types/node": "14.14.8",
"@types/object-hash": "1.3.4",
"@types/uuid": "8.3.0",
"bootstrap": "4.5.2",
"chokidar": "3.4.2",
"codelyzer": "6.0.0",
"bootstrap": "4.5.3",
"chokidar": "3.4.3",
"codelyzer": "6.0.1",
"concurrently": "5.3.0",
"cross-env": "7.0.2",
"jasmine-core": "3.6.0",
"jasmine-spec-reporter": "5.0.2",
"karma": "5.2.2",
"jasmine-spec-reporter": "6.0.0",
"karma": "5.2.3",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
Expand All @@ -79,6 +79,6 @@
"ts-node": "9.0.0",
"tslint": "6.1.3",
"tslint-plugin-prettier": "2.3.0",
"typescript": "4.0.3"
"typescript": "4.0.5"
}
}
2 changes: 1 addition & 1 deletion src/app/app-routing.module.ts
Expand Up @@ -48,7 +48,7 @@ const routes: Routes = [
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
imports: [RouterModule.forRoot(routes, { relativeLinkResolution: 'legacy' })],
exports: [RouterModule],
})
export class AppRoutingModule {}
4 changes: 2 additions & 2 deletions src/app/app.component.spec.ts
@@ -1,10 +1,10 @@
import { async, TestBed } from '@angular/core/testing';
import { TestBed, waitForAsync } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';

import { AppComponent } from './app.component';

describe('AppComponent', () => {
beforeEach(async(() => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule],
declarations: [AppComponent],
Expand Down
2 changes: 1 addition & 1 deletion version
@@ -1 +1 @@
1.2.0
1.3.0

0 comments on commit 3b01077

Please sign in to comment.