1. Apr 26, 2024
    • Steve Bennett's avatar
      fixes for kos-ports · bc2a0226
      Steve Bennett authored
      Ticket #303
      
      Some of these (like missing getpeername) are reasonable, but
      it seems like an odd platform that declares but doesn't implement
      access and umask, and implements but doesn't declare lstat.
      
      These changes need testing to see if enough works to be useful.
      bc2a0226
  2. Apr 02, 2024
  3. Mar 29, 2024
  4. Mar 21, 2024
  5. Mar 18, 2024
  6. Mar 13, 2024
    • Steve Bennett's avatar
      generate source info for error messages at top level · 263c2817
      Steve Bennett authored
      
      
      Now that we rely on eval frames to unwind the stack on error,
      if an error occurs at the top level it would previously not
      provide a stack trace. e.g.
      
      $ jimsh t.tcl
      unmatched "["
      
      After this change, the error location is now correctly reported:
      
      $ ./jimsh t.tcl
      t.tcl:8: Error: unmatched "["
      Traceback (most recent call last):
        File "t.tcl", line 8
      
      Signed-off-by: default avatarSteve Bennett <steveb@workware.net.au>
      263c2817
  7. Feb 17, 2024
  8. Feb 15, 2024
  9. Feb 04, 2024
  10. Feb 03, 2024
  11. Feb 02, 2024
  12. Jan 29, 2024
  13. Dec 17, 2023
    • Brian's avatar
      Add CodeQL Workflow for Code Security Analysis · be3f8d53
      Brian authored
      Add CodeQL Workflow for Code Security Analysis
      
      This pull request introduces a CodeQL workflow to enhance the security analysis of our repository. CodeQL is a powerful static analysis tool that helps identify and mitigate security vulnerabilities in our codebase. By integrating this workflow into our GitHub Actions, we can proactively identify and address potential issues before they become security threats.
      
      We added a new CodeQL workflow file (.github/workflows/codeql.yml) that
      - Runs on every pull request (functionality to run on every push to main branches is included as a comment for convenience).
      - Runs daily.
      - Excludes queries with a high false positive rate or low-severity findings.
      - Does not display results for git submodules, focusing only on our own codebase.
      
      Testing:
      To validate the functionality of this workflow, we have run several test scans on the codebase and reviewed the results. The workflow successfully compiles the project, identifies issues, and provides actionable insights while reducing noise by excluding certain queries and third-party code.
      
      Deployment:
      Once this pull request is merged, the CodeQL workflow will be active and automatically run on every push and pull request to the main branch. To view the results of these code scans, please follow these steps:
      1. Under the repository name, click on the Security tab.
      2. In the left sidebar, click Code scanning alerts.
      
      Additional Information:
      - You can further customize the workflow to adapt to your specific needs by modifying the workflow file.
      - For more information on CodeQL and how to interpret its results, refer to the GitHub documentation and the CodeQL documentation (https://codeql.github.com/ and https://codeql.github.com/docs/
      
      ).
      
      Signed-off-by: default avatarBrian <bayuan@purdue.edu>
      be3f8d53
    • Brian's avatar
      Add CodeQL Workflow for Code Security Analysis · 7adfe8dd
      Brian authored
      Add CodeQL Workflow for Code Security Analysis
      
      This pull request introduces a CodeQL workflow to enhance the security analysis of our repository. CodeQL is a powerful static analysis tool that helps identify and mitigate security vulnerabilities in our codebase. By integrating this workflow into our GitHub Actions, we can proactively identify and address potential issues before they become security threats.
      
      We added a new CodeQL workflow file (.github/workflows/codeql.yml) that
      - Runs on every pull request (functionality to run on every push to main branches is included as a comment for convenience).
      - Runs daily.
      - Excludes queries with a high false positive rate or low-severity findings.
      - Does not display results for git submodules, focusing only on our own codebase.
      
      Testing:
      To validate the functionality of this workflow, we have run several test scans on the codebase and reviewed the results. The workflow successfully compiles the project, identifies issues, and provides actionable insights while reducing noise by excluding certain queries and third-party code.
      
      Deployment:
      Once this pull request is merged, the CodeQL workflow will be active and automatically run on every push and pull request to the main branch. To view the results of these code scans, please follow these steps:
      1. Under the repository name, click on the Security tab.
      2. In the left sidebar, click Code scanning alerts.
      
      Additional Information:
      - You can further customize the workflow to adapt to your specific needs by modifying the workflow file.
      - For more information on CodeQL and how to interpret its results, refer to the GitHub documentation and the CodeQL documentation (https://codeql.github.com/ and https://codeql.github.com/docs/
      
      ).
      
      Signed-off-by: default avatarBrian <bayuan@purdue.edu>
      7adfe8dd
    • Brian's avatar
      Add CodeQL Workflow for Code Security Analysis · 58a7d6c6
      Brian authored
      Add CodeQL Workflow for Code Security Analysis
      
      This pull request introduces a CodeQL workflow to enhance the security analysis of our repository. CodeQL is a powerful static analysis tool that helps identify and mitigate security vulnerabilities in our codebase. By integrating this workflow into our GitHub Actions, we can proactively identify and address potential issues before they become security threats.
      
      We added a new CodeQL workflow file (.github/workflows/codeql.yml) that
      - Runs on every pull request (functionality to run on every push to main branches is included as a comment for convenience).
      - Runs daily.
      - Excludes queries with a high false positive rate or low-severity findings.
      - Does not display results for git submodules, focusing only on our own codebase.
      
      Testing:
      To validate the functionality of this workflow, we have run several test scans on the codebase and reviewed the results. The workflow successfully compiles the project, identifies issues, and provides actionable insights while reducing noise by excluding certain queries and third-party code.
      
      Deployment:
      Once this pull request is merged, the CodeQL workflow will be active and automatically run on every push and pull request to the main branch. To view the results of these code scans, please follow these steps:
      1. Under the repository name, click on the Security tab.
      2. In the left sidebar, click Code scanning alerts.
      
      Additional Information:
      - You can further customize the workflow to adapt to your specific needs by modifying the workflow file.
      - For more information on CodeQL and how to interpret its results, refer to the GitHub documentation and the CodeQL documentation (https://codeql.github.com/ and https://codeql.github.com/docs/
      
      ).
      
      Signed-off-by: default avatarBrian <bayuan@purdue.edu>
      58a7d6c6
    • Brian's avatar
      Add CodeQL Workflow for Code Security Analysis · 480c7473
      Brian authored
      
      
      Add CodeQL Workflow for Code Security Analysis
      
      This pull request introduces a CodeQL workflow to enhance the security analysis of our repository. CodeQL is a powerful static analysis tool that helps identify and mitigate security vulnerabilities in our codebase. By integrating this workflow into our GitHub Actions, we can proactively identify and address potential issues before they become security threats.
      
      We added a new CodeQL workflow file (.github/workflows/codeql.yml) that
      - Runs on every push and pull request to the main branch.
      - Excludes queries with a high false positive rate or low-severity findings.
      - Does not display results for third-party code, focusing only on our own codebase.
      
      Testing:
      To validate the functionality of this workflow, we have run several test scans on the codebase and reviewed the results. The workflow successfully compiles the project, identifies issues, and provides actionable insights while reducing noise by excluding certain queries and third-party code.
      
      Deployment:
      Once this pull request is merged, the CodeQL workflow will be active and automatically run on every push and pull request to the main branch. To view the results of these code scans, please follow these steps:
      1. Under the repository name, click on the Security tab.
      2. In the left sidebar, click Code scanning alerts.
      
      Additional Information:
      - You can further customize the workflow to adapt to your specific needs by modifying the workflow file.
      - For more information on CodeQL and how to interpret its results, refer to the GitHub documentation and the CodeQL documentation.
      
      Signed-off-by: default avatarBrian <bayuan@purdue.edu>
      480c7473
  14. Nov 02, 2023
  15. Oct 12, 2023
  16. Aug 27, 2023
  17. Aug 13, 2023
  18. Aug 12, 2023
  19. Jul 31, 2023
  20. Jul 13, 2023
  21. Jul 11, 2023
  22. Jul 10, 2023
  23. Jul 06, 2023
  24. Jul 05, 2023
  25. Jul 04, 2023