diff --git a/package-lock.json b/package-lock.json index a2cc6e51..3a93c049 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "fuse-angular", - "version": "16.0.0", + "version": "17.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "fuse-angular", - "version": "16.0.0", + "version": "17.0.0", "license": "https://themeforest.net/licenses/standard", "dependencies": { "@angular/animations": "15.0.0-rc.3", diff --git a/package.json b/package.json index ad1ae373..e6765b9f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fuse-angular", - "version": "16.0.0", + "version": "17.0.0", "description": "Fuse - Angular Admin Template and Starter Project", "author": "https://themeforest.net/user/srcn", "license": "https://themeforest.net/licenses/standard", diff --git a/src/@fuse/version/fuse-version.ts b/src/@fuse/version/fuse-version.ts index cefd7b57..e44b12a2 100644 --- a/src/@fuse/version/fuse-version.ts +++ b/src/@fuse/version/fuse-version.ts @@ -1,3 +1,3 @@ import { Version } from '@fuse/version/version'; -export const FUSE_VERSION = new Version('16.0.0').full; +export const FUSE_VERSION = new Version('17.0.0').full; diff --git a/src/app/mock-api/common/navigation/data.ts b/src/app/mock-api/common/navigation/data.ts index 80b5ef28..0124e416 100644 --- a/src/app/mock-api/common/navigation/data.ts +++ b/src/app/mock-api/common/navigation/data.ts @@ -967,7 +967,7 @@ export const defaultNavigation: FuseNavigationItem[] = [ icon : 'heroicons_outline:speakerphone', link : '/docs/changelog', badge: { - title : '16.0.0', + title : '17.0.0', classes: 'px-2 bg-yellow-300 text-black rounded-full' } }, diff --git a/src/app/modules/admin/docs/changelog/changelog.ts b/src/app/modules/admin/docs/changelog/changelog.ts index cb697b8e..9c760155 100644 --- a/src/app/modules/admin/docs/changelog/changelog.ts +++ b/src/app/modules/admin/docs/changelog/changelog.ts @@ -10,6 +10,33 @@ export class ChangelogComponent { changelog: any[] = [ + // v17.0.0 + { + version : 'v17.0.0', + releaseDate: 'TBA', + changes : [ + { + type: 'Breaking', + list: [ + '(Dependencies) From this version up, Fuse will not be compatible with Legacy Angular Material components', + '(Linting) Removed linter setup and eslint packages since most of the linting happens on Editors and IDEs. This is also partly because of slow development speed of angular-eslint packages.', + '(.fuse-mat-textarea) Removed in favor of CSS :has selector, now textareas within "mat-form-field" components are detected automatically', + '(.fuse-mat-no-subscript) Removed in favor of \'subscriptSizing="dynamic"\' property of "mat-form-field"', + ] + }, + { + type: 'Changed', + list: [ + '(Dependencies) Updated Angular & Angular Material to v15.0.0', + '(Dependencies) Updated various other packages', + '(General) Matched the files and folders with a newly created Angular v15 project to make things easier for the newcomers', + '(Angular Material) Re-wrote the override styles to make sure everything look the same as before (compatibility for MDC components)', + '(Theming) Re-wrote the theming system to make sure to keep everything working as before without any breaking changes' + ] + } + ] + }, + // v16.0.0 { version : 'v16.0.0',