Updated the Fuse version number and the changelog

This commit is contained in:
Sercan Yemen 2022-11-11 13:25:34 +03:00
parent b7b849ee60
commit 8fbef029c0
5 changed files with 32 additions and 5 deletions

4
package-lock.json generated
View File

@ -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",

View File

@ -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",

View File

@ -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;

View File

@ -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'
}
},

View File

@ -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',