Skip to content

Commit edefe25

Browse files
Ronakkadhiclaude
andauthored
chore: update GitHub URL references after repo restructure (#16)
Updates references from `requestly/requestly` to the new locations: - `requestly/requestly` (bare repo URLs) → `requestly/interceptor` - `requestly/requestly-desktop-app` → `requestly/http-interceptor-desktop-app` Preserved (intentional refs): - `requestly/requestly/issues/N` and `requestly/requestly/pull/N` — those specific numbered items live on the old repo and continue to work via that URL - README.md ecosystem banner and 'A note on this repository' (intentional refs to the future API Client community hub) - All Issue Forms (.github/ISSUE_TEMPLATE/*.yml) — product-routing refs to API Client - npm package names like `@requestly/requestly-core` (not URLs) - Other repos in the org like `requestly-mock-server`, `requestly-web-sdk`, etc. (those are separate repos, already correct) Touched 17 files: package.json (top + app + 4 browser-extension), CONTRIBUTING.md, in-app config/links/header constants, documentation .mdx files. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 35b44c5 commit edefe25

17 files changed

Lines changed: 26 additions & 26 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ We adhere to the [Requestly code of conduct](./CODE_OF_CONDUCT.md) and by partic
1111

1212
## Reporting issues
1313

14-
We use [Github issues](https://github.com/requestly/requestly/issues) to track feature requests and bugs. Please check existing issues before filing anything new. We do our best to respond to the issues as earliest as possible.
14+
We use [Github issues](https://github.com/requestly/interceptor/issues) to track feature requests and bugs. Please check existing issues before filing anything new. We do our best to respond to the issues as earliest as possible.
1515

1616
If you would like to contribute a fix, please let us know by leaving a comment on the issue.
1717

1818
## Pull Requests
1919

20-
Before submitting any pull request (PR), it is recommended that you first log an issue [here](https://github.com/requestly/requestly/issues) and explain your solution in comments if it is more than a typo fix. It is always a good idea to gather feedback from the team to reduce the number of iterations in code review.
20+
Before submitting any pull request (PR), it is recommended that you first log an issue [here](https://github.com/requestly/interceptor/issues) and explain your solution in comments if it is more than a typo fix. It is always a good idea to gather feedback from the team to reduce the number of iterations in code review.
2121

2222
Please note that we have multiple Git repositories. The [Development](#development) section below will help you find the right repo to make changes in. But the issues are still managed centrally in this repository.
2323

@@ -33,7 +33,7 @@ All submissions require code review from team. So, please be patient. In case yo
3333
Requestly is composed of multiple modules:
3434
- [Browser extension](./browser-extension)
3535
- [UI application](./app)
36-
- [Desktop application](https://github.com/requestly/requestly-desktop-app) (Electron-based application for MacOS, Windows)
36+
- [Desktop application](https://github.com/requestly/http-interceptor-desktop-app) (Electron-based application for MacOS, Windows)
3737
- [Mobile SDK](https://github.com/requestly/requestly-android-sdk) (to debug mobile apps)
3838
- [Web SDK](https://github.com/requestly/requestly-web-sdk) (facilitates SessionBook)
3939
- [Mock Server](https://github.com/requestly/requestly-mock-server)

app/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ npm install
1919

2020
### Prerequisite - Build and Install Local Extension
2121
Some features require the Requestly Extension to be installed. Follow the steps below to build and install the extension
22-
https://github.com/requestly/requestly/blob/master/browser-extension/mv3/README.md
22+
https://github.com/requestly/interceptor/blob/master/browser-extension/mv3/README.md
2323

2424
### Build WebApp
2525
```

app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"main": "index.js",
77
"repository": {
88
"type": "git",
9-
"url": "git+https://github.com/requestly/requestly.git",
9+
"url": "git+https://github.com/requestly/interceptor.git",
1010
"directory": "app"
1111
},
1212
"bugs": {
13-
"url": "https://github.com/requestly/requestly/issues"
13+
"url": "https://github.com/requestly/interceptor/issues"
1414
},
1515
"author": {
1616
"name": "Requestly",

app/src/config/constants/sub/links.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ const LINKS = {
168168

169169
API_CLIENT_LOCAL_FIRST_ANNOUNCEMENT: "https://github.com/requestly/requestly/issues/2629",
170170

171-
REQUESTLY_GITHUB: "https://github.com/requestly/requestly",
171+
REQUESTLY_GITHUB: "https://github.com/requestly/interceptor",
172172

173173
OAUTH_REDIRECT_URL: `${process.env.VITE_BACKEND_BASE_URL}/oauth/authorize`,
174174

app/src/layouts/DashboardLayout/MenuHeader/MenuHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const MenuHeader = () => {
3232
return (
3333
<span className="github-star-button" onClick={() => trackHeaderClicked("github_star_button")}>
3434
<GitHubButton
35-
href="https://github.com/requestly/requestly"
35+
href="https://github.com/requestly/interceptor"
3636
data-color-scheme="dark_dimmed"
3737
data-text="Star"
3838
data-show-count="true"

app/src/lib/design-system-v2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- Install this extension https://marketplace.visualstudio.com/items?itemName=vunguyentuan.vscode-css-variables
66

77
## Adding Token
8-
- Update `theme.css`: After adding color tokens, please update the [theme.css](https://github.com/requestly/requestly/blob/master/app/src/lib/design-system-v2/helpers/theme.css) file by uncommenting these lines https://github.com/requestly/requestly/blob/09c6eaf3a1126552ecf5e4c4aced423e005d1272/app/src/lib/design-system-v2/helpers/ThemeProvider.tsx#L42-L47
8+
- Update `theme.css`: After adding color tokens, please update the [theme.css](https://github.com/requestly/interceptor/blob/master/app/src/lib/design-system-v2/helpers/theme.css) file by uncommenting these lines https://github.com/requestly/interceptor/blob/09c6eaf3a1126552ecf5e4c4aced423e005d1272/app/src/lib/design-system-v2/helpers/ThemeProvider.tsx#L42-L47
99

1010
## Usage
1111

app/src/src-SessionBear/components/MenuHeader/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const MenuHeader = () => {
6060
<GitHubButton
6161
style={{ display: "flex" }}
6262
className="github-star-button"
63-
href="https://github.com/requestly/requestly"
63+
href="https://github.com/requestly/interceptor"
6464
data-color-scheme="dark_dimmed"
6565
data-text="Star"
6666
data-show-count="true"

browser-extension/common/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"private": true,
77
"repository": {
88
"type": "git",
9-
"url": "git+https://github.com/requestly/requestly.git",
9+
"url": "git+https://github.com/requestly/interceptor.git",
1010
"directory": "browser-extension/common"
1111
},
1212
"author": {
@@ -20,7 +20,7 @@
2020
},
2121
"license": "SEE LICENSE IN LICENSE",
2222
"bugs": {
23-
"url": "https://github.com/requestly/requestly/issues"
23+
"url": "https://github.com/requestly/interceptor/issues"
2424
},
2525
"scripts": {
2626
"preinstall": "sh ./scripts/build-analytics-vendor.sh",

browser-extension/config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"private": true,
77
"repository": {
88
"type": "git",
9-
"url": "git+https://github.com/requestly/requestly.git",
9+
"url": "git+https://github.com/requestly/interceptor.git",
1010
"directory": "browser-extension/config"
1111
},
1212
"bugs": {
13-
"url": "https://github.com/requestly/requestly/issues"
13+
"url": "https://github.com/requestly/interceptor/issues"
1414
},
1515
"author": {
1616
"name": "Requestly",

browser-extension/mv3/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"private": true,
77
"repository": {
88
"type": "git",
9-
"url": "git+https://github.com/requestly/requestly.git",
9+
"url": "git+https://github.com/requestly/interceptor.git",
1010
"directory": "browser-extension/mv3"
1111
},
1212
"bugs": {
13-
"url": "https://github.com/requestly/requestly/issues"
13+
"url": "https://github.com/requestly/interceptor/issues"
1414
},
1515
"author": {
1616
"name": "Requestly",

0 commit comments

Comments
 (0)