From 12282f21f1c1303688ceb0862033df9c39d40be8 Mon Sep 17 00:00:00 2001 From: William Godfrey Date: Wed, 13 Apr 2022 22:05:34 +0100 Subject: [PATCH] Updating majority of important RKVST references --- CODE_OF_CONDUCT.md | 4 ++-- CONTRIBUTING.md | 2 +- LICENSE | 2 +- archivist/archivist.py | 2 +- archivist/compliance.py | 2 +- archivist/compliance_policies.py | 2 +- archivist/parser.py | 4 ++-- docs/features.rst | 3 +-- examples/sbom_release.py | 2 +- setup.py | 6 +++--- 10 files changed, 14 insertions(+), 15 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 37553e89..4a1ea3bf 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -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 @@ -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 . +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a RKVST administrator on . This Code of Conduct is adapted from the Contributor Covenant (http://contributor-covenant.org), version 1.2.0, available at diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2fe8eee7..b5113df2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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'. diff --git a/LICENSE b/LICENSE index d30476c5..3b63e045 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/archivist/archivist.py b/archivist/archivist.py index 0240e251..b34440a5 100644 --- a/archivist/archivist.py +++ b/archivist/archivist.py @@ -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 diff --git a/archivist/compliance.py b/archivist/compliance.py index eaf60803..901e9c3b 100644 --- a/archivist/compliance.py +++ b/archivist/compliance.py @@ -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(...) diff --git a/archivist/compliance_policies.py b/archivist/compliance_policies.py index 9343d661..596bbbb5 100644 --- a/archivist/compliance_policies.py +++ b/archivist/compliance_policies.py @@ -14,7 +14,7 @@ # Initialize connection to Archivist arch = Archivist( - "https://rkvst.poc.jitsuin.io", + "https://app.rkvst.io", authtoken, ) diff --git a/archivist/parser.py b/archivist/parser.py index a8bf7ac2..25998d65 100644 --- a/archivist/parser.py +++ b/archivist/parser.py @@ -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( @@ -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 = { diff --git a/docs/features.rst b/docs/features.rst index 6551c4ab..7a86b8a0 100644 --- a/docs/features.rst +++ b/docs/features.rst @@ -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 diff --git a/examples/sbom_release.py b/examples/sbom_release.py index 0128d319..269fc4e3 100644 --- a/examples/sbom_release.py +++ b/examples/sbom_release.py @@ -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": [ diff --git a/setup.py b/setup.py index dc97e6c8..32b62c24 100644 --- a/setup.py +++ b/setup.py @@ -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,