[openssl] master update

matthias.st.pierre at ncp-e.com matthias.st.pierre at ncp-e.com
Wed Oct 30 16:47:20 UTC 2019


The branch master has been updated
       via  d9b8c7237cb0e970bf508613421ee6ba280f8388 (commit)
       via  a71779dee647debb034c623370b92778dfbfb292 (commit)
      from  f702256d5514e54138279fd4637353e328262817 (commit)


- Log -----------------------------------------------------------------
commit d9b8c7237cb0e970bf508613421ee6ba280f8388
Author: Dr. Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
Date:   Mon Oct 28 00:55:29 2019 +0100

    Add a GitHub issue template for documentation issues
    
    This template automatically adds the [issue: documentation] label.
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/10051)

commit a71779dee647debb034c623370b92778dfbfb292
Author: Dr. Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
Date:   Sat Aug 3 13:30:47 2019 +0200

    Add a GitHub issue template for questions
    
    Actually, we would rather see general questions posted to the
    openssl-users mailing list. But habits have changed and more and
    more users ask questions on GitHub. Many of them are currently tagged
    as bug reports or feature requests, because there is no appropriate
    template for questions. This commit adds the missing template.
    
    This template automatically adds the [issue: question] label.
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/10051)

-----------------------------------------------------------------------

Summary of changes:
 .github/ISSUE_TEMPLATE/bug_report.md      |  3 +-
 .github/ISSUE_TEMPLATE/documentation.md   | 14 ++++++++
 .github/ISSUE_TEMPLATE/feature_request.md |  3 +-
 .github/ISSUE_TEMPLATE/question.md        | 56 +++++++++++++++++++++++++++++++
 4 files changed, 74 insertions(+), 2 deletions(-)
 create mode 100644 .github/ISSUE_TEMPLATE/documentation.md
 create mode 100644 .github/ISSUE_TEMPLATE/question.md

diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 489e02404d..5e33c144d3 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -6,7 +6,8 @@ about: Report a defect in the software
 ---
 
 <!--
-Thank you for your bug report.
+Thank you for your bug report. If this is your first one,
+please take the time to read the following lines before posting it.
 
 NOTE:
 
diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md
new file mode 100644
index 0000000000..a1e61ef86e
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/documentation.md
@@ -0,0 +1,14 @@
+---
+name: Documentation
+labels: 'issue: documentation'
+about: Report an error in (or missing) documentation
+---
+
+<!--
+Thank you for taking the time to report a documentation issue.
+
+Please remember to tell us which OpenSSL version you are using and then
+briefly describe the documentation error and where you encountered it
+(e.g., in which manual page). If you are missing the documentation for a
+certain command or API function, please tell us its name.
+-->
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
index 2af31318cd..706c022a28 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -6,7 +6,8 @@ about: Propose a feature you would like to see added in the software
 ---
 
 <!--
-Thank you for your feature request.
+Thank you for your feature request. If this is your first one,
+please take the time to read the following lines before posting it.
 
 NOTE:
 
diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md
new file mode 100644
index 0000000000..513ad5bbe8
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/question.md
@@ -0,0 +1,56 @@
+---
+name: Question
+labels: 'issue: question'
+about: Ask a question about OpenSSL
+---
+
+<!--
+Thank you for your interest in OpenSSL. If this is your first question,
+please take the time to read the following lines before posting it.
+
+For general questions about *using* OpenSSL:
+
+    If you have questions about how to use OpenSSL for specific tasks
+    or how to solve certain problems you have when using it, you might
+    want to ask them on the openssl-users at openssl.org mailing list.
+    There you can get help from a great community of OpenSSL users,
+    not only (but including) the OpenSSL developers. For more information
+    about our mailing lists, see
+    https://www.openssl.org/community/mailinglists.html.
+
+For questions related to build issues:
+
+    Please use the 'Bug report' template.
+
+For other questions:
+
+    Please describe your problem as concisely as possible while giving
+    us enough information to understand your problem. Example code
+    or example commands are highly appreciated if they help us to
+    better understand what you are trying to achieve.
+
+    Also, please remember to tell us which OpenSSL version you are
+    using and whether it is system provided or you built it yourself.
+    In the latter case, please also send us your build configuration.
+    With OpenSSL before 1.1.1, the configuration output comes from the
+    configuration command.  With OpenSSL 1.1.1 and on, you can obtain
+    the information by running the command `perl configdata.pm --dump`
+    in the root directory of the source tree.
+
+Please remember to put ``` lines before and after any commands plus
+output and code, like this:
+
+    ```
+    $ echo output output output
+    output output output
+    ```
+
+    ```
+    #include <stdio.h>
+
+    int main() {
+        int foo = 1;
+        printf("%d\n", foo);
+    }
+    ```
+-->


More information about the openssl-commits mailing list