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

Generate OpenAPI spec during compile #1279

Draft
wants to merge 46 commits into
base: master
Choose a base branch
from
Draft

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    6f96681 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Task to generate openapi spec

    adamw committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    cec53c5 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. generate spec

    Katarzyna Kozlowska committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    738fb84 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2024

  1. moved scripts and deps to ui, added typescript

    Katarzyna Kozlowska committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    6c6ba37 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2024

  1. uses 'concurrently' instead of '&&' in a 'start' script

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    006e3d2 View commit details
    Browse the repository at this point in the history
  2. uses chokidar-cli

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    4593ad0 View commit details
    Browse the repository at this point in the history
  3. sets up scripts for types generation and downgrades axios due to a co…

    …mpatibility issue with CRA
    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    6b1d759 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8df0966 View commit details
    Browse the repository at this point in the history
  5. build script: generate openapi-types before building an app

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    beed970 View commit details
    Browse the repository at this point in the history
  6. removes the "packageManager" field from package.json

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    62530a8 View commit details
    Browse the repository at this point in the history
  7. fixes tests for Register component

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    025a666 View commit details
    Browse the repository at this point in the history
  8. removes unused .gitignore path

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    f488c11 View commit details
    Browse the repository at this point in the history
  9. removes 'registerUser' method from UserService

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    aea0d00 View commit details
    Browse the repository at this point in the history
  10. migrates "login" method & related use

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    5ca5c77 View commit details
    Browse the repository at this point in the history
  11. adds "Generate OpenAPI Spec" step to CI workflow (verify)

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    92fd984 View commit details
    Browse the repository at this point in the history
  12. moves redefined login and register methods to UserService and removes…

    … UserService.test.ts
    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    16ac4df View commit details
    Browse the repository at this point in the history
  13. migrates logout method

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    5ec529f View commit details
    Browse the repository at this point in the history
  14. migrates getCurrentUser

    Marcin Baraniecki committed Aug 25, 2024
    Configuration menu
    Copy the full SHA
    b235c5e View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2024

  1. migrates changeProfileDetails

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    25f5278 View commit details
    Browse the repository at this point in the history
  2. migrates changePassword

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    8bbcfc7 View commit details
    Browse the repository at this point in the history
  3. avoids using real impl of getCurrentUser in test

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    8597773 View commit details
    Browse the repository at this point in the history
  4. migrates getVersion

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    ef8084e View commit details
    Browse the repository at this point in the history
  5. migrates claimPasswordReset

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    547a4cc View commit details
    Browse the repository at this point in the history
  6. migrates resetPassword

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    55c7639 View commit details
    Browse the repository at this point in the history
  7. removes unused file

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    063a12f View commit details
    Browse the repository at this point in the history
  8. removes needless ui/public/openapi.yaml file

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    6048f90 View commit details
    Browse the repository at this point in the history
  9. fixes "watch:openapi" command

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    5ac7806 View commit details
    Browse the repository at this point in the history
  10. better start script

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    226457a View commit details
    Browse the repository at this point in the history
  11. uses proper apiSpecPath, pointing to the backend endpoint

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    bd0fed8 View commit details
    Browse the repository at this point in the history
  12. removes unused js-yaml dependency

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    6391886 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #1289 from softwaremill/ui-generate-spec-for-api

    UI generate spec for api
    katekozlowska committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    51e0a5c View commit details
    Browse the repository at this point in the history
  14. augments README for the ui

    Marcin Baraniecki committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    cd1742b View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Avoid password4j warnings

    adamw committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    1951387 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. frontend tooling description

    Katarzyna Kozlowska committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    88c8153 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. Configuration menu
    Copy the full SHA
    120dc8f View commit details
    Browse the repository at this point in the history
  2. Cleanup

    adamw committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    bc43505 View commit details
    Browse the repository at this point in the history
  3. Dependencies

    adamw committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    5a59070 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. Cleanup

    adamw committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    0cdb967 View commit details
    Browse the repository at this point in the history
  2. Update macwire

    adamw committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    c9b7e87 View commit details
    Browse the repository at this point in the history
  3. Remove unused

    adamw committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    a4c10b3 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. Configuration menu
    Copy the full SHA
    f5c481c View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. Cleanup

    adamw committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    4a345d5 View commit details
    Browse the repository at this point in the history
  2. Update CI

    adamw committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    25ad6dc View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. Configuration menu
    Copy the full SHA
    6e5d6a7 View commit details
    Browse the repository at this point in the history
  2. Grafana LGTM in docker compose

    adamw committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    48706d6 View commit details
    Browse the repository at this point in the history
  3. JMX metrics

    adamw committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    cea46e7 View commit details
    Browse the repository at this point in the history