Skip to content

Commit

Permalink
Update documents to remove descriptions on JIRA
Browse files Browse the repository at this point in the history
This patch removes descriptions regarding JIRA in the repository.
Also, it includes minor improvements of docs.

Signed-off-by: Tatsuya Sato <[email protected]>
  • Loading branch information
satota2 authored and denyeart committed Jan 22, 2024
1 parent ef20365 commit 07e3e4a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#### Related issues

<!--- Include a link to any associated issues, e.g. Jira issue or approved rfc. -->
<!--- Include a link to any associated issues, e.g. Github issue or approved rfc. -->

<!---
#### Release Note
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ If you think you have discovered a security issue in any of the Hyperledger proj

There are two ways to report a security bug. The easiest is to email a description of the flaw and any related information (e.g. reproduction steps, version) to [security at hyperledger dot org](mailto:[email protected]).

The other way is to file a confidential security bug in our [JIRA bug tracking system](https://jira.hyperledger.org). Be sure to set the “Security Level” to “Security issue”.
The other way is to file a confidential security bug in the repository's [security advisories page](https://github.com/hyperledger/fabric/security/advisories). Guidance can be found in the GitHub documentation on [privately reporting a security vulnerability](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability).

The process by which the Hyperledger Security Team handles security bugs is documented further in our [Defect Response page](https://wiki.hyperledger.org/display/SEC/Defect+Response) on our [wiki](https://wiki.hyperledger.org).

5 changes: 2 additions & 3 deletions docs/source/CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,7 @@ discussions/decisions to the `Fabric contributor meeting <https://wiki.hyperledg
The mailing list, Discord, and GitHub each require their own login which you can request upon your first interaction.

The Hyperledger Fabric `wiki <https://wiki.hyperledger.org/display/fabric>`__
and the legacy issue management system in `Jira <https://jira.hyperledger.org/projects/FAB/issues>`__
require a `Linux Foundation ID <https://identity.linuxfoundation.org/>`__,
requires a `Linux Foundation ID <https://identity.linuxfoundation.org/>`__,
but these resources are primarily for read-only reference and you will likely not need an ID.

Contribution guide
Expand Down Expand Up @@ -207,7 +206,7 @@ issue. One of the project's maintainers should respond to your issue within 24
hours. If not, please bump the issue with a comment and request that it be
reviewed. You can also post to the relevant Hyperledger Fabric channel in
`Hyperledger Discord <https://discord.com/servers/hyperledger-foundation-905194001349627914>`__. For example, a doc bug should
be broadcast to ``#fabric-documentation``, a database bug to ``#fabric-ledger``,
be broadcast to ``#fabric-documentation``, a peer bug to ``#fabric-peer``,
and so on...

Submitting your fix
Expand Down
2 changes: 1 addition & 1 deletion docs/source/cc_launcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ When `release` completes, the peer will consume two types of metadata from `RELE

If CouchDB index definitions are required for the chaincode, `release` is responsible for placing the indexes into the `statedb/couchdb/indexes` directory under `RELEASE_OUTPUT_DIR`. The indexes must have a `.json` extension. See the [CouchDB indexes](couchdb_as_state_database.html#couchdb-indexes) documentation for details.

In cases where a chaincode server implementation is used, `release` is responsible for populating `chaincode/server/connection.json` with the address of the chaincode server and any TLS assets required to communicate with the chaincode. When server connection information is provided to the peer, `run` will not be called. See the [Chaincode Server](https://jira.hyperledger.org/browse/FAB-14086) documentation for details.
In cases where a chaincode server implementation is used, `release` is responsible for populating `chaincode/server/connection.json` with the address of the chaincode server and any TLS assets required to communicate with the chaincode. When server connection information is provided to the peer, `run` will not be called.

The following is an example of a simple `release` script for go chaincode:

Expand Down
2 changes: 1 addition & 1 deletion scripts/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
cat > CHANGELOG.new << EOF
## "${2}"
$(git log "$1..HEAD" --oneline | grep -v Merge | sed -e "s/\[\(FAB-[0-9]*\)\]/\[\1\](https:\/\/jira.hyperledger.org\/browse\/\1\)/" -e "s/ \(FAB-[0-9]*\)/ \[\1\](https:\/\/jira.hyperledger.org\/browse\/\1\)/" -e "s/\([0-9|a-z]*\)/* \[\1\](https:\/\/github.com\/hyperledger\/fabric\/commit\/\1)/")
$(git log "$1..HEAD" --oneline | grep -v Merge | sed -e "s/\([0-9|a-z]*\)/* \[\1\](https:\/\/github.com\/hyperledger\/fabric\/commit\/\1)/")
EOF
cat CHANGELOG.md >> CHANGELOG.new
Expand Down

0 comments on commit 07e3e4a

Please sign in to comment.