Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Jitsuin observes the [CNCF Community Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md), reproduced below for emphasis.
RKVST observes the [CNCF Community Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md), reproduced below for emphasis.

### Contributor Code of Conduct

Expand Down Expand Up @@ -32,7 +32,7 @@ Conduct may be permanently removed from the project team.
This code of conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community.

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a Jitsuin administrator on <support@jitsuin.com>.
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a RKVST administrator on <support@rkvst.com>.

This Code of Conduct is adapted from the Contributor Covenant
(http://contributor-covenant.org), version 1.2.0, available at
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Once a PR has the necessary approvals, it can be merged.
Here’s how the merge should be handled:
- Once approved the author will be asked to squash all fixup commits generated by the review process.
- Commits and their messages should be consistent - each commit in the PR should form a logical unit with working code.
- The first change requested by a Jitsuin reviewer will be to reorganise the commits into a clean logical structure.
- The first change requested by an RKVST reviewer will be to reorganise the commits into a clean logical structure.
- The smaller a PR the more likely and more easily that the change will be approved.
- Any changes requested by a reviewer should be committed as a 'fixup' commit against the original commit in the PR.
- Once approval is granted any 'fixup' commits should be merged into their respective commits using 'git rebase -i --autosquash'.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

MIT License

Copyright (c) 2021 Jitsuin
Copyright (c) 2022 RKVST

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion archivist/archivist.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""Archivist connection interface

This module contains the base Archivist class which manages
the connection parameters to a Jitsuin Archivist instance and
the connection parameters to a RKVST instance and
the basic REST verbs to GET, POST, PATCH and DELETE entities..

The REST methods in this class should only be used directly when
Expand Down
2 changes: 1 addition & 1 deletion archivist/compliance.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Initialize connection to Archivist
arch = Archivist(
"https://rkvst.poc.jitsuin.io",
"https://app.rkvst.io",
authtoken,
)
asset = arch.compliance.compliant_at(...)
Expand Down
2 changes: 1 addition & 1 deletion archivist/compliance_policies.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Initialize connection to Archivist
arch = Archivist(
"https://rkvst.poc.jitsuin.io",
"https://app.rkvst.io",
authtoken,
)

Expand Down
4 changes: 2 additions & 2 deletions archivist/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def common_parser(description: str):
type=str,
dest="url",
action="store",
default="https://rkvst.poc.jitsuin.io",
default="https://app.rkvst.io",
help="url of Archivist service",
)
parser.add_argument(
Expand Down Expand Up @@ -146,7 +146,7 @@ def endpoint(args):
set_logger("INFO")

arch = None
LOGGER.info("Initialising connection to Jitsuin Archivist...")
LOGGER.info("Initialising connection to RKVST...")
fixtures = {}
if args.proof_mechanism is not None:
fixtures = {
Expand Down
3 changes: 1 addition & 2 deletions docs/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
Features
=============================================

This package provides a python interface to the Jitsuin
Archivist.
This package provides a python interface to RKVST.

The definitive guide to the REST API is defined here: https://docs.rkvst.com

Expand Down
2 changes: 1 addition & 1 deletion examples/sbom_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def sbom_release(arch, release, sbom_filename):
"operation": "Record",
"behaviour": "RecordEvidence",
"event_attributes": {
"arc_description": f"Jitsuin Inc RKVST SAAS Release {release}",
"arc_description": f"RKVST Inc RKVST SAAS Release {release}",
"arc_display_type": SBOM_RELEASE,
},
"attachments": [
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

setup(
name=NAME,
author="Jitsuin Inc.",
author_email="support@jitsuin.com",
description="Jitsuin Archivist Client",
author="RKVST Inc.",
author_email="support@rkvst.com",
description="RKVST Client",
long_description=DESC,
long_description_content_type="text/x-rst",
url=REPO_URL,
Expand Down