Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 779 Bytes

File metadata and controls

24 lines (17 loc) · 779 Bytes

OpenShift Console 4.14 Release Notes

Changes to shared modules

  • Added react-router-dom-v5-compat shared module to allow plugins to migrate to React Router v6. Check the Official v5 to v6 Migration Guide (section "Migration Strategy" and beyond) for details.

PatternFly 4

Console provides the following PatternFly 4.x shared modules to plugins:

  • @patternfly/react-core
  • @patternfly/react-table
  • @patternfly/quickstarts

When using code from these packages, make sure to import directly from the package index:

// Do _not_ do this:
import { Button } from '@patternfly/react-core/dist/esm/components/Button';
// Instead, do this:
import { Button } from '@patternfly/react-core';