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

gh pr list do not show some PR #7538

Closed
fpistm opened this issue Jun 6, 2023 · 8 comments
Closed

gh pr list do not show some PR #7538

fpistm opened this issue Jun 6, 2023 · 8 comments
Labels
bug Something isn't working platform Problems with the GitHub platform rather than the CLI client

Comments

@fpistm
Copy link
Contributor

fpistm commented Jun 6, 2023

Describe the bug

$ gh --version
gh version 2.30.0 (2023-05-30)
https://github.com/cli/cli/releases/tag/v2.30.0

when using gh pr list, some PR are not listed while they should.

Here an example resulting in an empty list

$ gh pr list --repo stm32duino/Arduino_Core_STM32 -L 1000 --state all --json "id,number,title,author,state,labels,createdAt,closedAt,updatedAt,url" --search created:2022-10-07..2022-10-12
[]

while a PR should be listed:

$ gh pr view --repo stm32duino/Arduino_Core_STM32 1845 --json "id,number,title,author,state,labels,createdAt,closedAt,updatedAt,url"
{
  "author": {
    "id": "MDQ6VXNlcjExNzk0NjEx",
    "is_bot": false,
    "login": "mikaelsundin",
    "name": "Mikael Sundin"
  },
  "closedAt": "2022-10-11T13:52:58Z",
  "createdAt": "2022-10-08T20:34:56Z",
  "id": "PR_kwDOBWqIu85AcEns",
  "labels": [
    {
      "id": "MDU6TGFiZWw2MDIxNjk4ODE=",
      "name": "Enhancement",
      "description": "",
      "color": "84b6eb"
    }
  ],
  "number": 1845,
  "state": "MERGED",
  "title": "Added F13-F24 to USB HID.",
  "updatedAt": "2022-10-11T13:52:58Z",
  "url": "https://github.com/stm32duino/Arduino_Core_STM32/pull/1845"
}

It occurs for several PR.

Steps to reproduce the behavior

  1. gh pr list --repo stm32duino/Arduino_Core_STM32 -L 1000 --state all --json "id,number,title,author,state,labels,createdAt,closedAt,updatedAt,url" --search created:2022-10-07..2022-10-12
  2. Empty result which is wrong

Expected vs actual behavior

Having the PR listed.

Logs

NA

@fpistm fpistm added the bug Something isn't working label Jun 6, 2023
@cliAutomation cliAutomation added the needs-triage needs to be reviewed label Jun 6, 2023
@williammartin williammartin added platform Problems with the GitHub platform rather than the CLI client and removed needs-triage needs to be reviewed labels Jun 6, 2023
@williammartin
Copy link
Member

williammartin commented Jun 6, 2023

Hi @fpistm, thanks for this bug report. I can reproduce this based on your instructions. Using GH_DEBUG=api it looks like we are sending the correct query to GitHub but for some reason this PR is not being included in the results. In fact, I can't get stm32duino/Arduino_Core_STM32#1845 to appear in the search results in the UI at all either.

Compare for example, the search for the following two PRs:

https://github.com/search?q=repo%3Astm32duino%2FArduino_Core_STM32+Added+F13-F24+to+USB+HID&type=pullrequests

with

https://github.com/search?q=repo%3Astm32duino%2FArduino_Core_STM32+add+STM32L433RC%2C+STM32L433RB+and+STM32L443RC+support&type=pullrequests


It occurs for several PR.

Can you provide the other PRs?

I'm going to label this with platform and I'll ask internally if anyone has any idea why this is happening. Perhaps some re-indexing needs to be performed.

@fpistm
Copy link
Contributor Author

fpistm commented Jun 6, 2023

Hi @williammartin
I've made the list for https://github.com/stm32duino/Arduino_Core_STM32
but during this time, it seems now it is ok even the stm32duino/Arduino_Core_STM32#1845 appears.

Here was the list:

-PR_kwDOBWqIu85AcEns,1845,2022-10-11T13:52:58Z,MERGED,Added F13-F24 to USB HID.,mikaelsundin,stm32duino/Arduino_Core_STM32,Enhancement,2022-10-08T20:34:56Z,2022-10-11T13:52:58Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1845
-PR_kwDOBWqIu85AFlQ8,1841,2022-10-04T13:42:40Z,MERGED,feat: Name Swan Virtual COM Port pins,zfields,stm32duino/Arduino_Core_STM32,,2022-10-03T21:06:18Z,2022-10-04T13:42:40Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1841
-PR_kwDOBWqIu848mxtG,1780,2022-08-04T16:25:49Z,MERGED,Daisy Patch SM Audio Fix,beserge,stm32duino/Arduino_Core_STM32,,2022-08-03T20:50:42Z,2022-08-04T16:25:48Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1780
-PR_kwDOBWqIu8459cGa,1745,2022-06-21T14:21:24Z,MERGED,variant: G0: add Nucleo-G070RB,TDhaouST,stm32duino/Arduino_Core_STM32,New variant,2022-06-20T16:01:59Z,2022-06-21T14:21:23Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1745
-PR_kwDOBWqIu845dKrW,1739,2022-06-16T13:56:35Z,MERGED,Error management: save space when core logs are not enabled,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2022-06-10T10:06:38Z,2022-06-16T13:56:31Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1739
-PR_kwDOBWqIu84utFI7,1549,2021-11-23T13:22:51Z,MERGED,HardwareTimer: start timer in case only CC interrupts are used,ABOSTM,stm32duino/Arduino_Core_STM32,Fix,2021-11-18T09:58:38Z,2021-11-23T13:22:51Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1549
-PR_kwDOBWqIu84rwx2E,1494,2023-02-28T20:59:51Z,MERGED,Configure Swan R5 initial behaviors,zfields,stm32duino/Arduino_Core_STM32,Enhancement,2021-09-15T04:24:00Z,2021-09-15T07:32:24Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1494
-MDExOlB1bGxSZXF1ZXN0NzA3MTQ5ODc1,1465,2021-08-10T11:56:32Z,MERGED,Update STM32WL HAL and CMSIS drivers ,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2021-08-10T08:41:37Z,2021-08-10T11:56:30Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1465
-MDExOlB1bGxSZXF1ZXN0NzA3MTIwNzI5,1460,2021-08-10T09:46:13Z,MERGED,Update STM32F0 HAL and CMSIS drivers,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2021-08-10T08:02:26Z,2021-08-10T09:46:10Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1460
-MDExOlB1bGxSZXF1ZXN0Njk1ODE3OTM0,1452,2021-07-23T14:45:19Z,MERGED,Update STM32G0 HAL and CMSIS drivers,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2021-07-23T09:57:22Z,2021-07-23T14:45:14Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1452
-MDExOlB1bGxSZXF1ZXN0NjY3Nzc2OTU0,1417,2021-06-13T07:59:46Z,MERGED,Update variant_BLACK_F407ZX.cpp,QPLover,stm32duino/Arduino_Core_STM32,Fix,2021-06-11T07:29:27Z,2021-06-11T11:45:56Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1417
-MDExOlB1bGxSZXF1ZXN0NjYyNjcwMTQz,1413,2021-06-11T18:11:37Z,CLOSED,docs: Clarify relationship to PlatformIO in README.md,brianredbeard,stm32duino/Arduino_Core_STM32,"Invalid,Documentation :books:",2021-06-06T00:14:22Z,2021-06-11T12:36:49Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1413
-MDExOlB1bGxSZXF1ZXN0NjI1NDc3Mzk3,1374,2021-04-29T17:59:11Z,MERGED,USB reviews and Device library update,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2021-04-28T18:55:54Z,2021-04-29T17:59:05Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1374
-MDExOlB1bGxSZXF1ZXN0NTg5NjY2NTE0,1321,2021-03-10T15:47:54Z,MERGED,Review HAL/LL default configuration,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2021-03-10T14:04:57Z,2021-03-10T15:47:04Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1321
-MDExOlB1bGxSZXF1ZXN0NTczNjc1MTIz,1304,2021-02-16T08:27:20Z,MERGED,servo: optional default servo angle on attach,ABOSTM,stm32duino/Arduino_Core_STM32,Enhancement,2021-02-15T16:30:39Z,2021-02-16T08:27:20Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1304
-MDExOlB1bGxSZXF1ZXN0NTcwMjE1MDIy,1298,2021-02-09T13:02:54Z,MERGED,[USB] Manage internal pull-up,fpistm,stm32duino/Arduino_Core_STM32,Fix,2021-02-09T11:08:56Z,2021-02-09T13:02:50Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1298
-MDExOlB1bGxSZXF1ZXN0NTY5NTAwNTIx,1293,2021-02-09T14:45:37Z,MERGED,Adc channel bank support,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2021-02-08T14:08:54Z,2021-02-09T14:45:32Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1293
-MDExOlB1bGxSZXF1ZXN0NTY5MDUxODM2,1292,2021-02-21T23:21:31Z,CLOSED,"Optinally use TIM6 as timebase for the HAL, to allow usign the core inside FreeRTOS",ghent360,stm32duino/Arduino_Core_STM32,Waiting feedback,2021-02-07T21:07:37Z,2021-02-21T23:21:31Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1292
-MDExOlB1bGxSZXF1ZXN0NTY2MDQxODcy,1291,2021-02-04T18:06:16Z,MERGED,WB enhancements,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2021-02-02T15:36:33Z,2021-02-04T18:06:12Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1291
-MDExOlB1bGxSZXF1ZXN0NTIwOTU4NDMx,1237,2020-11-14T04:30:13Z,CLOSED,Support for STM32F303VC,dnandha,stm32duino/Arduino_Core_STM32,,2020-11-14T04:29:37Z,2020-11-14T04:30:13Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1237
-MDExOlB1bGxSZXF1ZXN0NTA5NjE5Mjc4,1219,2020-10-26T08:53:31Z,MERGED,[SPI] Fix CS pin check,fpistm,stm32duino/Arduino_Core_STM32,"Bug :bug:,Fix",2020-10-25T16:21:49Z,2020-10-26T08:51:17Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1219
-MDExOlB1bGxSZXF1ZXN0NTAwNDI1MTYy,1200,2020-10-09T13:55:37Z,MERGED,Update STM32F1 HAL and CMSIS drivers,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2020-10-09T08:12:31Z,2020-10-09T13:46:47Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1200
-MDExOlB1bGxSZXF1ZXN0NDkzMDIwMDc0,1191,2020-11-30T15:23:37Z,MERGED,enabling IPCC module of the stm32WB55,FRASTM,stm32duino/Arduino_Core_STM32,Enhancement,2020-09-25T11:48:11Z,2020-11-30T15:23:37Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1191
-MDExOlB1bGxSZXF1ZXN0NDkxNDQwNjIx,1186,2020-09-23T04:45:37Z,CLOSED,[Enhancement] Add date retention support to stm32f1xx boards,josh-gaby,stm32duino/Arduino_Core_STM32,,2020-09-23T03:06:20Z,2020-09-23T04:45:37Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1186
-MDExOlB1bGxSZXF1ZXN0NDc2MTgzNTQ3,1159,2020-09-11T12:22:33Z,MERGED,Update STM32F1 HAL drivers,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2020-08-31T09:41:49Z,2020-08-31T12:52:02Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1159
-MDExOlB1bGxSZXF1ZXN0NDcwNzQ2NTYy,1150,2020-08-20T12:32:04Z,MERGED,Update STM32F0 HAL driver,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2020-08-20T08:15:56Z,2020-08-20T12:31:58Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1150
-MDExOlB1bGxSZXF1ZXN0NDQ2MzQ3MDI4,1116,2020-07-09T07:08:50Z,MERGED,[CI] Add url option,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2020-07-08T16:15:10Z,2020-07-09T07:08:45Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1116
-MDExOlB1bGxSZXF1ZXN0NDI4NjgxNTc3,1091,2021-08-03T11:39:47Z,MERGED,[variant] Improve variant support and genericity,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,New variant,New feature,Arduino compatibility,Fix",2020-06-05T19:20:04Z,2021-04-17T12:43:58Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1091
-MDExOlB1bGxSZXF1ZXN0NDE0MDc5ODQy,1058,2020-05-06T15:18:17Z,MERGED,Update to latest STM32CubeL4,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2020-05-06T12:58:13Z,2020-05-06T15:18:13Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1058
-MDExOlB1bGxSZXF1ZXN0NDEzOTcxNTE1,1057,2023-03-07T16:21:24Z,MERGED,Update to latest STM32CubeWB,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2020-05-06T09:10:25Z,2020-05-06T12:48:42Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1057
-MDExOlB1bGxSZXF1ZXN0NDA0NjY3NjU1,1032,2020-04-20T13:16:53Z,MERGED,Add more Generic_F103Rx targets,MCUdude,stm32duino/Arduino_Core_STM32,New variant,2020-04-16T19:54:16Z,2020-04-20T08:54:24Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1032
-MDExOlB1bGxSZXF1ZXN0MzkyMDUyMDA3,1007,2020-04-27T13:30:32Z,MERGED,Astyle indent preproc block,matthijskooijman,stm32duino/Arduino_Core_STM32,,2020-03-22T18:44:32Z,2020-03-31T14:44:38Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/1007
-MDExOlB1bGxSZXF1ZXN0MzkxMjIyNDE4,999,2020-03-26T08:12:41Z,CLOSED,Support for Nucleo STM32F746ZG board,ostrelkov,stm32duino/Arduino_Core_STM32,"Duplicated,New variant,Abandoned",2020-03-19T20:29:41Z,2020-03-26T08:12:40Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/999
-MDExOlB1bGxSZXF1ZXN0Mzg5Nzc0NTYy,993,2020-03-17T13:06:59Z,MERGED,Fix weaked initVariant()declaration,fpistm,stm32duino/Arduino_Core_STM32,Fix,2020-03-17T11:17:41Z,2020-03-17T13:06:55Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/993
-MDExOlB1bGxSZXF1ZXN0Mzg2NTYxMTE2,978,2020-03-12T08:09:13Z,MERGED,HardwareTimer: replace comparison with NULL by implicit bool conversion,ABOSTM,stm32duino/Arduino_Core_STM32,Enhancement,2020-03-11T08:59:37Z,2020-03-12T08:09:12Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/978
-MDExOlB1bGxSZXF1ZXN0MzgyODE3MTA0,965,2020-03-05T19:24:10Z,MERGED,Update pre-build recipe,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2020-03-03T08:46:00Z,2020-03-04T12:55:00Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/965
-MDExOlB1bGxSZXF1ZXN0MzgyNzU5OTM0,963,2020-03-26T10:51:04Z,CLOSED,Nucleo-144 F756ZG,hockeymikey,stm32duino/Arduino_Core_STM32,New variant,2020-03-03T05:58:42Z,2020-03-26T10:40:41Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/963
-MDExOlB1bGxSZXF1ZXN0MzgyMjM1ODg4,961,2020-03-02T16:12:56Z,MERGED,Define USER_BTN for BLACK PILL F411CE,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2020-03-02T08:16:24Z,2020-03-02T09:26:41Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/961
-MDExOlB1bGxSZXF1ZXN0Mzc4ODkxOTg1,952,2020-02-24T10:22:08Z,MERGED,Add PlatformIO Test to the workflow,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2020-02-24T09:38:33Z,2020-02-24T10:22:03Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/952
-MDExOlB1bGxSZXF1ZXN0Mzc4NzI4NDEz,951,2020-02-24T07:58:48Z,MERGED,Update CI,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2020-02-23T17:11:45Z,2020-02-24T05:41:42Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/951
-MDExOlB1bGxSZXF1ZXN0Mzc0NjUyODM0,936,2020-02-13T06:32:28Z,CLOSED,Create NUCLEO-G031K8,flair0626,stm32duino/Arduino_Core_STM32,Invalid,2020-02-13T03:39:38Z,2020-02-13T06:32:28Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/936
-MDExOlB1bGxSZXF1ZXN0MzczMDg4NDI3,928,2020-02-11T13:47:49Z,MERGED,Add generic F413C/F423C pinout variant,MCUdude,stm32duino/Arduino_Core_STM32,New variant,2020-02-10T11:42:04Z,2020-02-11T13:31:29Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/928
-MDExOlB1bGxSZXF1ZXN0MzcwNTA1ODYw,914,2020-02-04T07:53:52Z,MERGED,Add generic F410Cx pinout,MCUdude,stm32duino/Arduino_Core_STM32,New variant,2020-02-03T20:23:59Z,2020-02-04T07:04:07Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/914
-MDExOlB1bGxSZXF1ZXN0MzcwMzY2MDU5,912,2020-02-12T16:20:10Z,MERGED,SPI: improvements for SPI library,stas2z,stm32duino/Arduino_Core_STM32,Enhancement,2020-02-03T15:05:24Z,2020-02-12T16:20:10Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/912
-MDExOlB1bGxSZXF1ZXN0MzY5NzQ2MjMy,904,2020-02-03T08:17:47Z,MERGED,Change clock setup for Generic F411Rx,MCUdude,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2020-01-31T19:54:02Z,2020-02-03T07:22:27Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/904
-MDExOlB1bGxSZXF1ZXN0MzU0NjAwMDE4,838,2019-12-18T20:54:43Z,MERGED,"Wire : New ""begin"" method for late call configuration",jmchiappa,stm32duino/Arduino_Core_STM32,New feature,2019-12-18T12:58:40Z,2019-12-18T20:53:01Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/838
-MDExOlB1bGxSZXF1ZXN0MzQ5ODQ3NTg1,819,2019-12-13T17:38:28Z,MERGED,Moved from arm-none-eabi-gcc 8.2.1-1.7 to 9.2.1-1.1,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2019-12-06T09:33:49Z,2019-12-06T17:11:01Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/819
-MDExOlB1bGxSZXF1ZXN0MzQ3MDczMjcx,806,2020-01-03T13:46:01Z,MERGED,HardwareTimer: rework internal mapping of arduino API to HAL/LL API,ABOSTM,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2019-11-29T14:38:57Z,2019-12-09T09:33:40Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/806
-MDExOlB1bGxSZXF1ZXN0MzMxODkyOTYy,728,2019-10-25T07:55:13Z,MERGED,"[HAL/LL/CMSIS] Update F0, F3 and WB series",fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2019-10-24T07:16:04Z,2019-10-25T07:55:10Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/728
-MDExOlB1bGxSZXF1ZXN0MzMxMTA1OTM0,719,2019-11-07T07:49:40Z,MERGED,Add new official library.properties field for static linking flags in platform.txt compiler recipe.,kent-williams,stm32duino/Arduino_Core_STM32,"Arduino compatibility,Fix",2019-10-22T17:16:17Z,2019-10-23T07:35:39Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/719
-MDExOlB1bGxSZXF1ZXN0MzI3MDg0OTI4,694,2019-10-15T05:50:17Z,MERGED,Enhance half-duplex support,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2019-10-11T08:24:11Z,2019-10-15T05:20:22Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/694
-MDExOlB1bGxSZXF1ZXN0MzI3MDYzOTU1,693,2019-10-11T08:00:43Z,MERGED,Set TIM_OCMODE_INACTIVE when using mode TIMER_OUTPUT_COMPARE_INACTIVE,ABOSTM,stm32duino/Arduino_Core_STM32,Fix,2019-10-11T07:19:34Z,2019-10-11T08:00:43Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/693
-MDExOlB1bGxSZXF1ZXN0MzI1MjE3NjY0,684,2019-10-07T12:11:16Z,MERGED,Fix stm32yyxx_ll_fmc.c build issue,fpistm,stm32duino/Arduino_Core_STM32,,2019-10-07T09:54:42Z,2019-10-07T12:10:54Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/684
-MDExOlB1bGxSZXF1ZXN0MzIyMDgxNzQ4,673,2019-09-27T11:47:34Z,MERGED,Add NUCLEO-L452RE-P support,fpistm,stm32duino/Arduino_Core_STM32,New variant,2019-09-27T09:38:14Z,2019-09-27T11:46:05Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/673
-MDExOlB1bGxSZXF1ZXN0MzExMzAzMTgy,614,2019-08-28T11:53:31Z,MERGED,Add SharkyMKR from Midatronics,fpistm,stm32duino/Arduino_Core_STM32,New variant,2019-08-27T10:00:58Z,2019-08-28T11:53:28Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/614
-MDExOlB1bGxSZXF1ZXN0MzAxNDYxODk1,576,2021-08-30T13:59:04Z,MERGED,HardwareTimer implementation,ABOSTM,stm32duino/Arduino_Core_STM32,Enhancement,2019-07-26T09:19:15Z,2019-08-19T08:40:24Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/576
-MDExOlB1bGxSZXF1ZXN0Mjk5Mzc3Mjc5,566,2019-09-05T08:59:32Z,MERGED,"[HAL/LL/CMSIS] Update F2, G0, H7, and WB series ",fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2019-07-19T15:16:36Z,2019-09-05T08:59:27Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/566
-MDExOlB1bGxSZXF1ZXN0MjkzMzI1OTQw,555,2019-07-01T14:21:28Z,MERGED,Add WEAK attribute to PinMap arrays,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Fix",2019-07-01T12:50:41Z,2019-07-01T14:21:21Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/555
-MDExOlB1bGxSZXF1ZXN0MjkyMzA0MTY4,550,2019-06-27T08:19:34Z,MERGED,Moved from arm-none-eabi-gcc 8-2018-q4-major to 8.2.1-1.7,fpistm,stm32duino/Arduino_Core_STM32,,2019-06-27T07:28:30Z,2019-06-27T08:19:29Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/550
-MDExOlB1bGxSZXF1ZXN0Mjc5MTI1MTcz,521,2019-08-02T12:28:36Z,MERGED,Add support of the STEVAL-MKSBOX1V1 (SensorTile.box),fpistm,stm32duino/Arduino_Core_STM32,New variant,2019-05-15T14:30:05Z,2019-08-02T12:28:33Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/521
-MDExOlB1bGxSZXF1ZXN0MjcwNzU2MDY4,500,2019-04-18T07:56:16Z,MERGED,Support custom Usb reenumerate,xC0000005,stm32duino/Arduino_Core_STM32,Enhancement,2019-04-16T05:12:19Z,2019-04-18T07:54:26Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/500
-MDExOlB1bGxSZXF1ZXN0MjY0ODQzMzk4,484,2019-03-27T15:01:08Z,MERGED,Do not warn if start of section is changed,fpistm,stm32duino/Arduino_Core_STM32,Fix,2019-03-27T09:33:57Z,2019-03-27T15:01:05Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/484
-MDExOlB1bGxSZXF1ZXN0MjU3MDg5MzQ1,462,2019-05-29T14:35:03Z,MERGED,Add ST3DP0001 EVAL support,fpistm,stm32duino/Arduino_Core_STM32,New variant,2019-02-28T14:25:02Z,2019-05-29T14:34:59Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/462
-MDExOlB1bGxSZXF1ZXN0MjU2Mjc0NTcy,459,2019-03-06T14:29:07Z,MERGED,Add STM32 G0 support and Nucleo-G071RB variant,fpistm,stm32duino/Arduino_Core_STM32,"New variant,New feature",2019-02-26T13:03:29Z,2019-03-06T14:28:56Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/459
-MDExOlB1bGxSZXF1ZXN0MjU2MjE0NzQx,457,2019-02-26T10:16:27Z,MERGED,"[HAL/LL/CMSIS] Update F4, F7 and L0 series",fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2019-02-26T09:59:11Z,2019-02-26T10:16:23Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/457
-MDExOlB1bGxSZXF1ZXN0MjU1MTY1OTE3,453,2019-03-08T18:21:54Z,MERGED,New style format with astyle,makarenya,stm32duino/Arduino_Core_STM32,,2019-02-21T20:12:32Z,2019-02-25T09:14:36Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/453
-MDExOlB1bGxSZXF1ZXN0MjQ2MjQyMTE3,415,2019-05-20T11:49:59Z,CLOSED,Hid/DFU boot loader (superseded by #525),BennehBoy,stm32duino/Arduino_Core_STM32,"Enhancement,New feature,Abandoned",2019-01-21T10:31:02Z,2019-05-20T09:32:33Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/415
-MDExOlB1bGxSZXF1ZXN0MjI2MzA1MzY4,361,2019-01-21T13:49:19Z,CLOSED,Add board variant Heteromycin,hasenbanck,stm32duino/Arduino_Core_STM32,New variant,2018-10-27T16:17:23Z,2019-01-21T13:49:19Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/361
-MDExOlB1bGxSZXF1ZXN0MjIxMzgyNjc2,353,2018-10-10T07:22:52Z,MERGED,Allow use of a custom startup file,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2018-10-09T10:16:48Z,2018-10-10T07:22:48Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/353
-MDExOlB1bGxSZXF1ZXN0MjE5Mzc4NDQ2,346,2018-10-01T15:38:51Z,MERGED,Add keywords.txt,fpistm,stm32duino/Arduino_Core_STM32,Arduino compatibility,2018-10-01T13:36:03Z,2018-10-01T15:38:14Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/346
-MDExOlB1bGxSZXF1ZXN0MjE5MzA0ODI3,344,2018-12-21T09:08:01Z,CLOSED,CDC implementation,hasenbanck,stm32duino/Arduino_Core_STM32,"Enhancement,New feature,Abandoned",2018-10-01T09:07:13Z,2018-12-21T09:08:01Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/344
-MDExOlB1bGxSZXF1ZXN0MjE3NjQ5OTI3,337,2018-10-02T08:48:43Z,CLOSED,Menu options to support floating point formatting functions,ppescher,stm32duino/Arduino_Core_STM32,,2018-09-24T13:06:50Z,2018-10-02T08:48:43Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/337
-MDExOlB1bGxSZXF1ZXN0MjE3MTg5Mjky,334,2018-09-21T07:14:02Z,MERGED,Update EEPROM library,fpistm,stm32duino/Arduino_Core_STM32,,2018-09-21T07:02:42Z,2018-09-21T07:13:59Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/334
-MDExOlB1bGxSZXF1ZXN0MjE2NjUzMzk3,333,2018-09-21T06:56:42Z,MERGED,[#302 review]Rework eeprom emulation for buffered access,fpistm,stm32duino/Arduino_Core_STM32,,2018-09-19T14:08:00Z,2018-09-21T06:56:35Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/333
-MDExOlB1bGxSZXF1ZXN0MjE2NTQ5ODQ5,328,2018-09-19T08:21:42Z,MERGED,[CI] Update to Arduino 1.8.7,fpistm,stm32duino/Arduino_Core_STM32,,2018-09-19T08:11:18Z,2018-09-19T08:21:39Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/328
-MDExOlB1bGxSZXF1ZXN0MjEyOTIyNzE3,313,2018-09-08T09:47:44Z,MERGED,Update WString,fpistm,stm32duino/Arduino_Core_STM32,Arduino compatibility,2018-09-04T10:08:43Z,2018-09-08T09:47:41Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/313
-MDExOlB1bGxSZXF1ZXN0MjA3Njc1OTE2,303,2018-09-04T08:23:30Z,MERGED,I2C Scanner examples,Testato,stm32duino/Arduino_Core_STM32,Enhancement,2018-08-10T17:29:38Z,2018-09-04T08:23:30Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/303
-MDExOlB1bGxSZXF1ZXN0MjAzNTc3MDk4,282,2018-08-01T19:42:27Z,MERGED,Update STM32F3xx and STM32F7xx,fpistm,stm32duino/Arduino_Core_STM32,,2018-07-24T15:59:10Z,2018-08-01T19:42:24Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/282
-MDExOlB1bGxSZXF1ZXN0MTkzODE1NzQ5,263,2018-06-13T07:17:14Z,MERGED,Update STM32F3xx and STM32L4xx,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2018-06-10T08:51:53Z,2018-06-13T07:17:11Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/263
-MDExOlB1bGxSZXF1ZXN0MTkzODExNDIz,262,2018-06-11T20:55:35Z,CLOSED,Add define for ARDUINO_CORE_STM32 that can be used to identify this Arduino core,ktand,stm32duino/Arduino_Core_STM32,,2018-06-10T06:36:16Z,2018-06-11T20:55:18Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/262
-MDExOlB1bGxSZXF1ZXN0MTg5MTk5Nzk0,253,2018-05-21T07:12:02Z,MERGED,Update wiring_private.h to include stdarg.h,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,Waiting feedback,Arduino compatibility",2018-05-19T18:05:52Z,2018-05-21T07:11:58Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/253
-MDExOlB1bGxSZXF1ZXN0MTc2MjM0NTYy,231,2019-03-27T07:23:22Z,CLOSED,Introduce new ADC API for DMA-based high sampling rate,fprwi6labs,stm32duino/Arduino_Core_STM32,"Enhancement,Invalid,Abandoned",2018-03-20T15:45:23Z,2019-03-27T07:23:21Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/231
-MDExOlB1bGxSZXF1ZXN0MTczNzc0ODk3,224,2018-03-12T20:15:44Z,MERGED,Specify the ARM GCC version in platforms.txt,sandeepmistry,stm32duino/Arduino_Core_STM32,"Arduino compatibility,Review on going",2018-03-08T15:57:56Z,2018-03-12T20:15:44Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/224
-MDExOlB1bGxSZXF1ZXN0MTY2Mzc2NTg5,214,2018-03-15T16:25:37Z,MERGED,Avoid to have first analog pin value (A0) lesser than NUM_ANALOG_INPUTS,fpistm,stm32duino/Arduino_Core_STM32,,2018-01-31T21:09:48Z,2018-02-01T09:16:20Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/214
-MDExOlB1bGxSZXF1ZXN0MTYzMjgxMjI4,199,2018-01-17T16:38:01Z,MERGED,Provides access to Low Layer (LL) API,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2018-01-16T20:36:45Z,2018-01-17T16:37:55Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/199
-MDExOlB1bGxSZXF1ZXN0MTYxNzE4NzM0,192,2018-01-08T21:06:47Z,MERGED,"Added .DS_Store, boards.local.txt and platform.local.txt to .gitignore",lacklustrlabs,stm32duino/Arduino_Core_STM32,,2018-01-08T20:32:04Z,2018-01-08T21:06:47Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/192
-MDExOlB1bGxSZXF1ZXN0MTU5NDA5MzE4,183,2018-05-28T20:58:13Z,CLOSED,Add Low Power driver,fprwi6labs,stm32duino/Arduino_Core_STM32,"Invalid,New feature,Abandoned",2017-12-20T12:52:27Z,2018-05-25T14:05:58Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/183
-MDExOlB1bGxSZXF1ZXN0MTU5MTI5MzMy,181,2018-03-06T08:53:34Z,CLOSED,Added force rebuild menu,fpistm,stm32duino/Arduino_Core_STM32,"Enhancement,On hold",2017-12-19T10:24:35Z,2018-03-06T08:53:34Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/181
-MDExOlB1bGxSZXF1ZXN0MTU4MDUzMjc5,177,2018-05-28T20:57:32Z,CLOSED,Add RTC driver,fprwi6labs,stm32duino/Arduino_Core_STM32,"New feature,Abandoned",2017-12-13T10:21:29Z,2018-04-24T12:20:17Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/177
-MDExOlB1bGxSZXF1ZXN0MTU3ODM5MDI2,175,2018-03-21T10:28:02Z,CLOSED,Introduce new ADC API for DMA-based high sampling rate,,stm32duino/Arduino_Core_STM32,"Enhancement,Abandoned",2017-12-12T14:15:13Z,2018-03-21T10:27:32Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/175
-MDExOlB1bGxSZXF1ZXN0MTU2Mzk4MjU4,166,2017-12-05T09:43:51Z,MERGED,Updated pgmspace.h,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2017-12-05T08:25:56Z,2017-12-05T09:43:20Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/166
-MDExOlB1bGxSZXF1ZXN0MTU1MzM5ODUw,161,2017-11-30T15:48:53Z,MERGED,Improve SPI library code understanding,fprwi6labs,stm32duino/Arduino_Core_STM32,,2017-11-29T13:29:09Z,2017-11-30T15:48:53Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/161
-MDExOlB1bGxSZXF1ZXN0MTUzNTc3Mjkx,154,2021-06-14T13:17:38Z,MERGED,Fixe adc,,stm32duino/Arduino_Core_STM32,,2017-11-20T09:16:12Z,2017-11-21T19:56:10Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/154
-MDExOlB1bGxSZXF1ZXN0MTQ4OTIzMzE0,141,2017-11-07T13:33:06Z,MERGED,Updated HAL drivers and CMSIS for STM32F2/F4/L4,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2017-10-26T12:42:06Z,2017-11-07T13:32:05Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/141
-MDExOlB1bGxSZXF1ZXN0MTQ4MzIyMTg4,138,2023-02-16T09:14:55Z,MERGED,Fix SPI memory leak,app/,stm32duino/Arduino_Core_STM32,Bug :bug:,2017-10-24T07:56:10Z,2017-10-24T09:37:50Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/138
-MDExOlB1bGxSZXF1ZXN0MTQ3Mjg4NjI1,136,2017-11-08T14:41:09Z,CLOSED,Add timer definition for Ethernet library,fprwi6labs,stm32duino/Arduino_Core_STM32,,2017-10-18T12:37:43Z,2017-10-20T12:45:59Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/136
-MDExOlB1bGxSZXF1ZXN0MTQ3MDI0NTky,135,2023-02-16T09:14:55Z,MERGED,I2C IT mode,app/,stm32duino/Arduino_Core_STM32,,2017-10-17T12:30:21Z,2017-11-07T13:32:29Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/135
-MDExOlB1bGxSZXF1ZXN0MTQ1ODk3NjAw,131,2023-02-16T09:14:54Z,CLOSED,Add new methods to Wire library,app/,stm32duino/Arduino_Core_STM32,,2017-10-11T09:27:02Z,2017-11-15T16:10:30Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/131
-MDExOlB1bGxSZXF1ZXN0MTQ0MTYxOTkw,120,2023-02-16T09:14:54Z,CLOSED,Remove I2C buffer length limitation required by M24SR64-Y library,app/,stm32duino/Arduino_Core_STM32,Invalid,2017-10-02T11:27:37Z,2017-10-17T13:40:09Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/120
-MDExOlB1bGxSZXF1ZXN0MTQzOTIyNDE0,119,2017-10-03T14:31:22Z,MERGED,Added missing U(S)ART peripherals management,fpistm,stm32duino/Arduino_Core_STM32,"Bug :bug:,Enhancement",2017-09-29T15:55:35Z,2017-10-03T14:31:18Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/119
-MDExOlB1bGxSZXF1ZXN0MTQyODc5NjYx,112,2017-10-06T10:04:34Z,MERGED,Add missing timer IRQHandler and fix wrong timer IRQHandler,fprwi6labs,stm32duino/Arduino_Core_STM32,,2017-09-25T13:15:29Z,2017-09-26T12:36:21Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/112
-MDExOlB1bGxSZXF1ZXN0MTQxMDgwMDQ5,106,2018-05-29T20:00:14Z,CLOSED,Add DFSDM pinmap,fprwi6labs,stm32duino/Arduino_Core_STM32,On hold,2017-09-14T13:51:25Z,2018-05-29T20:00:14Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/106
-MDExOlB1bGxSZXF1ZXN0MTQxMDQxNzE1,105,2017-09-19T07:57:19Z,MERGED,Fix servo lib,fprwi6labs,stm32duino/Arduino_Core_STM32,,2017-09-14T10:50:18Z,2017-09-14T13:54:18Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/105
-MDExOlB1bGxSZXF1ZXN0MTM5NTYwNDk5,101,2017-09-19T08:02:14Z,MERGED,Remove Ethernet library dependency,fprwi6labs,stm32duino/Arduino_Core_STM32,Enhancement,2017-09-06T13:22:16Z,2017-09-14T13:32:33Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/101
-MDExOlB1bGxSZXF1ZXN0MTM5MzU0Nzg0,100,2017-09-19T08:00:16Z,MERGED,Fix SPI CS pin trouble,fprwi6labs,stm32duino/Arduino_Core_STM32,Bug :bug:,2017-09-05T15:33:14Z,2017-09-12T13:15:21Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/100
-MDExOlB1bGxSZXF1ZXN0MTM5MTQ3NzQx,97,2017-09-19T08:08:00Z,MERGED,New board Discovery L475VG IOT,fprwi6labs,stm32duino/Arduino_Core_STM32,"Enhancement,New variant",2017-09-04T12:31:03Z,2017-09-13T14:33:27Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/97
-MDExOlB1bGxSZXF1ZXN0MTM3MjI2NTg1,91,2018-12-22T07:24:15Z,CLOSED,USB reworked,fprwi6labs,stm32duino/Arduino_Core_STM32,"Enhancement,Abandoned",2017-08-23T14:02:06Z,2018-12-22T07:24:15Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/91
-MDExOlB1bGxSZXF1ZXN0MTM3MTYwMzEy,90,2017-09-19T12:01:08Z,MERGED,Missing compatibility,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2017-08-23T08:40:12Z,2017-08-24T06:39:54Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/90
-MDExOlB1bGxSZXF1ZXN0MTM1NjE0NDk3,80,2017-08-16T07:27:37Z,MERGED,Add support for Nucleo L152RE,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2017-08-14T14:50:19Z,2017-08-16T07:27:33Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/80
-MDExOlB1bGxSZXF1ZXN0MTM1NTk5NDE5,79,2023-02-16T09:14:53Z,MERGED,I2C update following new STM32F1 HAL release,app/,stm32duino/Arduino_Core_STM32,Enhancement,2017-08-14T13:40:01Z,2017-08-16T13:02:13Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/79
-MDExOlB1bGxSZXF1ZXN0MTMzOTA3ODUy,72,2017-08-14T08:02:15Z,MERGED,Add NUCLEO-F411RE variant,fpistm,stm32duino/Arduino_Core_STM32,,2017-08-03T10:13:04Z,2017-08-03T14:26:34Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/72
-MDExOlB1bGxSZXF1ZXN0MTMxMDczMDUx,65,2017-08-01T06:55:55Z,CLOSED,Fixed missing parentheses and added STM32F042x6,tomvdb,stm32duino/Arduino_Core_STM32,Bug :bug:,2017-07-18T12:21:28Z,2017-07-31T08:15:44Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/65
-MDExOlB1bGxSZXF1ZXN0MTMwMzM3NTY1,64,2017-09-19T08:10:43Z,MERGED,Replaced hard coded EEPROM base address with generic code,fprwi6labs,stm32duino/Arduino_Core_STM32,Enhancement,2017-07-13T10:31:00Z,2017-07-13T12:42:22Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/64
-MDExOlB1bGxSZXF1ZXN0MTI5OTI2Nzg1,61,2019-05-29T14:23:03Z,CLOSED,STM32F1 merge other (BluePill and Maple Mini),fpistm,stm32duino/Arduino_Core_STM32,"New variant,Abandoned",2017-07-11T14:45:35Z,2018-03-06T09:09:54Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/61
-MDExOlB1bGxSZXF1ZXN0MTI4ODIwMDEz,53,2017-08-07T07:27:17Z,MERGED,Nucleo l432kc,fpistm,stm32duino/Arduino_Core_STM32,Enhancement,2017-07-04T14:55:24Z,2017-07-05T09:53:03Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/53
-MDExOlB1bGxSZXF1ZXN0MTI4NzU5ODM2,52,2017-09-19T08:12:13Z,MERGED,Ethernet f4,fprwi6labs,stm32duino/Arduino_Core_STM32,Enhancement,2017-07-04T09:21:02Z,2017-08-16T12:58:37Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/52
-MDExOlB1bGxSZXF1ZXN0MTI0NDM3Mzc2,17,2017-08-07T07:24:25Z,MERGED,Removed conflict between printf & Serial.print,fprwi6labs,stm32duino/Arduino_Core_STM32,,2017-06-07T14:39:29Z,2017-06-08T08:46:33Z,https://github.com/stm32duino/Arduino_Core_STM32/pull/17

@fpistm
Copy link
Contributor Author

fpistm commented Jun 6, 2023

I've made more test and now for Arduino_Core_STM32 it is ok. But not for some other repositories from stm32 GH organization.

Ex: stm32duino/STM32RTC#86

Same issue:

$ gh pr list --repo stm32duino/STM32RTC -L 1000 --state all --json "id,number,title,author,state,labels,createdAt,closedAt,updatedAt,url" --search created:2023-01-01..2023-01-18
[]

while:

$ gh pr view --repo stm32duino/STM32RTC 86 --json "id,number,title,author,state,labels,createdAt,closedAt,updatedAt,url"
{
  "author": {
    "id": "MDQ6VXNlcjIwNjQxNzk4",
    "is_bot": false,
    "login": "fpistm",
    "name": "Frederic Pillon"
  },
  "closedAt": "2023-01-18T23:16:09Z",
  "createdAt": "2023-01-13T16:38:08Z",
  "id": "PR_kwDOBnXGK85HWJke",
  "labels": [
    {
      "id": "MDU6TGFiZWw3MzE0NzUwMjA=",
      "name": "enhancement",
      "description": "",
      "color": "84b6eb"
    }
  ],
  "number": 86,
  "state": "MERGED",
  "title": "feat: add second alarm (B) support",
  "updatedAt": "2023-01-18T23:16:21Z",
  "url": "https://github.com/stm32duino/STM32RTC/pull/86"
}

@williammartin
Copy link
Member

Hi @fpistm thanks for the additional information.

I've informed the team that own search and they are investigating the search indexes for issues. If you uncover this problem in any more repositories, I will pass on that information to help their investigation and in the hopes that they can resolve it for you; I believe they reindexed https://github.com/stm32duino/STM32RTC and your search should work there again. Also, as you noticed earlier, it's possible for this to resolve itself, likely due to some automated reindexing.

Since this is not an issue with the CLI but the platform itself I'm going to close this issue but feel free to leave comments. I'm sorry for your troubles!

@fpistm
Copy link
Contributor Author

fpistm commented Jun 7, 2023

Hi @williammartin
I saw other issues with other repo. Let's see after automatic reindexing. Anyway, seems strange that old PR disappeared from the index.

@williammartin
Copy link
Member

Thanks, I let the team know there were still some issues. For what it's worth, https://support.github.com/contact is the general support request point, and they are more likely to have seen this kind of issue reported before and to know how to proceed on most cases.

@williammartin
Copy link
Member

Hi @fpistm, the pull requests team found there was some missing data in the index and have backfilled nearly all of it. Hopefully all your repos should be sorted now. Thank you for the bug report, even though it wasn't with the CLI, it was useful material to add to the investigation!

@fpistm
Copy link
Contributor Author

fpistm commented Jun 9, 2023

Thanks for the feedback @williammartin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working platform Problems with the GitHub platform rather than the CLI client
Projects
None yet
Development

No branches or pull requests

3 participants