Skip to content

Commit

Permalink
Backmerging 1.18 and 1.19 to main (#2290)
Browse files Browse the repository at this point in the history
OKTA-748338 fix(odyssey-react-mui): bump release version number
chore(odyssey-react-mui): trigger release build
fix DataTable callback dep warnings (#2284)

OKTA-747975 fix(odyssey-react-mui): fix data table dep warnings
chore(odyssey-react-mui): backmerging 1.18
Merge remote-tracking branch 'origin/release' into bc_backmerging
chore(odyssey-react-mui): bumping version in backmerge
  • Loading branch information
bryancunningham-okta committed Jul 15, 2024
1 parent b53f0ac commit e01eda6
Show file tree
Hide file tree
Showing 9 changed files with 54 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.19.0](https://github.com/okta/odyssey/compare/v1.18.0...v1.19.0) (2024-07-15)

### Features

- adds new side navigation component for unified nav design ([#2269](https://github.com/okta/odyssey/issues/2269)) ([e54a470](https://github.com/okta/odyssey/commit/e54a470aaa71eec4fd85f19ac8519425f1d64e8f))

### Bug Fixes

- update glob to v9 ([#2275](https://github.com/okta/odyssey/issues/2275)) ([c4d73ea](https://github.com/okta/odyssey/commit/c4d73eaf2ae972ad4b9afda13428bd96f6b626e0))

## [1.18.0](https://github.com/okta/odyssey/compare/v1.15.9...v1.18.0) (2024-06-26)

### Features
Expand Down
4 changes: 4 additions & 0 deletions packages/browserslist-config-odyssey/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.19.0](https://github.com/okta/odyssey/compare/v1.18.0...v1.19.0) (2024-07-15)

**Note:** Version bump only for package @okta/browserslist-config-odyssey

## [1.18.0](https://github.com/okta/odyssey/compare/v1.15.9...v1.18.0) (2024-06-26)

### Bug Fixes
Expand Down
4 changes: 4 additions & 0 deletions packages/odyssey-babel-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.19.0](https://github.com/okta/odyssey/compare/v1.18.0...v1.19.0) (2024-07-15)

**Note:** Version bump only for package @okta/odyssey-babel-loader

## [1.18.0](https://github.com/okta/odyssey/compare/v1.15.9...v1.18.0) (2024-06-26)

### Bug Fixes
Expand Down
4 changes: 4 additions & 0 deletions packages/odyssey-babel-preset/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.19.0](https://github.com/okta/odyssey/compare/v1.18.0...v1.19.0) (2024-07-15)

**Note:** Version bump only for package @okta/odyssey-babel-preset

## [1.18.0](https://github.com/okta/odyssey/compare/v1.15.9...v1.18.0) (2024-06-26)

### Bug Fixes
Expand Down
4 changes: 4 additions & 0 deletions packages/odyssey-design-tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.19.0](https://github.com/okta/odyssey/compare/v1.18.0...v1.19.0) (2024-07-15)

**Note:** Version bump only for package @okta/odyssey-design-tokens

## [1.18.0](https://github.com/okta/odyssey/compare/v1.15.9...v1.18.0) (2024-06-26)

### Bug Fixes
Expand Down
6 changes: 6 additions & 0 deletions packages/odyssey-react-mui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.19.0](https://github.com/okta/odyssey/compare/v1.18.0...v1.19.0) (2024-07-15)

### Features

- adds new side navigation component for unified nav design ([#2269](https://github.com/okta/odyssey/issues/2269)) ([e54a470](https://github.com/okta/odyssey/commit/e54a470aaa71eec4fd85f19ac8519425f1d64e8f))

## [1.18.0](https://github.com/okta/odyssey/compare/v1.15.9...v1.18.0) (2024-06-26)

### Features
Expand Down
15 changes: 12 additions & 3 deletions packages/odyssey-react-mui/src/DataTable/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -601,10 +601,11 @@ const DataTable = ({
</Box>
);
}, [
tableInnerContainerWidth,
emptyPlaceholder,
noResultsPlaceholder,
isEmpty,
noResultsPlaceholder,
t,
tableInnerContainerWidth,
]);

const columnIds = useMemo(() => {
Expand Down Expand Up @@ -776,7 +777,15 @@ const DataTable = ({
setIsLoading(false);
}
})();
}, [pagination, columnSorting, search, filters, getData, errorMessageProp]);
}, [
columnSorting,
errorMessageProp,
filters,
getData,
pagination,
search,
t,
]);

useEffect(() => {
if (!initialFilters && filters) {
Expand Down
6 changes: 6 additions & 0 deletions packages/odyssey-storybook/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.19.0](https://github.com/okta/odyssey/compare/v1.18.0...v1.19.0) (2024-07-15)

### Features

- adds new side navigation component for unified nav design ([#2269](https://github.com/okta/odyssey/issues/2269)) ([e54a470](https://github.com/okta/odyssey/commit/e54a470aaa71eec4fd85f19ac8519425f1d64e8f))

## [1.18.0](https://github.com/okta/odyssey/compare/v1.15.9...v1.18.0) (2024-06-26)

### Features
Expand Down
4 changes: 4 additions & 0 deletions packages/odyssey-svgr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.19.0](https://github.com/okta/odyssey/compare/v1.18.0...v1.19.0) (2024-07-15)

**Note:** Version bump only for package @okta/odyssey-svgr

## [1.18.0](https://github.com/okta/odyssey/compare/v1.15.9...v1.18.0) (2024-06-26)

**Note:** Version bump only for package @okta/odyssey-svgr
Expand Down

0 comments on commit e01eda6

Please sign in to comment.