Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
v4.0.0
Browse files Browse the repository at this point in the history
domharrington committed Mar 1, 2019
1 parent ee64070 commit 49173d6
Showing 8 changed files with 25 additions and 17 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,14 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [v4.0.0](https://github.com/readmeio/api-explorer/compare/v3.1.0...v4.0.0)

> 1 March 2019
- Add input debouncing to improve responsiveness of UI with lots of endpoints [`1ae5a51`](https://github.com/readmeio/api-explorer/commit/1ae5a51196facbd81a8ddeebc4e43866fc0f7b8d)
- Make /reference-edit use the baseUrl prop [`7c5b144`](https://github.com/readmeio/api-explorer/commit/7c5b14478d38d6b4116fe4601a51bc1d58addc37)
- Prettier [`37442fa`](https://github.com/readmeio/api-explorer/commit/37442fab003f2209fc08b59a56603e7c6a56df33)

#### [v3.1.0](https://github.com/readmeio/api-explorer/compare/v3.0.0...v3.1.0)

> 5 February 2019
- Add support for http/bearer auth [`#15`](https://github.com/readmeio/api-explorer/issues/15)
- Move modes to seperate file [`4b6ef12`](https://github.com/readmeio/api-explorer/commit/4b6ef12e8ba1cd8c98e553d8829c20fb60d58739)
- Add a test for the default selection [`6e57e1a`](https://github.com/readmeio/api-explorer/commit/6e57e1a174c32e0d8201536634547c4a669ac290)
- Package lock updates [`82189c2`](https://github.com/readmeio/api-explorer/commit/82189c21b53df5561f557479ed26e4f9123f8c29)
- Refactor to use a shared auth state at the very top level [`351303a`](https://github.com/readmeio/api-explorer/commit/351303abb01d86b75e6a4e81d0aa054529f1251a)
- Prettier [`6f921ad`](https://github.com/readmeio/api-explorer/commit/6f921ad8945df5fbf0730c7d83442b919c19d37d)
- Refactor oas-to-har to use oas.url() function [`885c40d`](https://github.com/readmeio/api-explorer/commit/885c40df318802e05e655b9e225f022f03ea32b4)

### [v3.0.0](https://github.com/readmeio/api-explorer/compare/v2.7.3...v3.0.0)

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -3,5 +3,5 @@
"packages": [
"packages/*"
],
"version": "3.1.0"
"version": "4.0.0"
}
10 changes: 5 additions & 5 deletions packages/api-explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@readme/api-explorer",
"description": "UI components for the API explorer",
"version": "3.1.0",
"version": "4.0.0",
"main": "dist/index.js",
"dependencies": {
"@readme/markdown": "^3.1.0",
"@readme/oas-extensions": "^3.1.0",
"@readme/syntax-highlighter": "^3.1.0",
"@readme/variable": "^3.1.0",
"@readme/markdown": "^4.0.0",
"@readme/oas-extensions": "^4.0.0",
"@readme/syntax-highlighter": "^4.0.0",
"@readme/variable": "^4.0.0",
"classnames": "^2.2.5",
"fetch-har": "^2.0.0",
"hast-util-sanitize": "^1.2.0",
2 changes: 1 addition & 1 deletion packages/api-logs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@readme/api-logs",
"description": "React component for Api Logs",
"version": "3.1.0",
"version": "4.0.0",
"main": "dist/index.js",
"dependencies": {
"prop-types": "^15.6.2",
6 changes: 3 additions & 3 deletions packages/markdown/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@readme/markdown",
"description": "ReadMe's React-based Markdown parser",
"version": "3.1.0",
"version": "4.0.0",
"dependencies": {
"@readme/syntax-highlighter": "^3.1.0",
"@readme/variable": "^3.1.0",
"@readme/syntax-highlighter": "^4.0.0",
"@readme/variable": "^4.0.0",
"hast-util-sanitize": "^1.2.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
2 changes: 1 addition & 1 deletion packages/oas-extensions/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@readme/oas-extensions",
"description": "A list of extensions that ReadMe has added to the OAS spec",
"version": "3.1.0",
"version": "4.0.0",
"scripts": {
"test": "eslint -f unix ."
},
4 changes: 2 additions & 2 deletions packages/syntax-highlighter/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@readme/syntax-highlighter",
"description": "Syntax highlighter used on ReadMe.io",
"version": "3.1.0",
"version": "4.0.0",
"dependencies": {
"@readme/variable": "^3.1.0",
"@readme/variable": "^4.0.0",
"codemirror": "^5.31.0",
"react": "^16.4.2"
},
2 changes: 1 addition & 1 deletion packages/variable/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@readme/variable",
"description": "React component for Variables",
"version": "3.1.0",
"version": "4.0.0",
"main": "index.jsx",
"dependencies": {
"classnames": "^2.2.6",

0 comments on commit 49173d6

Please sign in to comment.