-
Notifications
You must be signed in to change notification settings - Fork 167
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
Commits on Nov 7, 2024
-
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]>
Configuration menu - View commit details
-
Copy full SHA for ccdc08a - Browse repository at this point
Copy the full SHA ccdc08aView commit details
Commits on Nov 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 86022ca - Browse repository at this point
Copy the full SHA 86022caView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for e4ead90 - Browse repository at this point
Copy the full SHA e4ead90View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for aaa0ea2 - Browse repository at this point
Copy the full SHA aaa0ea2View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 4606ce1 - Browse repository at this point
Copy the full SHA 4606ce1View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 178ee95 - Browse repository at this point
Copy the full SHA 178ee95View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for c69e3b2 - Browse repository at this point
Copy the full SHA c69e3b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for a5a905e - Browse repository at this point
Copy the full SHA a5a905eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 33be25b - Browse repository at this point
Copy the full SHA 33be25bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 158ebc6 - Browse repository at this point
Copy the full SHA 158ebc6View commit details -
PROD-29995: Make sure the EDA event user.create will only be fired if…
… the user does not start with __DELETED_USER
Configuration menu - View commit details
-
Copy full SHA for d585474 - Browse repository at this point
Copy the full SHA d585474View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4334e26 - Browse repository at this point
Copy the full SHA 4334e26View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e92d83 - Browse repository at this point
Copy the full SHA 8e92d83View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bdac7b - Browse repository at this point
Copy the full SHA 3bdac7bView commit details -
Configuration menu - View commit details
-
Copy full SHA for f49ecbf - Browse repository at this point
Copy the full SHA f49ecbfView commit details -
Configuration menu - View commit details
-
Copy full SHA for d103b05 - Browse repository at this point
Copy the full SHA d103b05View commit details -
Configuration menu - View commit details
-
Copy full SHA for fcf0b5d - Browse repository at this point
Copy the full SHA fcf0b5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 364587c - Browse repository at this point
Copy the full SHA 364587cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93d5267 - Browse repository at this point
Copy the full SHA 93d5267View commit details -
Configuration menu - View commit details
-
Copy full SHA for ac8e3c2 - Browse repository at this point
Copy the full SHA ac8e3c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ae7559 - Browse repository at this point
Copy the full SHA 5ae7559View commit details -
Issue #3484275 by SV: Add custom check to validate access and verify …
…that feature is active/disabled
Configuration menu - View commit details
-
Copy full SHA for bd72cc1 - Browse repository at this point
Copy the full SHA bd72cc1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4640266 - Browse repository at this point
Copy the full SHA 4640266View commit details -
Configuration menu - View commit details
-
Copy full SHA for c52fdfd - Browse repository at this point
Copy the full SHA c52fdfdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1571d84 - Browse repository at this point
Copy the full SHA 1571d84View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 07ab29d - Browse repository at this point
Copy the full SHA 07ab29dView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for ed30f88 - Browse repository at this point
Copy the full SHA ed30f88View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f7c420 - Browse repository at this point
Copy the full SHA 7f7c420View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 1a07537 - Browse repository at this point
Copy the full SHA 1a07537View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 00cfede - Browse repository at this point
Copy the full SHA 00cfedeView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 0c3d340 - Browse repository at this point
Copy the full SHA 0c3d340View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 95a7c5d - Browse repository at this point
Copy the full SHA 95a7c5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 36ab9f1 - Browse repository at this point
Copy the full SHA 36ab9f1View commit details