Merge remote-tracking branch 'origin/feature/openapi-add-yaml-support' into feature/openapi-add-yaml-support

This commit is contained in:
Sebastien Dionne 2023-10-22 18:28:47 -04:00
commit ddc2740b31
8 changed files with 37 additions and 26 deletions

32
package-lock.json generated
View File

@ -16534,7 +16534,7 @@
"@tabler/icons": "^1.46.0",
"@tippyjs/react": "^4.2.6",
"@usebruno/graphql-docs": "0.1.0",
"@usebruno/schema": "0.5.0",
"@usebruno/schema": "0.6.0",
"axios": "^0.26.0",
"classnames": "^2.3.1",
"codemirror": "^5.65.2",
@ -16625,11 +16625,11 @@
},
"packages/bruno-cli": {
"name": "@usebruno/cli",
"version": "0.14.0",
"version": "0.15.0",
"license": "MIT",
"dependencies": {
"@usebruno/js": "0.8.0",
"@usebruno/lang": "0.8.0",
"@usebruno/js": "0.9.0",
"@usebruno/lang": "0.9.0",
"axios": "^1.5.1",
"chai": "^4.3.7",
"chalk": "^3.0.0",
@ -16720,9 +16720,9 @@
"version": "v0.27.0",
"dependencies": {
"@aws-sdk/credential-providers": "^3.425.0",
"@usebruno/js": "0.8.0",
"@usebruno/lang": "0.8.0",
"@usebruno/schema": "0.5.0",
"@usebruno/js": "0.9.0",
"@usebruno/lang": "0.9.0",
"@usebruno/schema": "0.6.0",
"about-window": "^1.15.2",
"aws4-axios": "^3.3.0",
"axios": "^1.5.1",
@ -16945,7 +16945,7 @@
},
"packages/bruno-js": {
"name": "@usebruno/js",
"version": "0.8.0",
"version": "0.9.0",
"license": "MIT",
"dependencies": {
"@usebruno/query": "0.1.0",
@ -16994,7 +16994,7 @@
},
"packages/bruno-lang": {
"name": "@usebruno/lang",
"version": "0.8.0",
"version": "0.9.0",
"license": "MIT",
"dependencies": {
"arcsecond": "^5.0.0",
@ -17031,7 +17031,7 @@
},
"packages/bruno-schema": {
"name": "@usebruno/schema",
"version": "0.5.0",
"version": "0.6.0",
"license": "MIT",
"peerDependencies": {
"yup": "^0.32.11"
@ -20595,7 +20595,7 @@
"@tabler/icons": "^1.46.0",
"@tippyjs/react": "^4.2.6",
"@usebruno/graphql-docs": "0.1.0",
"@usebruno/schema": "0.5.0",
"@usebruno/schema": "0.6.0",
"axios": "^0.26.0",
"babel-loader": "^8.2.3",
"classnames": "^2.3.1",
@ -20677,8 +20677,8 @@
"@usebruno/cli": {
"version": "file:packages/bruno-cli",
"requires": {
"@usebruno/js": "0.8.0",
"@usebruno/lang": "0.8.0",
"@usebruno/js": "0.9.0",
"@usebruno/lang": "0.9.0",
"axios": "^1.5.1",
"chai": "^4.3.7",
"chalk": "^3.0.0",
@ -21624,9 +21624,9 @@
"version": "file:packages/bruno-electron",
"requires": {
"@aws-sdk/credential-providers": "^3.425.0",
"@usebruno/js": "0.8.0",
"@usebruno/lang": "0.8.0",
"@usebruno/schema": "0.5.0",
"@usebruno/js": "0.9.0",
"@usebruno/lang": "0.9.0",
"@usebruno/schema": "0.6.0",
"about-window": "^1.15.2",
"aws4-axios": "^3.3.0",
"axios": "^1.5.1",

View File

@ -19,7 +19,7 @@
"@tabler/icons": "^1.46.0",
"@tippyjs/react": "^4.2.6",
"@usebruno/graphql-docs": "0.1.0",
"@usebruno/schema": "0.5.0",
"@usebruno/schema": "0.6.0",
"axios": "^0.26.0",
"classnames": "^2.3.1",
"codemirror": "^5.65.2",

View File

@ -1,6 +1,6 @@
{
"name": "@usebruno/cli",
"version": "0.14.0",
"version": "0.15.0",
"license": "MIT",
"main": "src/index.js",
"bin": {
@ -24,8 +24,8 @@
"package.json"
],
"dependencies": {
"@usebruno/js": "0.8.0",
"@usebruno/lang": "0.8.0",
"@usebruno/js": "0.9.0",
"@usebruno/lang": "0.9.0",
"axios": "^1.5.1",
"chai": "^4.3.7",
"chalk": "^3.0.0",

View File

@ -20,9 +20,9 @@
},
"dependencies": {
"@aws-sdk/credential-providers": "^3.425.0",
"@usebruno/js": "0.8.0",
"@usebruno/lang": "0.8.0",
"@usebruno/schema": "0.5.0",
"@usebruno/js": "0.9.0",
"@usebruno/lang": "0.9.0",
"@usebruno/schema": "0.6.0",
"about-window": "^1.15.2",
"aws4-axios": "^3.3.0",
"axios": "^1.5.1",

View File

@ -1,6 +1,6 @@
{
"name": "@usebruno/js",
"version": "0.8.0",
"version": "0.9.0",
"license": "MIT",
"main": "src/index.js",
"files": [

View File

@ -1,6 +1,6 @@
{
"name": "@usebruno/lang",
"version": "0.8.0",
"version": "0.9.0",
"license": "MIT",
"main": "src/index.js",
"files": [

View File

@ -1,6 +1,6 @@
{
"name": "@usebruno/schema",
"version": "0.5.0",
"version": "0.6.0",
"license": "MIT",
"main": "src/index.js",
"files": [

View File

@ -38,6 +38,7 @@ Or any version control system of your choice
- [Roadmap](https://github.com/usebruno/bruno/discussions/384)
- [Documentation](https://docs.usebruno.com)
- [Website](https://www.usebruno.com)
- [Pricing](https://www.usebruno.com/pricing)
- [Download](https://www.usebruno.com/downloads)
### Showcase 🎥
@ -79,6 +80,16 @@ Even if you are not able to make contributions via code, please don't hesitate t
[Discord](https://discord.com/invite/KgcZUncpjq) <br />
[LinkedIn](https://www.linkedin.com/company/usebruno)
### Trademark
**Name**
`Bruno` is a trademark held by [Anoop M D](https://www.helloanoop.com/)
**Logo**
The logo is sourced from [OpenMoji](https://openmoji.org/library/emoji-1F436/). License: CC [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
### License 📄
[MIT](license.md)