ratify-project / ratify

Artifact Ratification Framework
https://ratify.dev
Apache License 2.0
225 stars 63 forks source link

chore: update the roadmap after v1.3.0 release #1817

Closed yizha1 closed 1 month ago

yizha1 commented 2 months ago

Description

What this PR does / why we need it:

Update the roadmap after v1.3.0 release

Which issue(s) this PR fixes (optional, using fixes #<issue number>(, fixes #<issue_number>, ...) format, will close the issue(s) when the PR gets merged):

Fixes #

Type of change

Please delete options that are not relevant.

How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Please also list any relevant details for your test configuration

Checklist:

Post Merge Requirements

codecov[bot] commented 2 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

junczhu commented 1 month ago

JFYI, we may need to include Signed-off-by: Author Name authoremail@example.com in every commit message. You can also do this automatically by using the -s flag (i.e., git commit -s).

yizha1 commented 1 month ago

@binbin-li can you take a look at this commit, it seems this one missed the sign-off. Please let me know how to fix it. Thanks. /cc @junczhu

Commit sha: 088154d, Author: Binbin Li, Committer: GitHub; The sign-off is missing.

junczhu commented 1 month ago

@binbin-li can you take a look at this commit, it seems this one missed the sign-off. Please let me know how to fix it. Thanks. /cc @junczhu

Commit sha: 088154d, Author: Binbin Li, Committer: GitHub; The sign-off is missing.

This is regarding to add or parse trailer lines that look similar to RFC 822 e-mail headers, at the end of the otherwise free-form part of a commit message. For example, in the following commit message

subject

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Signed-off-by: Alice <alice@example.com>
Signed-off-by: Bob <bob@example.com>

the last two lines starting with "Signed-off-by" are trailers.

For convenience, a can be configured to make using --trailer shorter to type on the command line. This can be configured using the trailer..key configuration variable. The must be a prefix of the full string, although case sensitivity does not matter. For example, if you have

trailer.sign.key "Signed-off-by: " in your configuration, you only need to specify --trailer="sign: foo" on the command line instead of --trailer="Signed-off-by: foo".

Reference: https://git-scm.com/docs/SubmittingPatches#sign-off

cc\ @yizha1