From f83b62720e76be89b0bb8f5cb36503d663832b99 Mon Sep 17 00:00:00 2001 From: Manish Khedawat Date: Fri, 29 Sep 2023 00:20:18 +0530 Subject: [PATCH] release 1.0.0-alpha-1 --- .github/ISSUE_TEMPLATE/bug_report.yml | 16 +- .github/ISSUE_TEMPLATE/config.yml | 5 +- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/config.yml | 4 +- .github/workflows/changelog.yml | 171 ------------- .github/workflows/homebrew.yml | 62 ----- .github/workflows/release-build.yml | 192 --------------- .github/workflows/release-publish.yml | 233 ------------------ .github/workflows/release-recurring.yml | 75 ------ .github/workflows/release-start.yml | 111 --------- .github/workflows/release.yml | 37 +++ .github/workflows/test.yml | 121 ++------- .npmrc | 1 + CODE_OF_CONDUCT.md | 5 - CONTRIBUTING.md | 4 +- LICENSE | 2 +- README.md | 46 ++-- SECURITY.md | 8 +- package-lock.json | 21 +- package.json | 14 +- packages/insomnia-inso/Dockerfile | 2 +- packages/insomnia-inso/README.md | 4 +- packages/insomnia-inso/package.json | 6 +- packages/insomnia-send-request/package.json | 2 +- packages/insomnia-smoke-test/package.json | 8 +- packages/insomnia-smoke-test/server/index.ts | 2 +- .../preferences-interactions.test.ts | 8 +- packages/insomnia-testing/package.json | 8 +- packages/insomnia/config/config.json | 22 +- packages/insomnia/electron-builder.config.js | 6 +- packages/insomnia/package.json | 14 +- .../src/common/__tests__/render.test.ts | 2 +- packages/insomnia/src/common/constants.ts | 4 +- packages/insomnia/src/common/render.ts | 2 +- packages/insomnia/src/main/window-utils.ts | 2 +- packages/insomnia/src/models/settings.ts | 6 +- .../sync/vcs/initialize-backend-project.ts | 4 +- .../dropdowns/workspace-sync-dropdown.tsx | 6 +- .../src/ui/components/error-boundary.tsx | 2 +- .../src/ui/components/github-stars-button.tsx | 6 +- .../modals/request-settings-modal.tsx | 2 +- .../ui/components/modals/settings-modal.tsx | 10 +- .../modals/workspace-settings-modal.tsx | 4 +- .../src/ui/components/settings/general.tsx | 28 +-- packages/insomnia/src/ui/routes/error.tsx | 2 +- .../insomnia/src/ui/routes/git-actions.tsx | 2 +- packages/insomnia/src/ui/routes/project.tsx | 4 +- packages/insomnia/src/ui/routes/root.tsx | 8 +- packages/insomnia/src/ui/sentry.ts | 4 +- .../src/utils/importers/importers/postman.ts | 2 +- packages/openapi-2-kong/package.json | 8 +- 51 files changed, 205 insertions(+), 1115 deletions(-) delete mode 100644 .github/workflows/changelog.yml delete mode 100644 .github/workflows/homebrew.yml delete mode 100644 .github/workflows/release-build.yml delete mode 100644 .github/workflows/release-publish.yml delete mode 100644 .github/workflows/release-recurring.yml delete mode 100644 .github/workflows/release-start.yml create mode 100644 .github/workflows/release.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 0f8fd4c3633..ee36ba279de 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,5 +1,5 @@ name: Bug Report -description: Report an Insomnia bug +description: Report an rest.ground bug labels: [B-bug, S-unverified] body: - type: textarea @@ -30,7 +30,7 @@ body: attributes: label: Is there an existing issue for this? options: - - label: I have searched the [issue tracker](https://www.github.com/Kong/insomnia/issues) for this problem. + - label: I have searched the [issue tracker](https://www.github.com/mkkhedawat/rest.ground/issues) for this problem. required: true - type: textarea attributes: @@ -38,7 +38,7 @@ body: description: If your problem needs further explanation, please add more information here. - type: input attributes: - label: Insomnia Version + label: rest.ground Version description: What version of Insmonia are you using? placeholder: "2021.5.0" validations: @@ -68,12 +68,12 @@ body: - type: input attributes: label: Installation method - description: How did you install Insomnia? - placeholder: "e.g. download from insomnia.rest, homebrew, apt, etc." + description: How did you install rest.ground? + placeholder: "e.g. download from github, homebrew, apt, etc." validations: required: true - type: input attributes: - label: Last Known Working Insomnia version - description: What is the last version of Insomnia this worked in, if applicable? - placeholder: "2021.4.0" + label: Last Known Working rest.ground version + description: What is the last version of rest.ground this worked in, if applicable? + placeholder: "0.1.0" diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index df835692ab0..6c678787ed7 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,8 +1,5 @@ blank_issues_enabled: true contact_links: - name: Feature Request - url: https://github.com/Kong/insomnia/discussions/categories/ideas + url: https://github.com/mkkhedawat/rest.ground/discussions/categories/ideas about: Search and submit ideas for this project - - name: Question - url: https://chat.insomnia.rest/ - about: Please ask and answer questions about Insomnia in our Slack Community diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 1b73b8d1618..db7ada71dd4 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,5 +1,5 @@