Matt Glaman

Results 403 comments of Matt Glaman
trafficstars

Honestly, I just forgot to finish the feature. I would want it to work against branches _and_ tags. Currently it hard checks tags. I would like it to work similar...

This is something I wanted, as well. I actually thought Drupal.org listed them! See #14. We can query them via the API pretty easily: https://www.drupal.org/api-d7/node.json?type=changenotice

Initial proposed output for JSON ``` { "ChangeRecords": [ { "title": "Drupal 8.5 required", "description": "As the messenger service is used to show the warning message the Drupal core 8.5...

Markdown example /Add a summary here/ ### Contributors (28) [sorabh.v6](https://www.drupal.org/u/sorabh.v6), [casey](https://www.drupal.org/u/casey), [harings_rob](https://www.drupal.org/u/harings_rob), [bojanz](https://www.drupal.org/u/bojanz), [rszrama](https://www.drupal.org/u/rszrama), [lisastreeter](https://www.drupal.org/u/lisastreeter), [mortona2k](https://www.drupal.org/u/mortona2k), [jsacksick](https://www.drupal.org/u/jsacksick), [edurenye](https://www.drupal.org/u/edurenye), [edwardaa](https://www.drupal.org/u/edwardaa), [Lendude](https://www.drupal.org/u/lendude), [agoradesign](https://www.drupal.org/u/agoradesign), [jafacakes2011](https://www.drupal.org/u/jafacakes2011), [pazhyn](https://www.drupal.org/u/pazhyn), [mglaman](https://www.drupal.org/u/mglaman), [flocondetoile](https://www.drupal.org/u/flocondetoile), [GoZ](https://www.drupal.org/u/goz), [bmcclure](https://www.drupal.org/u/bmcclure), [vasike](https://www.drupal.org/u/vasike), [finne](https://www.drupal.org/u/finne), [bucefal91](https://www.drupal.org/u/bucefal91),...

Add a summary here Contributors (28) sorabh.v6, casey, harings_rob, bojanz, rszrama, lisastreeter, mortona2k, jsacksick, edurenye, edwardaa, Lendude, agoradesign, jafacakes2011, pazhyn, mglaman, flocondetoile, GoZ, bmcclure, vasike, finne, bucefal91, EclipseGc, joachim, alexpott,...

The fix is to borrow what I did in `drupal-check`, which utilizes `jean85/pretty-package-versions`. ``` try { $version = \Jean85\PrettyVersions::getVersion('mglaman/drupal-check')->getPrettyVersion(); } catch (\OutOfBoundsException $e) { $version = '0.0.0'; } ``` I...

This would include going through _every_ issue's comments in `comments`. We'd collect the organization node IDs in `field_attribute_contribution_to` and `field_for_customer` and have to resolve the organization IDs as well.

Some of the GraphQL queries to `https://git.drupalcode.org/api/graphql` ``` {"query":"query projectFetch($path: ID!) {project(fullPath: $path) {\n httpUrlToRepo\n sshUrlToRepo\n repository {\n rootRef\n }\n }}","variables":{"path":"issue/commerce-3152516"}} ``` And to fetch the branches https://git.drupalcode.org/api/v4/projects/issue%2Fcommerce-3152516/repository/branches?per_page=100&page=1

It doesn't look like there is any API entry for knowing if a project has issue forks enabled or not, but we can just query the GraphQL instance to see...

Ah yeah. The definitely has not been adjusted for semver, and that's going to be pretty hard, like it was for even implementing it for contrib. Just because it isn't...