Merge branch 'release/2021.7.0-beta.0' into develop

This commit is contained in:
Opender Singh 2021-12-09 11:50:40 +13:00
commit 4da3a75bf3
68 changed files with 133 additions and 147 deletions

View File

@ -1,6 +1,6 @@
{
"tagVersionPrefix": "lib@",
"version": "2.4.0",
"version": "2.4.1",
"includeMergedTags": true,
"command": {
"version": {

View File

@ -16,10 +16,10 @@
"lint:markdown": "markdownlint-cli2 \"**/*.md\" \"#**/node_modules\"",
"lint:fix": "lerna run lint:fix --stream --no-bail",
"bootstrap": "npm install && lerna bootstrap && lerna run --stream bootstrap",
"version": "lerna version --exact --preid alpha",
"version": "lerna version --exact --preid beta",
"version:all": "npm run version -- --force-publish",
"version:dry": "npm run version -- --no-git-tag-version",
"release": "lerna publish from-git --pre-dist-tag alpha --no-verify-access --yes",
"release": "lerna publish from-git --pre-dist-tag beta --no-verify-access --yes",
"clean": "lerna run clean --parallel --stream && lerna clean --yes && rimraf node_modules",
"test": "lerna run --stream --parallel test",
"inso-start": "npm start --prefix packages/insomnia-inso",

View File

@ -14,6 +14,7 @@ import { ModalBody } from '../base/modal-body';
import { ModalFooter } from '../base/modal-footer';
import { ModalHeader } from '../base/modal-header';
import { CookieList, CookieListProps } from '../cookie-list';
import { showModal } from '.';
interface Props extends ModalProps {
handleShowModifyCookieModal: CookieListProps['handleShowModifyCookieModal'];
@ -28,7 +29,7 @@ interface State {
}
@autoBindMethodsForReact(AUTOBIND_CFG)
class CookiesModalInternal extends PureComponent<Props, State> {
class CookiesModal extends PureComponent<Props, State> {
modal: Modal | null = null;
filterInput: HTMLInputElement | null = null;
@ -206,10 +207,12 @@ class CookiesModalInternal extends PureComponent<Props, State> {
}
}
const CookiesModalFCRF: ForwardRefRenderFunction<CookiesModalInternal, Omit<Props, 'handleRender'>> = (props, ref) => {
const CookiesModalFCRF: ForwardRefRenderFunction<CookiesModal, Omit<Props, 'handleRender'>> = (props, ref) => {
const { handleRender } = useNunjucks();
return <CookiesModalInternal ref={ref} {...props} handleRender={handleRender} />;
return <CookiesModal ref={ref} {...props} handleRender={handleRender} />;
};
export const CookiesModal = forwardRef(CookiesModalFCRF);
export const CookiesModalFC = forwardRef(CookiesModalFCRF);
export const showCookiesModal = () => showModal(CookiesModal);

View File

@ -36,7 +36,6 @@ import { PlaceholderResponsePane } from './placeholder-response-pane';
interface Props {
handleSetFilter: (filter: string) => void;
showCookiesModal: Function;
handleSetPreviewMode: Function;
handleSetActiveResponse: Function;
handleDeleteResponses: Function;
@ -242,7 +241,6 @@ export class ResponsePane extends PureComponent<Props> {
requestVersions,
response,
responses,
showCookiesModal,
} = this.props;
if (!request) {
@ -353,7 +351,6 @@ export class ResponsePane extends PureComponent<Props> {
handleShowRequestSettings={handleShowRequestSettings}
cookiesSent={response.settingSendCookies}
cookiesStored={response.settingStoreCookies}
showCookiesModal={showCookiesModal}
headers={cookieHeaders}
/>
</ErrorBoundary>

View File

@ -3,9 +3,9 @@ import React, { PureComponent } from 'react';
import { Cookie } from 'tough-cookie';
import { AUTOBIND_CFG } from '../../../common/constants';
import { showCookiesModal } from '../modals/cookies-modal';
interface Props {
showCookiesModal: Function;
cookiesSent?: boolean | null;
cookiesStored?: boolean | null;
headers: any[];
@ -33,7 +33,7 @@ export class ResponseCookiesViewer extends PureComponent<Props> {
}
render() {
const { headers, showCookiesModal, cookiesSent, cookiesStored } = this.props;
const { headers, cookiesSent, cookiesStored } = this.props;
const notifyNotStored = !cookiesStored && headers.length;
let noticeMessage: string | null = null;
@ -65,7 +65,7 @@ export class ResponseCookiesViewer extends PureComponent<Props> {
<tbody>{!headers.length ? this.renderRow(null, -1) : headers.map(this.renderRow)}</tbody>
</table>
<p className="pad-top">
<button className="pull-right btn btn--clicky" onClick={() => showCookiesModal()}>
<button className="pull-right btn btn--clicky" onClick={showCookiesModal}>
Manage Cookies
</button>
</p>

View File

@ -10,6 +10,7 @@ import { isCollection, isDesign } from '../../models/workspace';
import { EnvironmentsDropdown } from './dropdowns/environments-dropdown';
import { SyncDropdown } from './dropdowns/sync-dropdown';
import { ErrorBoundary } from './error-boundary';
import { showCookiesModal } from './modals/cookies-modal';
import { PageLayout } from './page-layout';
import { GrpcRequestPane } from './panes/grpc-request-pane';
import { GrpcResponsePane } from './panes/grpc-response-pane';
@ -37,7 +38,6 @@ interface Props {
handleSetActiveResponse: Function;
handleSetPreviewMode: Function;
handleSetResponseFilter: (filter: string) => void;
handleShowCookiesModal: Function;
handleShowRequestSettingsModal: Function;
handleSidebarSort: (sortOrder: SortOrder) => void;
handleUpdateRequestAuthentication: (r: Request, auth: RequestAuthentication) => Promise<Request>;
@ -94,7 +94,6 @@ export class WrapperDebug extends PureComponent<Props> {
handleChangeEnvironment,
handleRequestCreate,
handleRequestGroupCreate,
handleShowCookiesModal,
handleSidebarSort,
} = this.props;
const {
@ -131,8 +130,7 @@ export class WrapperDebug extends PureComponent<Props> {
environmentHighlightColorStyle={settings.environmentHighlightColorStyle}
hotKeyRegistry={settings.hotKeyRegistry}
/>
{/* @ts-expect-error -- TSCONVERSION onClick event doesn't matter */}
<button className="btn btn--super-compact" onClick={handleShowCookiesModal}>
<button className="btn btn--super-compact" onClick={showCookiesModal}>
<div className="sidebar__menu__thing">
<span>Cookies</span>
</div>
@ -264,7 +262,6 @@ export class WrapperDebug extends PureComponent<Props> {
handleSetActiveResponse,
handleSetPreviewMode,
handleSetResponseFilter,
handleShowCookiesModal,
handleShowRequestSettingsModal,
} = this.props;
const {
@ -309,7 +306,6 @@ export class WrapperDebug extends PureComponent<Props> {
handleSetFilter={handleSetResponseFilter}
handleSetPreviewMode={handleSetPreviewMode}
handleShowRequestSettings={handleShowRequestSettingsModal}
showCookiesModal={handleShowCookiesModal}
hotKeyRegistry={settings.hotKeyRegistry}
loadStartTime={loadStartTime}
previewMode={responsePreviewMode}

View File

@ -43,7 +43,7 @@ import { AddKeyCombinationModal } from './modals/add-key-combination-modal';
import { AlertModal } from './modals/alert-modal';
import { AskModal } from './modals/ask-modal';
import { CodePromptModal } from './modals/code-prompt-modal';
import { CookiesModal } from './modals/cookies-modal';
import { CookiesModalFC } from './modals/cookies-modal';
import { EnvironmentEditModal } from './modals/environment-edit-modal';
import { ErrorModal } from './modals/error-modal';
import { ExportRequestsModal } from './modals/export-requests-modal';
@ -313,10 +313,6 @@ export class Wrapper extends PureComponent<WrapperProps, State> {
showModal(WorkspaceEnvironmentsEditModal, this.props.activeWorkspace);
}
_handleShowCookiesModal() {
showModal(CookiesModal, this.props.activeWorkspace);
}
static _handleShowModifyCookieModal(cookie: Cookie) {
showModal(CookieModifyModal, cookie);
}
@ -552,7 +548,7 @@ export class Wrapper extends PureComponent<WrapperProps, State> {
{activeWorkspace ? <>
{/* TODO: Figure out why cookieJar is sometimes null */}
{activeCookieJar ? <>
<CookiesModal
<CookiesModalFC
ref={registerModal}
handleShowModifyCookieModal={Wrapper._handleShowModifyCookieModal}
workspace={activeWorkspace}
@ -720,7 +716,6 @@ export class Wrapper extends PureComponent<WrapperProps, State> {
handleSetActiveResponse={this._handleSetActiveResponse}
handleSetPreviewMode={this._handleSetPreviewMode}
handleSetResponseFilter={this._handleSetResponseFilter}
handleShowCookiesModal={this._handleShowCookiesModal}
handleShowRequestSettingsModal={this._handleShowRequestSettingsModal}
handleSidebarSort={handleSidebarSort}
handleUpdateRequestAuthentication={Wrapper._handleUpdateRequestAuthentication}

View File

@ -65,7 +65,7 @@ import * as templating from '../../templating/index';
import { ErrorBoundary } from '../components/error-boundary';
import { KeydownBinder } from '../components/keydown-binder';
import { AskModal } from '../components/modals/ask-modal';
import { CookiesModal } from '../components/modals/cookies-modal';
import { showCookiesModal } from '../components/modals/cookies-modal';
import { GenerateCodeModal } from '../components/modals/generate-code-modal';
import { showAlert, showModal, showPrompt } from '../components/modals/index';
import { RequestCreateModal } from '../components/modals/request-create-modal';
@ -251,13 +251,7 @@ class App extends PureComponent<AppProps, State> {
showModal(WorkspaceEnvironmentsEditModal, activeWorkspace);
},
],
[
hotKeyRefs.SHOW_COOKIES_EDITOR,
() => {
const { activeWorkspace } = this.props;
showModal(CookiesModal, activeWorkspace);
},
],
[hotKeyRefs.SHOW_COOKIES_EDITOR, showCookiesModal],
[
hotKeyRefs.REQUEST_QUICK_CREATE,
async () => {

View File

@ -34,6 +34,7 @@
color: var(--color-font-surprise);
background-color: var(--color-surprise);
transition: none;
&:hover {
filter: brightness(0.8);

View File

@ -1,5 +1,5 @@
{
"version": "2021.6.0",
"version": "2021.7.0",
"name": "insomnia",
"executableName": "insomnia",
"appId": "com.insomnia.app",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-app",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"private": true,
"version": "2.4.0",
"version": "2.4.1",
"name": "insomnia-app",
"homepage": "https://konghq.com",
"description": "The Collaborative API Design Tool",
@ -101,30 +101,30 @@
"html-entities": "^1.2.0",
"httpsnippet": "^1.23.0",
"iconv-lite": "^0.4.15",
"insomnia-common": "2.4.0",
"insomnia-components": "2.4.0",
"insomnia-config": "2.4.0",
"insomnia-cookies": "2.4.0",
"insomnia-importers": "2.4.0",
"insomnia-plugin-base64": "2.4.0",
"insomnia-plugin-cookie-jar": "2.4.0",
"insomnia-plugin-core-themes": "2.4.0",
"insomnia-plugin-file": "2.4.0",
"insomnia-plugin-hash": "2.4.0",
"insomnia-plugin-jsonpath": "2.4.0",
"insomnia-plugin-kong-declarative-config": "2.4.0",
"insomnia-plugin-kong-kubernetes-config": "2.4.0",
"insomnia-plugin-kong-portal": "2.4.0",
"insomnia-plugin-now": "2.4.0",
"insomnia-plugin-os": "2.4.0",
"insomnia-plugin-prompt": "2.4.0",
"insomnia-plugin-request": "2.4.0",
"insomnia-plugin-response": "2.4.0",
"insomnia-plugin-uuid": "2.4.0",
"insomnia-prettify": "2.4.0",
"insomnia-testing": "2.4.0",
"insomnia-url": "2.4.0",
"insomnia-xpath": "2.4.0",
"insomnia-common": "2.4.1",
"insomnia-components": "2.4.1",
"insomnia-config": "2.4.1",
"insomnia-cookies": "2.4.1",
"insomnia-importers": "2.4.1",
"insomnia-plugin-base64": "2.4.1",
"insomnia-plugin-cookie-jar": "2.4.1",
"insomnia-plugin-core-themes": "2.4.1",
"insomnia-plugin-file": "2.4.1",
"insomnia-plugin-hash": "2.4.1",
"insomnia-plugin-jsonpath": "2.4.1",
"insomnia-plugin-kong-declarative-config": "2.4.1",
"insomnia-plugin-kong-kubernetes-config": "2.4.1",
"insomnia-plugin-kong-portal": "2.4.1",
"insomnia-plugin-now": "2.4.1",
"insomnia-plugin-os": "2.4.1",
"insomnia-plugin-prompt": "2.4.1",
"insomnia-plugin-request": "2.4.1",
"insomnia-plugin-response": "2.4.1",
"insomnia-plugin-uuid": "2.4.1",
"insomnia-prettify": "2.4.1",
"insomnia-testing": "2.4.1",
"insomnia-url": "2.4.1",
"insomnia-xpath": "2.4.1",
"isomorphic-git": "^1.8.1",
"js-yaml": "^3.14.1",
"jshint": "^2.11.1",
@ -143,7 +143,7 @@
"nunjucks": "^3.2.0",
"oauth-1.0a": "^2.2.2",
"objectpath": "^2.0.0",
"openapi-2-kong": "2.4.0",
"openapi-2-kong": "2.4.1",
"papaparse": "^5.2.0",
"pdfjs-dist": "^2.5.207",
"prettier": "2.4.1",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-common",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-common",
"version": "2.4.0",
"version": "2.4.1",
"homepage": "https://insomnia.rest",
"description": "Top-level entities and utilities for Insomnia",
"author": "Kong <office@konghq.com>",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-components",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-components",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Insomnia UI component library",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-config",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-config",
"version": "2.4.0",
"version": "2.4.1",
"homepage": "https://insomnia.rest",
"description": "Configuration for Insomnia",
"author": "Kong <office@konghq.com>",
@ -29,7 +29,7 @@
"dependencies": {
"@apideck/better-ajv-errors": "^0.2.6",
"ajv": "^8.6.2",
"insomnia-common": "2.4.0"
"insomnia-common": "2.4.1"
},
"devDependencies": {
"jest": "^26.6.3",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-cookies",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-cookies",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Cookie utilities",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-importers",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-importers",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Various data importers for Insomnia",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-inso",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-inso",
"version": "2.4.0",
"version": "2.4.1",
"homepage": "https://insomnia.rest",
"description": "A CLI for Insomnia - The Collaborative API Design Tool",
"author": "Kong <office@konghq.com>",
@ -73,24 +73,24 @@
"consola": "^2.15.0",
"cosmiconfig": "^6.0.0",
"enquirer": "^2.3.6",
"insomnia-plugin-base64": "2.4.0",
"insomnia-plugin-cookie-jar": "2.4.0",
"insomnia-plugin-core-themes": "2.4.0",
"insomnia-plugin-file": "2.4.0",
"insomnia-plugin-hash": "2.4.0",
"insomnia-plugin-jsonpath": "2.4.0",
"insomnia-plugin-now": "2.4.0",
"insomnia-plugin-os": "2.4.0",
"insomnia-plugin-prompt": "2.4.0",
"insomnia-plugin-request": "2.4.0",
"insomnia-plugin-response": "2.4.0",
"insomnia-plugin-uuid": "2.4.0",
"insomnia-send-request": "2.4.0",
"insomnia-testing": "2.4.0",
"insomnia-plugin-base64": "2.4.1",
"insomnia-plugin-cookie-jar": "2.4.1",
"insomnia-plugin-core-themes": "2.4.1",
"insomnia-plugin-file": "2.4.1",
"insomnia-plugin-hash": "2.4.1",
"insomnia-plugin-jsonpath": "2.4.1",
"insomnia-plugin-now": "2.4.1",
"insomnia-plugin-os": "2.4.1",
"insomnia-plugin-prompt": "2.4.1",
"insomnia-plugin-request": "2.4.1",
"insomnia-plugin-response": "2.4.1",
"insomnia-plugin-uuid": "2.4.1",
"insomnia-send-request": "2.4.1",
"insomnia-testing": "2.4.1",
"lodash.flattendeep": "^4.4.0",
"mkdirp": "^1.0.4",
"nedb": "^1.8.0",
"openapi-2-kong": "2.4.0",
"openapi-2-kong": "2.4.1",
"ramda": "^0.27.1",
"ramda-adjunct": "^2.33.0",
"string-argv": "^0.3.1",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-prettify",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Prettification utilities for Insomnia",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-send-request",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "insomnia-send-request",
"license": "Apache-2.0",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"main": "dist/index.js",
"types": "dist/send-request/index.d.ts",
@ -18,10 +18,10 @@
"hkdf": "0.0.2",
"html-entities": "^1.3.1",
"httpsnippet": "^1.22.0",
"insomnia-common": "2.4.0",
"insomnia-config": "2.4.0",
"insomnia-importers": "2.4.0",
"insomnia-testing": "2.4.0",
"insomnia-common": "2.4.1",
"insomnia-config": "2.4.1",
"insomnia-importers": "2.4.1",
"insomnia-testing": "2.4.1",
"isomorphic-git": "^1.5.0",
"jshint": "^2.11.1",
"jsonlint": "^1.6.3",
@ -35,7 +35,7 @@
"node-libcurl": "2.3.3",
"nunjucks": "^3.2.1",
"oauth-1.0a": "^2.2.6",
"openapi-2-kong": "2.4.0",
"openapi-2-kong": "2.4.1",
"ramda": "^0.27.1",
"ramda-adjunct": "^2.33.0",
"tough-cookie": "^4.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-smoke-test",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -11,7 +11,7 @@
"bugs": {
"url": "https://github.com/kong/insomnia/issues"
},
"version": "2.4.0",
"version": "2.4.1",
"scripts": {
"bootstrap": "npm run build",
"lint": "eslint . --ext .js,.ts,.tsx",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-testing",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "insomnia-testing",
"license": "Apache-2.0",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-url",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "URL Utilities",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-xpath",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-xpath",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Query XML using XPath",
"license": "MIT",
@ -32,7 +32,7 @@
"@types/xmldom": "0.1.30"
},
"dependencies": {
"insomnia-cookies": "2.4.0",
"insomnia-cookies": "2.4.1",
"xmldom": "^0.5.0",
"xpath": "0.0.27"
},

View File

@ -1,6 +1,6 @@
{
"name": "openapi-2-kong",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "openapi-2-kong",
"license": "Apache-2.0",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@ -1,5 +1,5 @@
{
"name": "insomnia-plugin-base64",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1
}

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-base64",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Insomnia base64 template tag",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-cookie-jar",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-cookie-jar",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"contributors": [
{
@ -27,7 +27,7 @@
"test": "jest --silent"
},
"dependencies": {
"insomnia-cookies": "2.4.0"
"insomnia-cookies": "2.4.1"
},
"gitHead": "e46bf021cf4b4379e31d2b2d9025d476d6839fa1"
}

View File

@ -1,5 +1,5 @@
{
"name": "insomnia-plugin-core-themes",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1
}

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-core-themes",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Insomnia core themes",
"license": "MIT",

View File

@ -1,5 +1,5 @@
{
"name": "insomnia-plugin-default-headers",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1
}

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-default-headers",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Various data importers for Insomnia",
"license": "MIT",

View File

@ -1,5 +1,5 @@
{
"name": "insomnia-plugin-file",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1
}

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-file",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Insomnia file templte tag",
"license": "MIT",

View File

@ -1,5 +1,5 @@
{
"name": "insomnia-plugin-hash",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1
}

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-hash",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Insomnia hash template tag",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-jsonpath",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-jsonpath",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Template tag to pull data from JSON strings",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-kong-declarative-config",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-kong-declarative-config",
"version": "2.4.0",
"version": "2.4.1",
"main": "index.js",
"author": "Kong <office@konghq.com>",
"license": "Apache-2.0",
@ -18,7 +18,7 @@
"unlisted": true
},
"dependencies": {
"openapi-2-kong": "2.4.0",
"openapi-2-kong": "2.4.1",
"yaml": "^1.8.3"
},
"gitHead": "d91e6735a76295166545a42c170328da4ab70dd3"

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-kong-kubernetes-config",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-kong-kubernetes-config",
"version": "2.4.0",
"version": "2.4.1",
"main": "index.js",
"author": "Kong <office@konghq.com>",
"license": "Apache-2.0",
@ -18,7 +18,7 @@
"unlisted": true
},
"dependencies": {
"openapi-2-kong": "2.4.0",
"openapi-2-kong": "2.4.1",
"yaml": "^1.8.3"
},
"gitHead": "d91e6735a76295166545a42c170328da4ab70dd3"

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-kong-portal",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-kong-portal",
"version": "2.4.0",
"version": "2.4.1",
"main": "dist/index.js",
"author": "Kong <office@konghq.com>",
"license": "Apache-2.0",
@ -31,7 +31,7 @@
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"autobind-decorator": "^2.4.0",
"insomnia-components": "2.4.0",
"insomnia-components": "2.4.1",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"styled-components": "^4.4.1",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-now",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-now",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Insomnia now template tag",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-os",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-os",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Template tag to get information about the OS",
"license": "MIT",

View File

@ -1,5 +1,5 @@
{
"name": "insomnia-plugin-prompt",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1
}

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-prompt",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Insomnia prompt template tag",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-request",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-request",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Insomnia request template tag",
"license": "MIT",
@ -21,8 +21,8 @@
"test": "jest --silent"
},
"dependencies": {
"insomnia-cookies": "2.4.0",
"insomnia-url": "2.4.0"
"insomnia-cookies": "2.4.1",
"insomnia-url": "2.4.1"
},
"gitHead": "d91e6735a76295166545a42c170328da4ab70dd3"
}

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-response",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-response",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Insomnia response template tag",
"license": "MIT",
@ -22,7 +22,7 @@
},
"dependencies": {
"iconv-lite": "^0.4.19",
"insomnia-xpath": "2.4.0",
"insomnia-xpath": "2.4.1",
"jsonpath-plus": "^6.0.1"
},
"gitHead": "e46bf021cf4b4379e31d2b2d9025d476d6839fa1"

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-uuid",
"version": "2.4.0",
"version": "2.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "insomnia-plugin-uuid",
"version": "2.4.0",
"version": "2.4.1",
"author": "Kong <office@konghq.com>",
"description": "Insomnia uuid template tag",
"license": "MIT",