Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "openapi-workspaces",
"license": "MIT",
"private": true,
"version": "1.0.5",
"version": "1.0.6",
"workspaces": [
"projects/json-pointer-helpers",
"projects/openapi-io",
Expand Down
2 changes: 1 addition & 1 deletion projects/json-pointer-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/json-pointer-helpers",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "1.0.5",
"version": "1.0.6",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion projects/openapi-io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/openapi-io",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "1.0.5",
"version": "1.0.6",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion projects/openapi-utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/openapi-utilities",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "1.0.5",
"version": "1.0.6",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion projects/optic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/optic",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "1.0.5",
"version": "1.0.6",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,20 +433,20 @@ exports[`diff reads optic.dev.yml for rulesets 1`] = `
`;

exports[`diff two files, no repo or config 1`] = `
"Empty example-api-v0.json
"✔ Empty example-api-v0.json
Operations: 4 operations changed

PATCH /example:
✔ PATCH /example:
- /operationId changed

- response 200: added
PUT /example:
✔ PUT /example:
- /operationId changed

POST /example:
✔ POST /example:
- /operationId changed

GET /example:
✔ GET /example:
- /operationId changed

Rerun this command with the --web flag to view the detailed changes in your browser
Expand Down
2 changes: 1 addition & 1 deletion projects/optic/src/commands/diff/diff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export const registerDiff = (
.choices(['strict', 'loose'])
.default('strict')
)
.option('-c, --check', 'Enable checks', false)
.option('-c, --check', 'Enable checks', true)
.option('-u, --upload', 'Upload run to cloud', false)
.option('-w, --web', 'View the diff in the Optic changelog web view', false)
.option(
Expand Down
2 changes: 1 addition & 1 deletion projects/optic/src/commands/login/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { OpticCliConfig } from '../../config';
import { errorHandler } from '../../error-handler';
export const registerLogin = (cli: Command, config: OpticCliConfig) => {
cli
.command('login')
.command('login', { hidden: true })
.description('Login to Optic')
.action(errorHandler(getLoginAction(config), { command: 'login' }));
};
Expand Down
2 changes: 1 addition & 1 deletion projects/rulesets-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/rulesets-base",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "1.0.5",
"version": "1.0.6",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion projects/standard-rulesets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/standard-rulesets",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "1.0.5",
"version": "1.0.6",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
Loading