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

fix tests YAML syntax #1790

Merged
merged 132 commits into from
Nov 19, 2024
Merged

fix tests YAML syntax #1790

merged 132 commits into from
Nov 19, 2024

Commits on Oct 20, 2024

  1. Merge pull request #1 from odigos-io/main

    merge main
    BenElferink authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    c25c631 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2024

  1. Configuration menu
    Copy the full SHA
    12046ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6037f4c View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

  1. Configuration menu
    Copy the full SHA
    62934de View commit details
    Browse the repository at this point in the history
  2. [GEN-1540] Add update action mutation (odigos-io#1607)

    This pull request includes several changes to improve the handling of
    action types in the `CreateAction` and `UpdateAction` resolvers, as well
    as the addition of a new update function for `AddClusterInfo` actions.
    The most important changes involve refactoring action type strings into
    constants and implementing the `UpdateAddClusterInfo` function.
    
    ### Refactoring action types:
    
    *
    [`frontend/graph/schema.resolvers.go`](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70L560-R560):
    Replaced hardcoded action type strings with constants from
    `actionservices` for better maintainability.
    [[1]](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70L560-R560)
    [[2]](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70L569-R569)
    
    ### New update functionality:
    
    *
    [`frontend/graph/schema.resolvers.go`](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70L582-R599):
    Implemented the `UpdateAction` resolver to handle updating
    `AddClusterInfo` actions.
    *
    [`frontend/services/actions/addclusterinfo.go`](diffhunk://#diff-c2da2861415e61f772e3b44d22810aa34b4eba6070f744709c4b1b6b919a3f09L70-R137):
    Added the `UpdateAddClusterInfo` function to update existing
    `AddClusterInfo` actions in Kubernetes.
    
    ### Constants definition:
    
    *
    [`frontend/services/actions/constants.go`](diffhunk://#diff-377602090c56364ea3a4d6cdadda1ad9b1c6ba9e122f882e5a1f640b1e62acf8R1-R7):
    Added constants for action types `ActionTypeAddClusterInfo` and
    `ActionTypeDeleteAttribute`.
    alonkeyval authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    d456363 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    02682f9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    522e782 View commit details
    Browse the repository at this point in the history
  5. [GEN-1541] Add delete action mutation (odigos-io#1609)

    This pull request introduces changes to the `DeleteAction` functionality
    in the `frontend/graph` package, adding support for an `actionType`
    parameter. This enhancement allows for more specific handling of
    different action types during deletion.
    
    Key changes include:
    
    ### GraphQL Schema and Resolvers
    
    *
    [`frontend/graph/schema.graphqls`](diffhunk://#diff-bc07b91dedd1782d9ddbbb6374ad97c7604f9a267de5174645723d863c732f80L314-R314):
    Updated the `deleteAction` mutation to include an `actionType`
    parameter.
    *
    [`frontend/graph/schema.resolvers.go`](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70L603-R620):
    Modified the `DeleteAction` resolver to handle different action types
    based on the `actionType` parameter.
    
    ### Generated Code
    
    *
    [`frontend/graph/generated.go`](diffhunk://#diff-4bacf1f13939a5c243f3f83d21f4560b331d13667d81ea5945ed1f57ddb205f2L200-R200):
    Updated the `DeleteAction` method signatures and complexity calculations
    to include the `actionType` parameter.
    [[1]](diffhunk://#diff-4bacf1f13939a5c243f3f83d21f4560b331d13667d81ea5945ed1f57ddb205f2L200-R200)
    [[2]](diffhunk://#diff-4bacf1f13939a5c243f3f83d21f4560b331d13667d81ea5945ed1f57ddb205f2L266-R266)
    [[3]](diffhunk://#diff-4bacf1f13939a5c243f3f83d21f4560b331d13667d81ea5945ed1f57ddb205f2L911-R911)
    [[4]](diffhunk://#diff-4bacf1f13939a5c243f3f83d21f4560b331d13667d81ea5945ed1f57ddb205f2R1342-R1350)
    [[5]](diffhunk://#diff-4bacf1f13939a5c243f3f83d21f4560b331d13667d81ea5945ed1f57ddb205f2L5793-R5802)
    
    ### Action Services
    
    *
    [`frontend/services/actions/addclusterinfo.go`](diffhunk://#diff-c2da2861415e61f772e3b44d22810aa34b4eba6070f744709c4b1b6b919a3f09R148-R162):
    Added the `DeleteAddClusterInfo` function to handle the deletion of
    `AddClusterInfo` actions.
    *
    [`frontend/services/actions/addclusterinfo.go`](diffhunk://#diff-c2da2861415e61f772e3b44d22810aa34b4eba6070f744709c4b1b6b919a3f09R13):
    Imported `apierrors` for error handling in the new deletion function.
    alonkeyval authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    f435deb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9dbdc21 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a55f35b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    619bb6d View commit details
    Browse the repository at this point in the history
  9. fix: semicolon

    BenElferink committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    389fc46 View commit details
    Browse the repository at this point in the history
  10. fix: docs link

    BenElferink committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    2487549 View commit details
    Browse the repository at this point in the history
  11. fix: frament & imports

    BenElferink committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    9e5224b View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e4a8350 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a908130 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    38e862f View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    31f1db3 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    bc3bad3 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    f1ac07b View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    254427a View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    c769731 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    89a6594 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    9d260f4 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2024

  1. Configuration menu
    Copy the full SHA
    19eb1fe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    446c37a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4 from odigos-io/new-ui

    [GEN-1515]: fix stringify for graphql (odigos-io#1615)
    BenElferink authored Oct 27, 2024
    Configuration menu
    Copy the full SHA
    f97a5a1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    944480f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2637c1e View commit details
    Browse the repository at this point in the history
  6. [GEN-1557] Add prod sampler new api (odigos-io#1631)

    This pull request introduces a new `ProbabilisticSamplerAction` to the
    codebase, along with the necessary updates to support its creation,
    update, and deletion. The key changes include adding the new action
    type, updating the GraphQL schema, and implementing the corresponding
    service functions.
    
    ### Addition of `ProbabilisticSamplerAction`:
    
    *
    [`frontend/graph/model/models_gen.go`](diffhunk://#diff-642ccd7ed71fdfa394bd7f7fd99c9c33e20ff18c876a91cb989d379a44390469R311-R337):
    Added the `ProbabilisticSamplerAction` struct and its methods to the
    model.
    *
    [`frontend/graph/schema.graphqls`](diffhunk://#diff-bc07b91dedd1782d9ddbbb6374ad97c7604f9a267de5174645723d863c732f80R309-R318):
    Updated the GraphQL schema to include the `ProbabilisticSamplerAction`
    type.
    
    ### Resolver Updates:
    
    *
    [`frontend/graph/schema.resolvers.go`](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70L568-R571):
    Updated the `CreateAction`, `UpdateAction`, and `DeleteAction` resolvers
    to handle the new `ProbabilisticSamplerAction` type.
    [[1]](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70L568-R571)
    [[2]](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70L586-R591)
    [[3]](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70L617-R630)
    
    ### Constants Update:
    
    *
    [`frontend/services/actions/constants.go`](diffhunk://#diff-377602090c56364ea3a4d6cdadda1ad9b1c6ba9e122f882e5a1f640b1e62acf8L8-R9):
    Added `ActionTypeProbabilisticSampler` and corrected the naming of
    `ActionTypeLatencySampler`.
    
    ### Service Implementation:
    
    *
    [`frontend/services/actions/probabilisticsampler.go`](diffhunk://#diff-2f6dc14f04b67e0a11a5b999216a0e08f575927294c5033187b84f1179fb5624R1-R139):
    Implemented the service functions `CreateProbabilisticSampler`,
    `UpdateProbabilisticSampler`, and `DeleteProbabilisticSampler` to manage
    `ProbabilisticSamplerAction` in Kubernetes.
    alonkeyval authored Oct 27, 2024
    Configuration menu
    Copy the full SHA
    4cedea9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    40f2215 View commit details
    Browse the repository at this point in the history
  8. [GEN-1517]: actions add via gql (odigos-io#1635)

    Co-authored-by: Alon Braymok <138359965+alonkeyval@users.noreply.github.com>
    BenElferink and alonkeyval authored Oct 27, 2024
    Configuration menu
    Copy the full SHA
    2d4b1bb View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    afa1268 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2024

  1. Configuration menu
    Copy the full SHA
    eff6d90 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    536f32f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1ea39de View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fa352be View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f3c1a26 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3bb2338 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a4f03d8 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

  1. Configuration menu
    Copy the full SHA
    2a83b84 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b3fa682 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9ac0d13 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f0a397f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    33cb867 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2c13a75 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d42c32b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3ab5c0c View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. Configuration menu
    Copy the full SHA
    c15a6ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    977c57b View commit details
    Browse the repository at this point in the history
  3. [GEN-1592] Add instrumentation rules to gql (odigos-io#1659)

    This pull request introduces several new types and fields to the GraphQL
    schema and updates the corresponding resolvers and models to support
    instrumentation rules and payload collections.
    
    ### GraphQL Schema Enhancements:
    * Added new types and inputs for `PodWorkload`, `OtelSdks`,
    `InstrumentationRule`, `InstrumentationLibraryGlobalId`, and
    `PayloadCollection` in `frontend/graph/schema.graphqls`.
    [[1]](diffhunk://#diff-bc07b91dedd1782d9ddbbb6374ad97c7604f9a267de5174645723d863c732f80R107-R209)
    [[2]](diffhunk://#diff-bc07b91dedd1782d9ddbbb6374ad97c7604f9a267de5174645723d863c732f80R222)
    * Added new mutation fields for creating, updating, and deleting
    instrumentation rules in `frontend/graph/schema.graphqls`.
    
    ### Model Updates:
    * Introduced new types and inputs for `DbQueryPayloadCollection`,
    `HTTPPayloadCollection`, `MessagingPayloadCollection`,
    `InstrumentationLibraryGlobalID`, `InstrumentationRule`, and
    `PayloadCollection` in `frontend/graph/model/models_gen.go`.
    [[1]](diffhunk://#diff-642ccd7ed71fdfa394bd7f7fd99c9c33e20ff18c876a91cb989d379a44390469R70)
    [[2]](diffhunk://#diff-642ccd7ed71fdfa394bd7f7fd99c9c33e20ff18c876a91cb989d379a44390469R81-R90)
    [[3]](diffhunk://#diff-642ccd7ed71fdfa394bd7f7fd99c9c33e20ff18c876a91cb989d379a44390469R191-R202)
    [[4]](diffhunk://#diff-642ccd7ed71fdfa394bd7f7fd99c9c33e20ff18c876a91cb989d379a44390469R214-R249)
    [[5]](diffhunk://#diff-642ccd7ed71fdfa394bd7f7fd99c9c33e20ff18c876a91cb989d379a44390469R320-R358)
    [[6]](diffhunk://#diff-642ccd7ed71fdfa394bd7f7fd99c9c33e20ff18c876a91cb989d379a44390469R397-R408)
    
    ### Resolver Implementations:
    * Added resolver methods for `InstrumentationRules` in `ComputePlatform`
    and CRUD operations for `InstrumentationRule` in `Mutation` in
    `frontend/graph/schema.resolvers.go`.
    [[1]](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70R271-R275)
    [[2]](diffhunk://#diff-8e6e95029056db2c0301fc338e0ca5a04356ce5d45ee9514bbd167f2d85bae70R653-R672)
    
    ### Configuration and Dependency Updates:
    * Updated `frontend/Makefile` to pin the `gqlgen` version to `v0.17.49`.
    * Added `instrumentationRules` to `frontend/gqlgen.yml` for code
    generation.
    alonkeyval authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    fa609c3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    78eda6e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6a91aba View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d95b6fe View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. Configuration menu
    Copy the full SHA
    fa5c457 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cde9bdd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    93bbe30 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7ca44f7 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2024

  1. Configuration menu
    Copy the full SHA
    c270e78 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9358337 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    29d2e0d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    08eacfe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    240730f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5647431 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9748362 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8d22beb View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a4a5d34 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d933798 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    e53746d View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. Configuration menu
    Copy the full SHA
    2c9c79b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0dab5bd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6fa1955 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. Configuration menu
    Copy the full SHA
    702e71a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a6b6ec2 View commit details
    Browse the repository at this point in the history
  3. [GEN-1646] Add destination condition and type (odigos-io#1692)

    This pull request includes several updates to the
    `frontend/graph/schema.resolvers.go` file, focusing on adding
    functionality and improving existing resolver methods.
    
    ### Functional Improvements:
    
    * Added the `time` package to handle time formatting and conversions.
    * Implemented the `Type` resolver method for the `Destination` model to
    return the type as a string instead of panicking with an error.
    * Implemented the `Conditions` resolver method for the `Destination`
    model, converting `LastTransitionTime` to a string pointer and
    populating the conditions list with the converted data.
    alonkeyval authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    577ef58 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    746f560 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0c39a29 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5c55719 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2024

  1. Configuration menu
    Copy the full SHA
    a816fda View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c790156 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d9292ff View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    834e5ed View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. Configuration menu
    Copy the full SHA
    e15ea9a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8f1cd3e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9f25eb4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f4435c0 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2024

  1. Configuration menu
    Copy the full SHA
    f596073 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b3b5007 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1cd0a4b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0bbd34b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    eec5074 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d9e8582 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c94d982 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f32923b View commit details
    Browse the repository at this point in the history
  9. [GEN-1691] load styled on server (odigos-io#1725)

    This pull request includes several changes to the `frontend/webapp`
    directory, focusing on refactoring the theme provider, adding a new
    header component, and updating the layout file to use the new theme
    provider. The most important changes are summarized below:
    
    ### Refactoring and Theming:
    
    * Replaced the `ThemeProvider` with `ThemeProviderWrapper` in
    `frontend/webapp/app/layout.tsx` to encapsulate the theme and
    styled-components registry.
    [[1]](diffhunk://#diff-788a38ec94bfca9467b13cb6eb93cdeccd4237facfb5fff310e05b3af67413efL5-R6)
    [[2]](diffhunk://#diff-788a38ec94bfca9467b13cb6eb93cdeccd4237facfb5fff310e05b3af67413efL17-R26)
    * Removed the old `palette.ts` file and moved theme-related code to
    `theme-provider/index.tsx`.
    [[1]](diffhunk://#diff-80a3cfb572b6f3e0b18eb5880735fe84c8cdbc222e7af63c3a696c732221aeeaL1-L50)
    [[2]](diffhunk://#diff-1b2f072fc24d4e371e711036a6ec0d8437c8b6b68c97378c19fa865cff06e0a1R1-R15)
    * Added `StyledComponentsRegistry` for server-side rendering of
    styled-components.
    
    ### Component Additions:
    
    * Added a new `SetupHeader` component in
    `frontend/webapp/components/setup/header/index.tsx` for the setup page
    header.
    * Updated the `index.tsx` file in `frontend/webapp/components/setup` to
    export the new `SetupHeader` component.
    
    ### File Organization:
    
    * Updated `frontend/webapp/styles/index.ts` to export the new
    `theme-provider` module instead of the old `palette`.
    alonkeyval authored Nov 10, 2024
    Configuration menu
    Copy the full SHA
    8771192 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. Configuration menu
    Copy the full SHA
    5e3bb02 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fed3d84 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b24e7c1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5e078a4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5cf7fdd View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5cdb31e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3a371f7 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d0748e9 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d7ec9fb View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    b42215d View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    80bb335 View commit details
    Browse the repository at this point in the history
  12. fix: minor edits

    BenElferink committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    d10a8fd View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    ad8323c View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    29a9b27 View commit details
    Browse the repository at this point in the history
  15. fix: button alignment

    BenElferink committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    704e86d View commit details
    Browse the repository at this point in the history
  16. fix: smaller components

    BenElferink committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    51bf1d3 View commit details
    Browse the repository at this point in the history
  17. fix: continued cleanup

    BenElferink committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    5130970 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    9e3b772 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    c868eab View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2024

  1. fix: toggle & dropdown

    BenElferink committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    5f88f86 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    52a7065 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d1674a5 View commit details
    Browse the repository at this point in the history
  4. fix: duplicates

    BenElferink committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    2abe0e4 View commit details
    Browse the repository at this point in the history
  5. fix: dropdown

    BenElferink committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    4e19e69 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6d2af50 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #5 from BenElferink/gen-1695

    merge from beta-ui to main
    BenElferink authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    89ab764 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

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

Commits on Nov 17, 2024

  1. Configuration menu
    Copy the full SHA
    e24f361 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9b886ba View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7776a8f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b6be431 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2024

  1. Configuration menu
    Copy the full SHA
    47da6bc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7ab5c25 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0fc748b View commit details
    Browse the repository at this point in the history
  4. fix: YAML parse error

    BenElferink committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    0a5b64d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    86c1d84 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8a3dc3f View commit details
    Browse the repository at this point in the history