diff --git a/docs/source/cfngin/remote_sources.rst b/docs/source/cfngin/remote_sources.rst index a1656ca2b..2d4d5c7cf 100644 --- a/docs/source/cfngin/remote_sources.rst +++ b/docs/source/cfngin/remote_sources.rst @@ -162,7 +162,7 @@ Git Repository package_sources: git: - - uri: git@github.com:onicagroup/runway.git # ssh + - uri: git@github.com:rackspace/runway.git # ssh - uri: https://github.com/rackspace/runway.git # https diff --git a/docs/source/conf.py b/docs/source/conf.py index 290fc2d3b..4fbb0c297 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -17,8 +17,8 @@ # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = "Runway" -copyright = "2021, Onica Group" # noqa: A001 -author = "Onica Group" +copyright = "2024, Rackspace Technology, Inc." # noqa: A001 +author = "Rackspace Technology, Inc." release = Version.from_git().serialize(metadata=False, style=Style.SemVer) version = ".".join(release.split(".")[:2]) # short X.Y version @@ -115,7 +115,7 @@ # -- Options for LaTeX output ------------------------------------------------ # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-latex-output latex_documents = [ - (master_doc, "runway.tex", "runway Documentation", "Onica Group", "manual"), + (master_doc, "runway.tex", "runway Documentation", "Rackspace Technology, Inc.", "manual"), ] latex_elements = {} diff --git a/docs/source/getting_started.rst b/docs/source/getting_started.rst index 128eaf2e0..5f8c31459 100644 --- a/docs/source/getting_started.rst +++ b/docs/source/getting_started.rst @@ -136,7 +136,7 @@ Deploying Your First Module :caption: runway.yml --- - # See full syntax at https://docs.onica.com/projects/runway + # See full syntax at https://runway.readthedocs.io/ deployments: - modules: - nameofmyfirstmodulefolder @@ -157,7 +157,7 @@ Deploying Your First Module :caption: runway.yml --- - # See full syntax at https://docs.onica.com/projects/runway + # See full syntax at https://runway.readthedocs.io/ deployments: - modules: - sampleapp.cfn diff --git a/docs/source/license.rst b/docs/source/license.rst index 4161f0587..3e244acd8 100644 --- a/docs/source/license.rst +++ b/docs/source/license.rst @@ -197,7 +197,7 @@ recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018 Onica Group LLC + Copyright 2018 Rackspace Technology, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/docs/source/quickstart/conduit.rst b/docs/source/quickstart/conduit.rst index 993822bb4..499fec6bf 100644 --- a/docs/source/quickstart/conduit.rst +++ b/docs/source/quickstart/conduit.rst @@ -65,13 +65,13 @@ Setup $ rm 35a66d144d8def340278cd55080d5c745714aca4 $ mv angular-realworld-example-app-35a66d144d8def340278cd55080d5c745714aca4 frontend && cd frontend $ mkdir scripts - $ cd scripts && { curl -O https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/build.js ; cd -; } + $ cd scripts && { curl -O https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/build.js ; cd -; } $ sed -i 's/^\s*"build":\s.*$/ "build": "node scripts\/build",/' package.json $ sed -i 's/^\s*"rxjs":\s.*$/ "rxjs": "~6.3.3",/' package.json $ npm install - $ curl -O https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/update_env_endpoint.py + $ curl -O https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/update_env_endpoint.py $ cd .. - $ curl -O https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/runway.yml + $ curl -O https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/runway.yml .. tab:: Windows @@ -95,13 +95,13 @@ Setup $ Rename-Item angular-realworld-example-app-35a66d144d8def340278cd55080d5c745714aca4 frontend && cd frontend $ (gc .\package.json -raw).Replace("`"rxjs`": `"^6.2.1`"", "`"rxjs`": `"~6.3.3`"") | sc .\package.json $ mkdir scripts - $ Invoke-WebRequest "https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/build.js" -OutFile scripts/build.js + $ Invoke-WebRequest "https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/build.js" -OutFile scripts/build.js $ (gc .\package.json) -replace "^\s*`"build`":\s.*$", " `"build`": `"node scripts/build`"," | Out-File .\package.json -Force -Encoding UTF8 $ npm install - $ Invoke-WebRequest "https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/update_env_endpoint.py" -OutFile update_env_endpoint.py + $ Invoke-WebRequest "https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/update_env_endpoint.py" -OutFile update_env_endpoint.py $ cd .. - $ Invoke-WebRequest "https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/pyproject.toml" -OutFile pyproject.toml - $ Invoke-WebRequest "https://raw.githubusercontent.com/onicagroup/runway/master/quickstarts/conduit/runway.yml" -OutFile runway.yml + $ Invoke-WebRequest "https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/pyproject.toml" -OutFile pyproject.toml + $ Invoke-WebRequest "https://raw.githubusercontent.com/rackspace/runway/master/quickstarts/conduit/runway.yml" -OutFile runway.yml .. highlight:: sh diff --git a/docs/source/serverless/advanced_features.rst b/docs/source/serverless/advanced_features.rst index 6cae8571f..796a9e8e0 100644 --- a/docs/source/serverless/advanced_features.rst +++ b/docs/source/serverless/advanced_features.rst @@ -47,7 +47,7 @@ This functionality can be especially useful when used alongside :ref:`remote mod deployments: - modules: - - path: git::git://github.com/onicagroup/example.git//sampleapp?tag=v1.0.0 + - path: git::git://github.com/rackspace/example.git//sampleapp?tag=v1.0.0 options: extend_serverless_yml: custom: diff --git a/quickstarts/conduit/pyproject.toml b/quickstarts/conduit/pyproject.toml index 3c647bd2e..f97fd3530 100644 --- a/quickstarts/conduit/pyproject.toml +++ b/quickstarts/conduit/pyproject.toml @@ -2,7 +2,7 @@ name = "runway-quickstart-conduit" version = "0.0.0" authors = [ - "Onica Group LLC ", + "Rackspace Technology, Inc. ", ] description = "Runway Quickstart" license = "Apache-2.0" diff --git a/runway/_cli/commands/_new.py b/runway/_cli/commands/_new.py index e09aa4c1c..86625269c 100644 --- a/runway/_cli/commands/_new.py +++ b/runway/_cli/commands/_new.py @@ -15,7 +15,7 @@ LOGGER = cast("RunwayLogger", logging.getLogger(__name__.replace("._", "."))) RUNWAY_YML = """--- -# See full syntax at https://docs.onica.com/projects/runway +# See full syntax at https://runway.readthedocs.io deployments: - modules: - path: sampleapp.cfn diff --git a/runway/config/models/cfngin/_package_sources.py b/runway/config/models/cfngin/_package_sources.py index 4221d0bee..2fa524783 100644 --- a/runway/config/models/cfngin/_package_sources.py +++ b/runway/config/models/cfngin/_package_sources.py @@ -42,7 +42,7 @@ class GitCfnginPackageSourceDefinitionModel(ConfigProperty): uri: str = Field( ..., title="Git Repository URI", - examples=["git@github.com:onicagroup/runway.git"], + examples=["git@github.com:rackspace/runway.git"], ) class Config(ConfigProperty.Config): diff --git a/runway/templates/cdk-csharp/package.json b/runway/templates/cdk-csharp/package.json index 39a11b1ae..7081603dc 100644 --- a/runway/templates/cdk-csharp/package.json +++ b/runway/templates/cdk-csharp/package.json @@ -1,10 +1,10 @@ { - "author": "Onica", + "author": "Rackspace Technology, Inc.", "description": "Sample CDK Project", "devDependencies": { "aws-cdk": "^0.27.0" }, - "homepage": "https://www.onica.com", + "homepage": "https://www.rackspace.com", "main": "app.py", "name": "sampleapp", "private": true, diff --git a/runway/templates/cdk-py/package.json b/runway/templates/cdk-py/package.json index 09eff9f88..bdbea77c5 100644 --- a/runway/templates/cdk-py/package.json +++ b/runway/templates/cdk-py/package.json @@ -1,10 +1,10 @@ { - "author": "Onica", + "author": "Rackspace Technology, Inc.", "description": "Sample CDK Project", "devDependencies": { "aws-cdk": "^1.13.0" }, - "homepage": "https://www.onica.com", + "homepage": "https://www.rackspace.com", "main": "app.py", "name": "sampleapp", "private": true, diff --git a/runway/templates/cdk-py/pyproject.toml b/runway/templates/cdk-py/pyproject.toml index fdced52e0..cb51d4eaf 100644 --- a/runway/templates/cdk-py/pyproject.toml +++ b/runway/templates/cdk-py/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "runway-sample-cdk-py" version = "0.0.0" -authors = ["Onica Group LLC "] +authors = ["Rackspace Technology, Inc. "] description = "Runway Sample" license = "Apache-2.0" diff --git a/runway/templates/sls-py/pyproject.toml b/runway/templates/sls-py/pyproject.toml index c7702b999..d304b2bd5 100644 --- a/runway/templates/sls-py/pyproject.toml +++ b/runway/templates/sls-py/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "runway-sample-sls-py" version = "0.0.0" -authors = ["Onica Group LLC "] +authors = ["Rackspace Technology, Inc. "] description = "Runway Sample" license = "Apache-2.0" diff --git a/runway/utils/__init__.py b/runway/utils/__init__.py index a70560561..dc202d92f 100644 --- a/runway/utils/__init__.py +++ b/runway/utils/__init__.py @@ -37,7 +37,7 @@ from ..compat import Self AWS_ENV_VARS = ("AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN") -DOC_SITE = "https://docs.onica.com/projects/runway" +DOC_SITE = "https://runway.readthedocs.io" EMBEDDED_LIB_PATH = str(Path(__file__).resolve().parent / "embedded") LOGGER = logging.getLogger(__name__) diff --git a/tests/functional/cfngin/hooks/test_awslambda/sample_app/src/docker_xmlsec/pyproject.toml b/tests/functional/cfngin/hooks/test_awslambda/sample_app/src/docker_xmlsec/pyproject.toml index e971e267f..1e4263c55 100644 --- a/tests/functional/cfngin/hooks/test_awslambda/sample_app/src/docker_xmlsec/pyproject.toml +++ b/tests/functional/cfngin/hooks/test_awslambda/sample_app/src/docker_xmlsec/pyproject.toml @@ -2,7 +2,7 @@ name = "test-awslambda-xmlsec" version = "0.0.0" authors = [ - "Onica Group LLC ", + "Rackspace Technology, Inc. ", ] description = "Test for awslambda hook." license = "Apache-2.0" diff --git a/tests/integration/cli/commands/test_docs.py b/tests/integration/cli/commands/test_docs.py index 9e5f6bc6c..28233d93a 100644 --- a/tests/integration/cli/commands/test_docs.py +++ b/tests/integration/cli/commands/test_docs.py @@ -12,7 +12,7 @@ if TYPE_CHECKING: from unittest.mock import MagicMock -DOCS_URL = "https://docs.onica.com/projects/runway/" +DOCS_URL = "https://runway.readthedocs.io" @patch("click.launch") diff --git a/tests/integration/cli/commands/test_new.py b/tests/integration/cli/commands/test_new.py index da77ab412..7efc95c63 100644 --- a/tests/integration/cli/commands/test_new.py +++ b/tests/integration/cli/commands/test_new.py @@ -32,7 +32,7 @@ def test_new(cd_tmp_path: Path, caplog: pytest.LogCaptureFixture) -> None: assert caplog.messages == [ "runway.yml generated", "See addition getting started information at " - "https://docs.onica.com/projects/runway/page/getting_started.html", + "https://runway.readthedocs.io/stable/getting_started.html", ]