Nisha Kumar
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
      • No invitee
    • Publish Note

      Publish Note

      Everyone on the web can find and read all notes of this public team.
      Once published, notes can be searched and viewed by anyone online.
      See published notes
      Please check the box to agree to the Community Guidelines.
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
No invitee
Publish Note

Publish Note

Everyone on the web can find and read all notes of this public team.
Once published, notes can be searched and viewed by anyone online.
See published notes
Please check the box to agree to the Community Guidelines.
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# spdx-sbom-generator Community Meeting Minutes Times: Every Wednesday 9:30am-10:30am Pacific, 12:00pm-1:00pm EDT, 5:00pm-6:00pm UTC Online meeting: https://meet.jit.si/SBOM-tools ***Template*** ## Enter Date Here ### Attendees - _attendees list_ ### Notetaker - _notetaker_ 🥇 - _backup notetaker_ 🥈 Agenda - _enter agenda before meeting_ Notes ------------------- ## Backlog - https://github.com/opensbom-generator/spdx-sbom-generator/issues/306 - Deprecate SPDX 2.2 support ------------------- ## 09/20/2023 ### Attendees - Rahul Tiwari Agenda - Plugin Interface Design Notes - Browse through the existing implementation to find scope of refactoring so that the new plugin interface fits in better. ------------------- ## 09/20/2023 ### Attendees - Nisha Kumar Agenda - Plugin Interface Design Notes - Most straightforward implementation is 1 method to return an SPDX document. This should work for SPDX2.x - In the current refactor we have a document handler which is called by the generator implementation ```go type GeneratorImplementation interface { GetDocumentFormatHandler(*options.Options) (DocumentFormatHandler, error) GetCodeParsers(*options.Options) ([]plugin.Plugin, error) RunParser(*options.Options, plugin.Plugin) ([]meta.Package, error) } ``` The `GetDocumentFormatHandler` handles different spdx specification versions ```go // GetDocumentFormatHandler gets a document handler according to the spdx schema version func (di *defaultGeneratorImplementation) GetDocumentFormatHandler(opts *options.Options) (DocumentFormatHandler, error) { switch opts.SchemaVersion { case "2.3": return &v23.Handler{}, nil case "2.2": return &v22.Handler{}, nil default: return nil, errors.New("no document format handler defined") } } ``` ```go // a mapping between each plugin var plugins := make(map[string]DocumentFormatHandler) type DocumentHandler interface { GetDocumentFormatHandler(*options.Options) (DocumentFormatHandler, error) } type Plugin interface { GetDocument(opts *options.Options) } func GetPluginHander(pluginName string) DocumentFormatHandler{ return plugins[pluginName] } package main import "plugin" import _ "plugins/python" func main() { dfh := GetPluginHander("python") dfh.CreateDocument() } ``` ------------------- ## 09/13/2023 ### Attendees - Nisha Kumar - Rahul Tiwari ### Notetaker - Rahul Tiwari Agenda - Proposal to update plugin architecture Notes - Proposed architecture diagram: https://drive.google.com/file/d/1lw1Iitv6PEbRnV5gpbkXyXcZl2WIione/view?usp=sharing - Next steps: create issue with proposed architecture (Done: https://github.com/opensbom-generator/spdx-sbom-generator/issues/306) ------------------- ## 08/23/2023 ### Attendees - Rahul Tiwari - Maximilian Huber ### Notetaker - Rahul Tiwari Notes - Glanced through the pnpm parser [PR](https://github.com/opensbom-generator/parsers/pull/75/files) ------------------- ## 08/09/2023 ### Attendees - Rahul Tiwari - Nisha Kumar ### Notetaker - Rahul Tiwari Agenda - Reviewing the refactor [PR](https://github.com/opensbom-generator/spdx-sbom-generator/pull/295) of the SBOM generator. - Discussing separating plugins out of the parsers project and its feasibility. Notes - GSoC work - Fix the build job in the GitHub actions. ------------------- ## 07/26/2023 ### Attendees - Rahul Tiwari - Nisha Kumar ### Notetaker - Rahul Tiwari Agenda - Discussing Nisha's [PR](https://github.com/opensbom-generator/parsers/pull/35) supporting various lockfile versions for npm. The PR seems stale and needs to be revisited. ------------------- ## 06/28/2023 ### Attendees - Rahul Tiwari - Nisha Kumar - Adolfo García Veytia ### Notetaker - Rahul Tiwari Agenda - GSoC work: - Start with integrating the parsers with spdx-sbom-generator as a new command maintaining backward compatibility. - Generate SBOMS from requirements.txt , packages.json ------------------- ## 06/21/2023 ### Attendees - Rahul Tiwari - Nisha Kumar - Maximilian Huber ### Notetaker - Rahul Tiwari Agenda - GSoC work: - Continue adding more unit tests for poetry - Discussion about integrating the parsers with the spdx-sbom-generator Notes - Continue on unit tests. ------------------- ## 06/14/2023 ### Attendees - Rahul Tiwari ### Notetaker - Rahul Tiwari Agenda - GSoC work: - Setup unit testing for poetry Notes - Continue on unit tests. ------------------- ## 06/07/2023 ### Attendees - Rahul Tiwari - Nisha Kumar - Adolfo García Veytia ### Notetaker - Rahul Tiwari Agenda - GSoC work: - Finalize the approach for unit tests for the poetry package manager. Notes - Rahul to rethink and go bottom up for writing unit tests for poetry. ------------------- ## 05/24/2023 ### Attendees - Rahul - Nisha Agenda - GSoC work: - https://github.com/opensbom-generator/parsers/issues/57 Notes - Rahul to work on issue 57 - Nisha to find out more about the cargo mocks ------------------- ## 03/08/2023 ### Attendees - Adolfo García Veytia - Nisha Kumar - Ivana Atanasova - Rahul Tiwari ### Notetaker - Nisha 🥇 Notes: - Kubeflow is having trouble with using spdx-sbom-generators with python - Nisha: need to know what python package manager they are using; some of the parsers are broken - Project Layout: - parsers will contain just parsers of files that exist on the filesystem. - We don't know if any of the ecosystems require network calls to fetch package information. - Needs to be investigated. - It was decided that functionality where we shell out to package managers or external tools exists in another project. - Conformance tests: we need specific test data to test expectations. - Nisha: testdata layout in [npm PR](https://github.com/opensbom-generator/parsers/pull/35) works reasonably well. - Submission of [sbom-composer](https://github.com/vmware-samples/sbom-composer) to opensbom-generator org - Ivana will let others know when it's ready to be moved. - Welcome Rahul! No attendees :white_frowning_face: ------------------- ## 11/23/2022 ### Attendees - Adolfo García Veytia ### Notetaker - _notetaker_ 🥇 - _backup notetaker_ 🥈 Agenda - Parsers Package and Plugin Model Notes No attendees :white_frowning_face: ------------------- ## 11/09/2022 ### Attendees - Adolfo - Nisha Kumar ### Notetaker - Nisha 🥇 - _backup notetaker_ 🥈 Agenda - Parsers Package and Plugin Model Notes - Decision: - Make parser functionality testable - Continue to use the current plugin and meta package ------------------- ## 10/12/2022 ### Attendees - Adolfo - Nisha Kumar ### Notetaker - Nisha 🥇 - _backup notetaker_ 🥈 Agenda - Manifest Parsers Notes - Manifest parsers - Action: Nisha to make Adolfo maintainer of org and repo - Action: Adolfo creates "parser" repo - Before that, create a document on how this is structured. - Perhaps keep all parsers in this repo? - Ask Gary in the ACT call ------------------- ## 09/28/2022 ### Attendees - _attendees list_ ### Notetaker - _notetaker_ 🥇 - _backup notetaker_ 🥈 ### Agenda - ### Notes - So many tools! - Adolfo's ideas: - Pluggable model in bom: go package with some options and it will produce an SPDX object - SPDX generator: could reuse the language analyzers - We want to link this to some best practices - Universal lock file? - SBOM Guidance (going to be presented in OpenSSF Securing repos wg) In order to produce an SBOM you need a lock file. For example, go.mod/go.sum, - Use top level project metadata then add build metadata when invoking a build - Maybe also adding in-toto - Adolfo: most valuable use case is to generate a good quality SPDX SBOM - Example of `bom`'s upcoming plugin model. As simple as: ``` type PackageGenerator interface { Generate(interface{}) (*spdx.Package, error) } ``` -------------------

Import from clipboard

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Upgrade to Prime

  • Edit verison name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare with
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Upgrade

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Upgrade

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully