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

Add table github_search_issue. Closes #102 #109

Merged
merged 5 commits into from
Dec 7, 2021
Merged

Add table github_search_issue. Closes #102 #109

merged 5 commits into from
Dec 7, 2021

Conversation

c0d3r-arnab
Copy link
Contributor

@c0d3r-arnab c0d3r-arnab commented Nov 23, 2021

Example query results

Results
> select
  title,
  id,
  state,
  created_at,
  html_url
from
  github_search_issue
where
  query = 'github_search_commit in:title in:body in:comments';
+---------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
| title                           | id         | state | created_at           | html_url                                                     |
+---------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
| Add table github_search_commit. | 1061111291 | open  | 2021-11-23T11:02:53Z | https://github.com/turbot/steampipe-plugin-github/issues/101 |
+---------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
> select
  title,
  id,
  state,
  created_at,
  html_url
from
  github_search_issue
where
  query = 'is:open assignee:c0d3r-arnab repo:turbot/steampipe-plugin-github';
+------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
| title                                                                  | id         | state | created_at           | html_url                                                     |
+------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
| Add table github_search_topic.                                         | 1061119453 | open  | 2021-11-23T11:09:04Z | https://github.com/turbot/steampipe-plugin-github/issues/105 |
| Add table github_search_label.                                         | 1061115469 | open  | 2021-11-23T11:06:03Z | https://github.com/turbot/steampipe-plugin-github/issues/103 |
| Add table github_search_user.                                          | 1061121968 | open  | 2021-11-23T11:10:47Z | https://github.com/turbot/steampipe-plugin-github/issues/106 |
| Add table github_search_repository.                                    | 1061117577 | open  | 2021-11-23T11:07:41Z | https://github.com/turbot/steampipe-plugin-github/issues/104 |
| Add tables github_search_code|commits|issues|labels|repos|topics|users | 1058139029 | open  | 2021-11-19T04:59:23Z | https://github.com/turbot/steampipe-plugin-github/issues/97  |
| Add table github_search_issue.                                         | 1061113342 | open  | 2021-11-23T11:04:28Z | https://github.com/turbot/steampipe-plugin-github/issues/102 |
| Add table github_search_commit.                                        | 1061111291 | open  | 2021-11-23T11:02:53Z | https://github.com/turbot/steampipe-plugin-github/issues/101 |
| Add table github_search_code.                                          | 1061107631 | open  | 2021-11-23T11:00:03Z | https://github.com/turbot/steampipe-plugin-github/issues/100 |
+------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
> select
  title,
  id,
  state,
  created_at,
  html_url
from
  github_search_issue
where
  query = 'is:public assignee:c0d3r-arnab repo:turbot/steampipe-plugin-github';
+------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
| title                                                                  | id         | state | created_at           | html_url                                                     |
+------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
| Add table github_search_topic.                                         | 1061119453 | open  | 2021-11-23T11:09:04Z | https://github.com/turbot/steampipe-plugin-github/issues/105 |
| Add table github_search_user.                                          | 1061121968 | open  | 2021-11-23T11:10:47Z | https://github.com/turbot/steampipe-plugin-github/issues/106 |
| Add table github_search_code.                                          | 1061107631 | open  | 2021-11-23T11:00:03Z | https://github.com/turbot/steampipe-plugin-github/issues/100 |
| Add table github_search_commit.                                        | 1061111291 | open  | 2021-11-23T11:02:53Z | https://github.com/turbot/steampipe-plugin-github/issues/101 |
| Add table github_search_repository.                                    | 1061117577 | open  | 2021-11-23T11:07:41Z | https://github.com/turbot/steampipe-plugin-github/issues/104 |
| Add table github_search_label.                                         | 1061115469 | open  | 2021-11-23T11:06:03Z | https://github.com/turbot/steampipe-plugin-github/issues/103 |
| Add tables github_search_code|commits|issues|labels|repos|topics|users | 1058139029 | open  | 2021-11-19T04:59:23Z | https://github.com/turbot/steampipe-plugin-github/issues/97  |
| Add table github_search_issue.                                         | 1061113342 | open  | 2021-11-23T11:04:28Z | https://github.com/turbot/steampipe-plugin-github/issues/102 |
+------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
> select
  title,
  id,
  state,
  created_at,
  html_url
from
  github_search_issue
where
  query = 'is:open -linked:pr repo:turbot/steampipe-plugin-github';
+------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
| title                                                                  | id         | state | created_at           | html_url                                                     |
+------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
| Add tables github_search_code|commits|issues|labels|repos|topics|users | 1058139029 | open  | 2021-11-19T04:59:23Z | https://github.com/turbot/steampipe-plugin-github/issues/97  |
| Add table github_search_user.                                          | 1061121968 | open  | 2021-11-23T11:10:47Z | https://github.com/turbot/steampipe-plugin-github/issues/106 |
| Add table github_search_label.                                         | 1061115469 | open  | 2021-11-23T11:06:03Z | https://github.com/turbot/steampipe-plugin-github/issues/103 |
| Add key columns filter in github_my_repository                         | 1053584827 | open  | 2021-11-15T12:02:24Z | https://github.com/turbot/steampipe-plugin-github/issues/92  |
| Support for GitHub Enterprise                                          | 1027404081 | open  | 2021-10-15T12:42:20Z | https://github.com/turbot/steampipe-plugin-github/issues/70  |
| Add table github_search_topic.                                         | 1061119453 | open  | 2021-11-23T11:09:04Z | https://github.com/turbot/steampipe-plugin-github/issues/105 |
| Add table github_search_repository.                                    | 1061117577 | open  | 2021-11-23T11:07:41Z | https://github.com/turbot/steampipe-plugin-github/issues/104 |
| Add table github_dependency                                            | 973338355  | open  | 2021-08-18T06:55:01Z | https://github.com/turbot/steampipe-plugin-github/issues/46  |
+------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------+
> select
  title,
  id,
  state,
  created_at,
  html_url
from
  github_search_issue
where
  query = 'label:blocked repo:turbot/steampipe-plugin-github';
+------------------------------------------------+------------+-------+----------------------+-------------------------------------------------------------+
| title                                          | id         | state | created_at           | html_url                                                    |
+------------------------------------------------+------------+-------+----------------------+-------------------------------------------------------------+
| Add table github_dependency                    | 973338355  | open  | 2021-08-18T06:55:01Z | https://github.com/turbot/steampipe-plugin-github/issues/46 |
| Add key columns filter in github_my_repository | 1053584827 | open  | 2021-11-15T12:02:24Z | https://github.com/turbot/steampipe-plugin-github/issues/92 |
+------------------------------------------------+------------+-------+----------------------+-------------------------------------------------------------+
> select
  title,
  id,
  comments,
  state,
  created_at,
  html_url
from
  github_search_issue
where
  query = 'org:turbot comments:>10';
+---------------------------------------------------------+-----------+----------+--------+----------------------+-----------------------------------------------------------+
| title                                                   | id        | comments | state  | created_at           | html_url                                                  |
+---------------------------------------------------------+-----------+----------+--------+----------------------+-----------------------------------------------------------+
| steam pipe fails to work when using aws sso credentials | 820742273 | 12       | closed | 2021-03-03T05:26:30Z | https://github.com/turbot/steampipe/issues/242            |
| Listing EC2 instances fails with status code: 400       | 980839647 | 11       | closed | 2021-08-27T03:41:55Z | https://github.com/turbot/steampipe-plugin-aws/issues/634 |
+---------------------------------------------------------+-----------+----------+--------+----------------------+-----------------------------------------------------------+
> select
  title,
  id,
  state,
  created_at,
  closed_at,
  html_url
from
  github_search_issue
where
  query = 'org:turbot state:closed'
  and closed_at > (created_at + interval '30' day);
+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+----------------------+----------------------+-----------------------------------------------------------------------+
| title                                                                                                                                            | id         | state  | created_at           | closed_at            | html_url                                                              |
+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+----------------------+----------------------+-----------------------------------------------------------------------+
| Add table aws_elasticache_redis_metric_cpu_utilization_daily                                                                                     | 1032028122 | closed | 2021-10-21T03:48:42Z | 2021-11-22T06:44:46Z | https://github.com/turbot/steampipe-plugin-aws/issues/691             |
| Add examples to IAM role docs                                                                                                                    | 1023415976 | closed | 2021-10-12T06:26:03Z | 2021-11-18T09:16:35Z | https://github.com/turbot/steampipe-plugin-aws/issues/684             |
| mod csv export should omit control characters                                                                                                    | 1013758456 | closed | 2021-10-01T21:00:11Z | 2021-11-11T12:08:53Z | https://github.com/turbot/steampipe/issues/981                        |
| ERROR: context deadline exceeded                                                                                                                 | 1013715505 | closed | 2021-10-01T20:02:08Z | 2021-11-23T18:04:17Z | https://github.com/turbot/steampipe-mod-github-sherlock/issues/12     |
| Mechanism for providing specific errror messages for prepared statement creation is not working                                                  | 1009778821 | closed | 2021-09-28T13:47:26Z | 2021-11-24T09:13:52Z | https://github.com/turbot/steampipe/issues/965                        |
| `select * from pg_prepared_statements` from `steampipe-mod-aws-compliance` freezes                                                               | 1004259995 | closed | 2021-09-22T12:52:12Z | 2021-11-24T09:16:15Z | https://github.com/turbot/steampipe/issues/940                        |
| Add linter to run on pull_request, releases, merge to master                                                                                     | 1000872604 | closed | 2021-09-20T11:45:19Z | 2021-10-27T11:43:32Z | https://github.com/turbot/steampipe-plugin-github/issues/62           |
| Improve filtering, context cancellation in list calls for tables                                                                                 | 997165518  | closed | 2021-09-15T14:39:12Z | 2021-10-29T11:19:51Z | https://github.com/turbot/steampipe-plugin-turbot/issues/4            |
| Update tables to improve filtering, context cancellation in list calls                                                                           | 998964269  | closed | 2021-09-17T05:41:09Z | 2021-10-27T11:43:32Z | https://github.com/turbot/steampipe-plugin-github/issues/60           |
| Update introspection tables to make param and arg properties lower case in the JSON                                                              | 999385494  | closed | 2021-09-17T13:58:20Z | 2021-10-19T12:39:18Z | https://github.com/turbot/steampipe/issues/925                        |
| Invalid input syntax for type json error while running queries on github_commit table                                                            | 994849472  | closed | 2021-09-13T12:48:04Z | 2021-10-18T10:36:13Z | https://github.com/turbot/steampipe-plugin-github/issues/56           |
| interactive prompt rendering crashes for extremely small console size                                                                            | 994742106  | closed | 2021-09-13T10:52:39Z | 2021-11-11T12:21:55Z | https://github.com/turbot/steampipe/issues/894                        |
| Update tables to use additional API filters, context cancellation in list calls and page limiting for limit clause in query                      | 990163116  | closed | 2021-09-07T16:38:49Z | 2021-10-21T03:32:36Z | https://github.com/turbot/steampipe-plugin-oci/issues/307             |
| Review exit codes for `steampipe` commands                                                                                                       | 984890163  | closed | 2021-09-01T08:57:16Z | 2021-10-22T09:10:34Z | https://github.com/turbot/steampipe/issues/833                        |
| steampipe check tree output has stray | at end if control has zero results                                                                       | 992489876  | closed | 2021-09-09T18:01:42Z | 2021-10-11T09:50:37Z | https://github.com/turbot/steampipe/issues/877                        |
| Update parliament IAM permissions                                                                                                                | 986783784  | closed | 2021-09-02T14:09:45Z | 2021-10-07T12:41:39Z | https://github.com/turbot/steampipe-plugin-aws/issues/640             |
| Investigating a "driver: bad connection" error                                                                                                   | 983336797  | closed | 2021-08-31T01:05:24Z | 2021-11-11T12:20:57Z | https://github.com/turbot/steampipe/issues/822                        |
| Add table aws_macie2_account                                                                                                                     | 989812400  | closed | 2021-09-07T10:01:08Z | 2021-10-11T10:36:07Z | https://github.com/turbot/steampipe-plugin-aws/issues/642             |
| TIMESTAMP columns should use "timestamp with time zone", not "timestamp" (without time zone)                                                     | 983374490  | closed | 2021-08-31T02:30:31Z | 2021-10-18T14:52:43Z | https://github.com/turbot/steampipe-postgres-fdw/issues/94            |
| Commented out SQL should not be part of workspace mod source file loading                                                                        | 984292624  | closed | 2021-08-31T20:32:25Z | 2021-11-11T12:19:15Z | https://github.com/turbot/steampipe/issues/827                        |
| Add table azure_security_center_assessment                                                                                                       | 976977526  | closed | 2021-08-23T12:25:48Z | 2021-10-06T05:18:47Z | https://github.com/turbot/steampipe-plugin-azure/issues/278           |
| Add table azure_mssql_virtual_machine                                                                                                            | 976626423  | closed | 2021-08-23T04:50:58Z | 2021-09-24T06:34:10Z | https://github.com/turbot/steampipe-plugin-azure/issues/275           |
| Update azure plugin Steampipe hub page for credential setup  and cleanup connection set                                                          | 972616490  | closed | 2021-08-17T12:05:53Z | 2021-10-26T02:15:28Z | https://github.com/turbot/steampipe-plugin-azure/issues/270           |
| Add table aws_rds_db_reserved_instance                                                                                                           | 972384350  | closed | 2021-08-17T07:26:07Z | 2021-11-16T23:33:26Z | https://github.com/turbot/steampipe-plugin-aws/issues/601             |
| Add table azuread_sign_in_report                                                                                                                 | 973329276  | closed | 2021-08-18T06:40:15Z | 2021-10-19T06:48:29Z | https://github.com/turbot/steampipe-plugin-azuread/issues/12          |
| Add table aws_waf_web_acl                                                                                                                        | 973630825  | closed | 2021-08-18T12:49:23Z | 2021-11-22T23:33:27Z | https://github.com/turbot/steampipe-plugin-aws/issues/610             |
| v0.2                                                                                                                                             | 969038088  | closed | 2021-08-12T15:22:39Z | 2021-10-18T06:55:16Z | https://github.com/turbot/steampipe-mod-alicloud-thrifty/issues/11    |
| v0.3                                                                                                                                             | 966448848  | closed | 2021-08-11T10:43:57Z | 2021-10-18T06:57:08Z | https://github.com/turbot/steampipe-mod-alicloud-compliance/issues/32 |
| Update OCI compliance mod title                                                                                                                  | 963959049  | closed | 2021-08-09T12:46:12Z | 2021-10-11T14:18:09Z | https://github.com/turbot/steampipe-mod-oci-compliance/issues/27      |
| Check Error: Post https://sts.ap-south-1.aliyuncs.com/?AccessKeyId= for alicloud_oss_bucket                                                      | 962428337  | closed | 2021-08-06T06:08:57Z | 2021-10-18T06:44:15Z | https://github.com/turbot/steampipe-plugin-alicloud/issues/227        |
| Allow providing a user/pass combination to be used when running in Service Mode                                                                  | 956776719  | closed | 2021-07-30T14:04:53Z | 2021-09-24T10:08:20Z | https://github.com/turbot/steampipe/issues/725                        |
| Improve the output of `service stop`                                                                                                             | 961533467  | closed | 2021-08-05T07:33:29Z | 2021-10-19T12:18:29Z | https://github.com/turbot/steampipe/issues/743                        |
| Add table pokemon_berry                                                                                                                          | 958106428  | closed | 2021-08-02T12:45:29Z | 2021-10-22T20:23:48Z | https://github.com/turbot/steampipe-plugin-pokemon/issues/4           |
| `CI` mode                                                                                                                                        | 960230295  | closed | 2021-08-04T10:39:57Z | 2021-10-19T12:15:31Z | https://github.com/turbot/steampipe/issues/736                        |
| Error: grpc: error while marshaling: string field contains invalid UTF-8                                                                         | 956726140  | closed | 2021-07-30T13:02:09Z | 2021-11-11T12:20:08Z | https://github.com/turbot/steampipe/issues/724                        |
| v1.5.0                                                                                                                                           | 962186041  | closed | 2021-08-05T20:51:33Z | 2021-10-18T08:52:59Z | https://github.com/turbot/steampipe-plugin-sdk/issues/164             |
| Add acceptance test for "interactive console becoming unresponsive after ";" query"                                                              | 956711324  | closed | 2021-07-30T12:41:40Z | 2021-10-19T12:13:12Z | https://github.com/turbot/steampipe/issues/722                        |
| List projects hydrate function fails when using application default credentials                                                                  | 951859767  | closed | 2021-07-23T19:58:17Z | 2021-09-20T11:28:36Z | https://github.com/turbot/steampipe-plugin-gcp/issues/289             |
| Add summary to control results                                                                                                                   | 955644041  | closed | 2021-07-29T09:27:25Z | 2021-10-04T15:43:16Z | https://github.com/turbot/steampipe/issues/710                        |
| Remove the message `Your console window is too small...`                                                                                         | 955712567  | closed | 2021-07-29T10:50:19Z | 2021-08-30T08:57:52Z | https://github.com/turbot/steampipe/issues/712                        |
| Add  HIPAA HITRUST 9.2 compliance benchmark & control                                                                                            | 951305905  | closed | 2021-07-23T06:58:56Z | 2021-08-26T17:18:28Z | https://github.com/turbot/steampipe-mod-azure-compliance/issues/58    |
| Arch Package                                                                                                                                     | 954759349  | closed | 2021-07-28T11:29:55Z | 2021-10-19T12:00:24Z | https://github.com/turbot/steampipe/issues/703                        |
| ERROR: context canceled - rendered when 2 terminal executes same control.                                                                        | 954782325  | closed | 2021-07-28T12:01:25Z | 2021-10-19T12:12:35Z | https://github.com/turbot/steampipe/issues/704                        |
| Investigate why queries from sql files are keyed in mod Queries Map using just short name, whereas queries defined in hcl are keyed by full name | 950574815  | closed | 2021-07-22T11:49:01Z | 2021-10-19T11:59:21Z | https://github.com/turbot/steampipe/issues/670                        |
| Fix queries with unnecessary quotes ("").                                                                                                        | 950336859  | closed | 2021-07-22T06:19:14Z | 2021-09-23T18:45:19Z | https://github.com/turbot/steampipe-mod-gcp-compliance/issues/41      |
| Add table bitbucket_group                                                                                                                        | 947608530  | closed | 2021-07-19T12:36:28Z | 2021-09-17T23:32:12Z | https://github.com/turbot/steampipe-plugin-bitbucket/issues/41        |
| Cancellation issues                                                                                                                              | 947680768  | closed | 2021-07-19T13:55:46Z | 2021-10-19T11:40:15Z | https://github.com/turbot/steampipe/issues/652                        |
| Add golangci-lint workflow and resolve suggestions                                                                                               | 948305108  | closed | 2021-07-20T06:13:40Z | 2021-10-18T07:14:16Z | https://github.com/turbot/steampipe-plugin-gcp/issues/288             |
| Investigate streamCount - is it necessary and is it incremented in the correct place                                                             | 947801339  | closed | 2021-07-19T16:00:50Z | 2021-10-04T14:16:05Z | https://github.com/turbot/steampipe-plugin-sdk/issues/154             |
| Update steampipe-plugin-sdk to v1.6.1                                                                                                            | 945057616  | closed | 2021-07-15T06:47:35Z | 2021-09-22T14:25:07Z | https://github.com/turbot/steampipe-plugin-twitter/issues/3           |
| "loading results" counter doesnt appear sometimes                                                                                                | 944407034  | closed | 2021-07-14T13:03:47Z | 2021-08-26T16:47:36Z | https://github.com/turbot/steampipe/issues/617                        |
| Update steampipe-plugin-sdk to v1.5.0                                                                                                            | 943567523  | closed | 2021-07-13T15:45:36Z | 2021-08-30T12:20:55Z | https://github.com/turbot/steampipe-plugin-kubernetes/issues/24       |
| Update steampipe-plugin-sdk to v1.3.1                                                                                                            | 943555619  | closed | 2021-07-13T15:33:27Z | 2021-10-05T13:11:45Z | https://github.com/turbot/steampipe-plugin-ipstack/issues/13          |
| Should return zero records in table if the service API is not enabled                                                                            | 944389749  | closed | 2021-07-14T12:43:29Z | 2021-08-27T09:51:14Z | https://github.com/turbot/steampipe-plugin-gcp/issues/286             |
| Update steampipe-plugin-sdk to v1.5.0                                                                                                            | 943543168  | closed | 2021-07-13T15:21:43Z | 2021-09-08T12:00:53Z | https://github.com/turbot/steampipe-plugin-github/issues/44           |
| force stopping service should not be required during `initdb`                                                                                    | 944307922  | closed | 2021-07-14T11:04:07Z | 2021-09-01T11:12:05Z | https://github.com/turbot/steampipe/issues/615                        |
| Add repository website detail in bitbucket_repository table                                                                                      | 944389718  | closed | 2021-07-14T12:43:27Z | 2021-09-14T23:31:53Z | https://github.com/turbot/steampipe-plugin-bitbucket/issues/35        |
| Update steampipe-plugin-sdk to v1.3.1                                                                                                            | 945044703  | closed | 2021-07-15T06:25:13Z | 2021-10-05T12:04:24Z | https://github.com/turbot/steampipe-plugin-rss/issues/6               |
| Update steampipe-plugin-sdk to v1.6.1                                                                                                            | 945984898  | closed | 2021-07-16T06:25:48Z | 2021-09-22T13:25:46Z | https://github.com/turbot/steampipe-plugin-zoom/issues/4              |
| Update steampipe-plugin-sdk to v1.6.1                                                                                                            | 945011652  | closed | 2021-07-15T05:25:09Z | 2021-09-22T16:12:29Z | https://github.com/turbot/steampipe-plugin-net/issues/5               |
| Update steampipe-plugin-sdk to v1.6.1                                                                                                            | 945981832  | closed | 2021-07-16T06:19:40Z | 2021-09-22T10:58:17Z | https://github.com/turbot/steampipe-plugin-stripe/issues/1            |
| Update steampipe-plugin-sdk to v1.3.1                                                                                                            | 945010015  | closed | 2021-07-15T05:21:15Z | 2021-10-05T12:00:04Z | https://github.com/turbot/steampipe-plugin-hackernews/issues/9        |
| Add table azure_lb_nat_rule                                                                                                                      | 944432541  | closed | 2021-07-14T13:30:51Z | 2021-08-24T13:03:53Z | https://github.com/turbot/steampipe-plugin-azure/issues/186           |
| Update steampipe-plugin-sdk to v1.6.1                                                                                                            | 945970368  | closed | 2021-07-16T05:57:13Z | 2021-09-22T13:50:50Z | https://github.com/turbot/steampipe-plugin-docker/issues/1            |
| Add table azure_lb_backend_address_pool                                                                                                          | 944421270  | closed | 2021-07-14T13:18:49Z | 2021-08-25T08:31:49Z | https://github.com/turbot/steampipe-plugin-azure/issues/183           |
| Getting duplicate values in oci_core_image.                                                                                                      | 946752240  | closed | 2021-07-17T08:02:56Z | 2021-08-24T07:48:48Z | https://github.com/turbot/steampipe-plugin-oci/issues/212             |
| Update steampipe-plugin-sdk to v1.6.1                                                                                                            | 945008221  | closed | 2021-07-15T05:17:06Z | 2021-09-22T14:06:56Z | https://github.com/turbot/steampipe-plugin-equinix/issues/18          |
| Add table azure_lb_outbound_rule                                                                                                                 | 944433017  | closed | 2021-07-14T13:31:19Z | 2021-08-24T07:31:47Z | https://github.com/turbot/steampipe-plugin-azure/issues/187           |
| Update steampipe-plugin-sdk to v1.4.1                                                                                                            | 945002033  | closed | 2021-07-15T05:05:36Z | 2021-08-18T15:41:22Z | https://github.com/turbot/steampipe-plugin-chaos/issues/46            |
| Fix Quals issue in net_dns_record.                                                                                                               | 945098964  | closed | 2021-07-15T07:47:06Z | 2021-09-22T16:12:29Z | https://github.com/turbot/steampipe-plugin-net/issues/6               |
| Update steampipe-plugin-sdk to v1.6.1                                                                                                            | 945064830  | closed | 2021-07-15T06:58:57Z | 2021-09-22T11:52:41Z | https://github.com/turbot/steampipe-plugin-zendesk/issues/15          |
| Update steampipe-plugin-sdk to v1.6.1                                                                                                            | 945059967  | closed | 2021-07-15T06:51:27Z | 2021-09-23T07:16:55Z | https://github.com/turbot/steampipe-plugin-updown/issues/2            |
| Add bitbucket_workspace_member table with associated group info.                                                                                 | 943350950  | closed | 2021-07-13T13:09:33Z | 2021-09-18T23:31:36Z | https://github.com/turbot/steampipe-plugin-bitbucket/issues/30        |
| Add initial benchmark and controls for Alicloud Thrifty                                                                                          | 939721314  | closed | 2021-07-08T10:39:37Z | 2021-08-12T14:56:01Z | https://github.com/turbot/steampipe-mod-alicloud-thrifty/issues/1     |
| Support Linux package managers(`apt-get`, `yum`, `snap`)                                                                                         | 940692044  | closed | 2021-07-09T11:47:29Z | 2021-11-16T11:19:39Z | https://github.com/turbot/steampipe/issues/595                        |
| Add table aws_shield_protection                                                                                                                  | 939560840  | closed | 2021-07-08T07:30:29Z | 2021-10-10T23:32:55Z | https://github.com/turbot/steampipe-plugin-aws/issues/536             |
| Add HIPAA HITRUST 9.2 compliance queries                                                                                                         | 942954807  | closed | 2021-07-13T08:15:53Z | 2021-08-26T17:18:28Z | https://github.com/turbot/steampipe-mod-azure-compliance/issues/52    |
| Add table aws_directory_service_directory                                                                                                        | 942832118  | closed | 2021-07-13T06:29:46Z | 2021-08-12T08:17:36Z | https://github.com/turbot/steampipe-plugin-aws/issues/544             |
| Add table ec2_capacity_reservation                                                                                                               | 941748489  | closed | 2021-07-12T07:16:04Z | 2021-08-25T06:53:40Z | https://github.com/turbot/steampipe-plugin-aws/issues/542             |
+--------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+----------------------+----------------------+-----------------------------------------------------------------------+

@c0d3r-arnab c0d3r-arnab self-assigned this Nov 23, 2021
@c0d3r-arnab c0d3r-arnab linked an issue Nov 23, 2021 that may be closed by this pull request
@c0d3r-arnab c0d3r-arnab marked this pull request as draft November 24, 2021 06:40
@c0d3r-arnab c0d3r-arnab changed the title Add table github_search_issues. Closes #102 Add table github_search_issue. Closes #102 Nov 24, 2021
@c0d3r-arnab c0d3r-arnab marked this pull request as ready for review November 25, 2021 08:24
Copy link
Contributor

@bigdatasourav bigdatasourav left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@bigdatasourav bigdatasourav merged commit 77e69e8 into main Dec 7, 2021
@bigdatasourav bigdatasourav deleted the issue-102 branch December 7, 2021 07:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add table github_search_issue.
2 participants