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

Updates: (deps): Update drupal/graphql requirement from 4.6.0 to 4.9.0 #4073

Closed
wants to merge 33 commits into from

Commits on Nov 7, 2024

  1. Updates: (deps): Update drupal/graphql requirement from 4.6.0 to 4.9.0

    Updates the requirements on drupal/graphql to permit the latest version.
    
    ---
    updated-dependencies:
    - dependency-name: drupal/graphql
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    ccdc08a View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2024

  1. Configuration menu
    Copy the full SHA
    86022ca View commit details
    Browse the repository at this point in the history
  2. Make compass.yaml match Compass tool output

    The compass components are not yet importing and the output for an empty
    `labels` is not an array but `null`. So we change this over to be the
    same in all our compass files in the hope that they import.
    Kingdutch authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    e4ead90 View commit details
    Browse the repository at this point in the history
  3. Add Compass id to compass.yaml files

    The import of components from monorepos isn't working properly yet. The
    Atlassian support team suggested making them manually and then adding
    the generated files instead in small (~10 files) batches. This commit
    contains the first ten files for which components were manually created
    in compass.
    Kingdutch authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    aaa0ea2 View commit details
    Browse the repository at this point in the history
  4. Add Compass id to compass.yaml files

    The import of components from monorepos isn't working properly yet. The
    Atlassian support team suggested making them manually and then adding
    the generated files instead in small (~10 files) batches.
    Kingdutch authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    4606ce1 View commit details
    Browse the repository at this point in the history
  5. Add Compass id to compass.yaml files

    The import of components from monorepos isn't working properly yet. The
    Atlassian support team suggested making them manually and then adding
    the generated files instead in small (~10 files) batches.
    Kingdutch authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    178ee95 View commit details
    Browse the repository at this point in the history
  6. Add Compass id to compass.yaml files

    The import of components from monorepos isn't working properly yet. The
    Atlassian support team suggested making them manually and then adding
    the generated files instead in small (~10 files) batches.
    Kingdutch authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    c69e3b2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a5a905e View commit details
    Browse the repository at this point in the history
  8. Fix PHPStan errors

    tregismoreira authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    33be25b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    158ebc6 View commit details
    Browse the repository at this point in the history
  10. PROD-29995: Make sure the EDA event user.create will only be fired if…

    … the user does not start with __DELETED_USER
    tregismoreira authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    d585474 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4334e26 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    8e92d83 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    3bdac7b View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    f49ecbf View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    d103b05 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    fcf0b5d View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    364587c View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    93d5267 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    ac8e3c2 View commit details
    Browse the repository at this point in the history
  20. Fix conflict with ef210a5

    tregismoreira authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    5ae7559 View commit details
    Browse the repository at this point in the history
  21. Issue #3484275 by SV: Add custom check to validate access and verify …

    …that feature is active/disabled
    volodymyr-sydor authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    bd72cc1 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    4640266 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    c52fdfd View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    1571d84 View commit details
    Browse the repository at this point in the history
  25. PROD-31226 Fix group statistics count method

    In the database we have table "group_relationship_field_data"
    which is the data table for group content entities.
    In this table, we can see the columns type, group_type and plugin_id.
    
    The pattern for the group membership type is usually
    <group_type>-<plugin>. The type (column) is limited to 32 characters,
    and for example closed_challenge-group_membership (33 characters)
    is just too long.
    
    Group includes a way to generate names that fit the limits
    imposed by Drupal core, and it does this consistently in its
    own code. However, this means that where a <bundle>-<plugin>
    concatenation would exceed the limit, it instead converts it to
    'group_content_type_' . md5($preferred_id) and truncates it.
    This is done in GroupRelationshipTypeStorage::getRelationshipTypeId.
    The problem is that our code is naively looking at the
    concatenation and doesn't handle the "too long" case, which
    is handled by the group module.
    
    To solve the problem, we replaced the type condition in the
    count database query withthe plugin_id condition, because
    we do not need the relationship type, which is unique per
    plugin_id and group_type. Since group_type is always the
    same per group entity (and we count per entity), filtering
    by plugin_id instead of type gives the expected result.
    zanvidmar authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    07ab29d View commit details
    Browse the repository at this point in the history
  26. Issue #3487220: Fix user group list

    In the database we have table "group_relationship_field_data"
    which is the data table for group content entities.
    In this table, we can see the columns type, group_type and plugin_id.
    
    The pattern for the group membership type is usually
    <group_type>-<plugin>. The type (column) is limited to 32 characters,
    and for example closed_challenge-group_membership (33 characters)
    is just too long.
    
    Group includes a way to generate names that fit the limits
    imposed by Drupal core, and it does this consistently in its
    own code. However, this means that where a <bundle>-<plugin>
    concatenation would exceed the limit, it instead converts it to
    'group_content_type_' . md5($preferred_id) and truncates it.
    This is done in GroupRelationshipTypeStorage::getRelationshipTypeId.
    The problem is that our code is naively looking at the
    concatenation and doesn't handle the "too long" case, which
    is handled by the group module.
    
    To solve the problem, we replaced the "type" condition in the
    database query with the "plugin_id" condition, because
    we do not need the relationship "type", which is unique per
    plugin_id and group_type. Since group_type is always the
    same per group entity (and we filter per entity), filtering
    by "plugin_id" instead of "type" gives the expected result.
    zanvidmar authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    ed30f88 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    7f7c420 View commit details
    Browse the repository at this point in the history
  28. Bump rollup from 4.14.1 to 4.22.4 in /.github/prManager

    Bumps [rollup](https://github.com/rollup/rollup) from 4.14.1 to 4.22.4.
    - [Release notes](https://github.com/rollup/rollup/releases)
    - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
    - [Commits](rollup/rollup@v4.14.1...v4.22.4)
    
    ---
    updated-dependencies:
    - dependency-name: rollup
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    1a07537 View commit details
    Browse the repository at this point in the history
  29. Bump braces from 3.0.2 to 3.0.3 in /.github/prManager

    Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.
    - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
    - [Commits](micromatch/braces@3.0.2...3.0.3)
    
    ---
    updated-dependencies:
    - dependency-name: braces
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    00cfede View commit details
    Browse the repository at this point in the history
  30. Bump vite from 5.2.8 to 5.2.14 in /.github/prManager

    Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.2.8 to 5.2.14.
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/v5.2.14/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v5.2.14/packages/vite)
    
    ---
    updated-dependencies:
    - dependency-name: vite
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    0c3d340 View commit details
    Browse the repository at this point in the history
  31. Updates: (deps): Update drupal/admin_toolbar requirement

    Updates the requirements on drupal/admin_toolbar to permit the latest version.
    
    ---
    updated-dependencies:
    - dependency-name: drupal/admin_toolbar
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    95a7c5d View commit details
    Browse the repository at this point in the history
  32. Update to 13.0.0-alpha18

    Robert Ragas authored and denis-getopensocial committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    36ab9f1 View commit details
    Browse the repository at this point in the history