Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: RedHatInsights/frontend-components
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 568982f19647b6ec58df45cdf130f80643166c70
Choose a base ref
...
head repository: RedHatInsights/frontend-components
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1043bec04ca3e18c9d4495e7ae9f937b13bed614
Choose a head ref
  • 20 commits
  • 40 files changed
  • 5 contributors

Commits on Nov 14, 2022

  1. Copy the full SHA
    5017947 View commit details
  2. Copy the full SHA
    e8b85e2 View commit details

Commits on Nov 16, 2022

  1. Copy the full SHA
    5d6eff9 View commit details
  2. chore: address feedback

    apinkert committed Nov 16, 2022
    Copy the full SHA
    1e17a0e View commit details

Commits on Nov 18, 2022

  1. Merge pull request #1664 from RedHatInsights/update-crc

    Update create-crc-app to current frontend-starter-app
    Hyperkid123 authored Nov 18, 2022
    Copy the full SHA
    3006cc4 View commit details
  2. Copy the full SHA
    2d06f0e View commit details
  3. Copy the full SHA
    52d469e View commit details
  4. Merge pull request #1668 from Hyperkid123/getbasename-type

    Ensure getBasename has a return type.
    fhlavac authored Nov 18, 2022
    Copy the full SHA
    3c0e601 View commit details
  5. Copy the full SHA
    0d182ac View commit details

Commits on Nov 20, 2022

  1. Copy the full SHA
    cc6b13c View commit details
  2. Copy the full SHA
    15fe8a4 View commit details

Commits on Nov 23, 2022

  1. chore: Make utils compatible with cypres 11.x

    This extends the range of cypress peer dependency versions and includes
    the major version 11.
    gkarat committed Nov 23, 2022
    Copy the full SHA
    5bab3fe View commit details

Commits on Nov 24, 2022

  1. Merge pull request #1670 from gkarat/extend-cypress-peer-dep

    chore: Make utils compatible with cypres 11.x
    Hyperkid123 authored Nov 24, 2022
    Copy the full SHA
    b0e02ac View commit details
  2. Copy the full SHA
    fdccc18 View commit details

Commits on Nov 28, 2022

  1. Copy the full SHA
    492d16e View commit details
  2. Copy the full SHA
    70656a0 View commit details
  3. Merge pull request #1673 from Hyperkid123/fix-clone-repo

    Fix conidtion value when setting proxy env.
    Hyperkid123 authored Nov 28, 2022
    Copy the full SHA
    a94df6e View commit details
  4. Fix invalid MDX doc

    Hyperkid123 committed Nov 28, 2022
    Copy the full SHA
    13aa36a View commit details
  5. Copy the full SHA
    71b6484 View commit details

Commits on Nov 29, 2022

  1. Merge pull request #1672 from Hyperkid123/router-v6-docs

    Update router migration guide.
    fhlavac authored Nov 29, 2022
    Copy the full SHA
    1043bec View commit details
Showing with 4,667 additions and 14,566 deletions.
  1. +4,236 −14,410 package-lock.json
  2. +1 −1 packages/config/package.json
  3. +1 −1 packages/config/src/scripts/dev.webpack.config.js
  4. +6 −1 packages/create-crc-app/package.json
  5. +28 −0 packages/create-crc-app/templates/.eslintrc.js
  6. +0 −3 packages/create-crc-app/templates/.eslintrc.yml
  7. +3 −0 packages/create-crc-app/templates/.gitignore
  8. +3 −0 packages/create-crc-app/templates/.stylelintrc.json
  9. +1 −0 packages/create-crc-app/templates/.travis.yml
  10. +21 −0 packages/create-crc-app/templates/ARCHITECTURE.md
  11. +3 −18 packages/create-crc-app/templates/README.md
  12. +3 −0 packages/create-crc-app/templates/babel.config.js
  13. +2 −0 packages/create-crc-app/templates/config/empty.js
  14. +13 −12 packages/create-crc-app/templates/fec.config.js
  15. +70 −46 packages/create-crc-app/templates/package.json
  16. +0 −22 packages/create-crc-app/templates/src/App.js
  17. +41 −0 packages/create-crc-app/templates/src/App.tsx
  18. +0 −18 packages/create-crc-app/templates/src/AppEntry.js
  19. +17 −0 packages/create-crc-app/templates/src/AppEntry.tsx
  20. +0 −12 packages/create-crc-app/templates/src/Components/SampleComponent/sample-component.js
  21. +7 −0 packages/create-crc-app/templates/src/Components/SampleComponent/sample-component.scss
  22. ...p/templates/src/Components/SampleComponent/{sample-component.test.js → sample-component.test.tsx}
  23. +16 −0 packages/create-crc-app/templates/src/Components/SampleComponent/sample-component.tsx
  24. +11 −1 packages/create-crc-app/templates/src/{Routes.js → Routes.tsx}
  25. 0 ...ate-crc-app/templates/src/Routes/NoPermissionsPage/{NoPermissionsPage.js → NoPermissionsPage.tsx}
  26. 0 packages/create-crc-app/templates/src/Routes/OopsPage/{OopsPage.js → OopsPage.tsx}
  27. +33 −2 packages/create-crc-app/templates/src/Routes/SamplePage/{SamplePage.js → SamplePage.tsx}
  28. +1 −1 packages/create-crc-app/templates/src/{bootstrap.js → bootstrap.tsx}
  29. 0 packages/create-crc-app/templates/src/{entry.js → entry.ts}
  30. +12 −0 packages/create-crc-app/templates/src/store/index.ts
  31. +6 −0 packages/create-crc-app/templates/src/types/index.d.ts
  32. +30 −0 packages/create-crc-app/templates/tsconfig.json
  33. +3 −0 packages/docs/.babelrc
  34. +8 −0 packages/docs/components/navigation/components-navigation.json
  35. +67 −1 packages/docs/pages/blog/router-v6.mdx
  36. +17 −12 packages/types/index.d.ts
  37. +1 −1 packages/types/package.json
  38. +2 −2 packages/utils/package.json
  39. +2 −0 packages/utils/src/CypressUtils/CustomCommands.js
  40. +1 −1 packages/utils/src/helpers/helpers.ts
Loading