Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added release notes of r29 #705

Merged
merged 8 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/__configuration__/roadmap/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
import { Quarter, Release } from '../../__types__';

export const CURRENT_RELEASE: Release = 'R29';
export const CURRENT_RELEASE: Release = 'R30';

export const AVAILABLE_RELEASES: Array<{
name: Release;
year: number;
quarter: Quarter;
}> = [
{
name: 'R30',
year: 2023,
quarter: 'Q4',
},
{
name: 'R29',
year: 2023,
Expand Down
3 changes: 2 additions & 1 deletion src/__types__/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ export type Release =
| 'R26'
| 'R27'
| 'R28'
| 'R29';
| 'R29'
| 'R30';

export type RoadmapItem = {
name: string;
Expand Down
21 changes: 21 additions & 0 deletions src/docs/release-notes/R28/FullNotes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,24 @@ import React from 'react';
## Icons

- Added [13 new icons](https://github.com/etn-ccis/blui-icons/pull/282).

## Package Summary

### Angular

- @brightlayer-ui/angular-auth-workflow v5.0.0 ([Changelog](https://github.com/etn-ccis/blui-angular-workflows/blob/master/login-workflow/CHANGELOG.md))
- @brightlayer-ui/angular-components v9.0.0 ([Changelog](https://github.com/etn-ccis/blui-angular-component-library/blob/master/CHANGELOG.md))

### Icons

- @brightlayer-ui/icons v2.2.0 ([Changelog](https://github.com/etn-ccis/blui-icons/blob/master/packages/icon-font/CHANGELOG.md))
- @brightlayer-ui/react-native-vector-icons v2.2.0 ([Changelog](https://github.com/etn-ccis/blui-icons/blob/master/packages/rn-vector/CHANGELOG.md))
- @brightlayer-ui/icons-mui v3.5.0 ([Changelog](https://github.com/etn-ccis/blui-icons/blob/master/packages/mui/CHANGELOG.md))
- @brightlayer-ui/icons-svg v1.13.1 ([Changelog](https://github.com/etn-ccis/blui-icons/blob/master/packages/svg/CHANGELOG.md))

### Templates

- @brightlayer-ui/cli v4.0.0 ([Changelog](https://github.com/etn-ccis/blui-cli/blob/master/CHANGELOG.md))
- @brightlayer-ui/angular-template-blank v5.0.0 ([Changelog](https://github.com/etn-ccis/blui-angular-cli-templates/blob/master/src/app/blank/CHANGELOG.md))
- @brightlayer-ui/angular-template-routing v5.0.0 ([Changelog](https://github.com/etn-ccis/blui-angular-cli-templates/blob/master/src/app/routing/CHANGELOG.md))
- @brightlayer-ui/angular-template-authentication v6.0.0 ([Changelog](https://github.com/etn-ccis/blui-angular-cli-templates/blob/master/src/app/auth-workflow/CHANGELOG.md))
28 changes: 28 additions & 0 deletions src/docs/release-notes/R29/FullNotes.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import React from 'react';

surajeaton marked this conversation as resolved.
Show resolved Hide resolved
## React

- Updated react auth workflow package to componentize, exported screens individually to allow for better custom screen ordering and injection.
- Supported React Router v6, custom router, and the latest versions of i18next and react-i18next packages.

### Figma Component Sticker Sheet

- Added a new [figma component sticker sheet](https://www.figma.com/community/file/1293308181354933598/brightlayer-ui-tokens-components-in-material-design-3) following Material Design 3.

## Themes

- Fixed 3 issues in Angular Themes package.

## Miscellaneous

- Explored the possibility of establishing an innersource portal for viewing all ongoing projects at Eaton. Based on the results of the MVP, we decided to scale the approach down and start smaller with a dedicated community package space.

## Package Summary

### React

- @brightlayer-ui/react-auth-workflow v4.0.0 ([Changelog](https://github.com/etn-ccis/blui-react-workflows/blob/master/login-workflow/CHANGELOG.md))

### Angular

- @brightlayer-ui/angular-themes v9.0.1 ([Changelog](https://github.com/etn-ccis/blui-angular-themes/blob/master/CHANGELOG.md))
1 change: 1 addition & 0 deletions src/docs/release-notes/R29/Summary.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated [React Auth Workflow](https://www.npmjs.com/package/@brightlayer-ui/react-auth-workflow) package to componentize, exported screens individually to allow for better custom screen ordering and injection, support react Router v6 and router customizability and support for the latest versions of i18next and react-i18next packages. Added new [Figma Component Sticker Sheet](https://www.figma.com/community/file/1293308181354933598/brightlayer-ui-tokens-components-in-material-design-3) following Material Design 3. Fixed bugs in the [Angular Themes](https://www.npmjs.com/package/@brightlayer-ui/angular-themes) package. Researched on possibility of establishing an innersource portal.
9 changes: 9 additions & 0 deletions src/docs/release-notes/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';

// Full Release Notes
import R29 from './R29/FullNotes.mdx';
import R28 from './R28/FullNotes.mdx';
import R27 from './R27/FullNotes.mdx';
import R26 from './R26/FullNotes.mdx';
Expand All @@ -25,6 +26,7 @@ import R8 from './R8/FullNotes.mdx';
import R7 from './R7/FullNotes.mdx';

// Summaries (for Landing Page)
import R29Summary from './R29/Summary.mdx';
import R28Summary from './R28/Summary.mdx';
import R27Summary from './R27/Summary.mdx';
import R26Summary from './R26/Summary.mdx';
Expand Down Expand Up @@ -56,6 +58,13 @@ export type ReleaseInfo = {
summary: JSX.Element;
};
const Releases: ReleaseInfo[] = [
{
title: 'R29',
date: 'October 2023',
version: '3.2.3',
details: <R29 />,
summary: <R29Summary />,
},
{
title: 'R28',
date: 'July 2023',
Expand Down
Loading