Skip to content

Commit 3da3c54

Browse files
authored
Merge pull request #632 from mulesoft/release/6.1.0
Release/6.1.0
2 parents f160cff + 3ee76f7 commit 3da3c54

File tree

6 files changed

+600
-617
lines changed

6 files changed

+600
-617
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
## [6.1.0](https://github.com/mulesoft/api-console/compare/v4.2.3...v6.1.0) (2020-03-17)
6+
7+
8+
### Features
9+
10+
* adding an option to set OAuth client ID / secret ([391bba1](https://github.com/mulesoft/api-console/commit/391bba1377716d4638b496b22438b562318b2e16))
11+
* adding experimental `rearrangeEndpoints` property ([692c21f](https://github.com/mulesoft/api-console/commit/692c21f6955884194183f15516b2a213bdbde39b))
12+
13+
14+
### Bug Fixes
15+
16+
* adding swagger match to API file search ([75208a4](https://github.com/mulesoft/api-console/commit/75208a4a51e15b00a9e0a3c9199a6f45855604ef))
17+
* fixed scrolling in APIC app ([58610bd](https://github.com/mulesoft/api-console/commit/58610bdcf6892bf3c83303c6c8a82acba83e88aa))
18+
* fixes APIC-291 - navigation animation when bootstraping ([c564eff](https://github.com/mulesoft/api-console/commit/c564efffdba2ce6f46da93938dc2d27f526af160))
19+
* Fixes linking ([fe17856](https://github.com/mulesoft/api-console/commit/fe17856527330c10bc98cba90a31905ed9d1026b))
20+
* fixing __amfChanged function by calling super class ([34fb6aa](https://github.com/mulesoft/api-console/commit/34fb6aab920dedce3477cbb73cec41ac21984867))
21+
* fixing APIC-260 - CM editor rendered above opened nav drawer ([4876283](https://github.com/mulesoft/api-console/commit/4876283695e4a1cc8dbef3601b448d5db181606f))
22+
* fixing click handler on the "back" button ([7ca40a7](https://github.com/mulesoft/api-console/commit/7ca40a71f5511060c3d23d28a0cd2901314e7cc2))
23+
* fixing input width issue for multipart form ([f15b029](https://github.com/mulesoft/api-console/commit/f15b02954a7fa37b8c97f813f32f8435c68073bd))
24+
* fixing recognizing swagger spec version ([e34740d](https://github.com/mulesoft/api-console/commit/e34740d8eccd83c87850a0ab9733672e120493fb))
25+
* removing `this.app` from function call ([f9cdf5d](https://github.com/mulesoft/api-console/commit/f9cdf5d44131fb3186eafb95c7edd8b1c8173431))
26+
127
<a name="6.0.0"></a>
228
# 6.0.0 (2020-01-15)
329

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ module.exports = (config) => {
8989

9090
client: {
9191
mocha: {
92-
timeout: 5000
92+
timeout: 10000
9393
}
9494
},
9595

karma.sl.config.js

Lines changed: 15 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,20 @@ const slSettings = require('@advanced-rest-client/testing-karma-sl/sl-settings.j
44
const createBaseConfig = require('./karma.conf.js');
55

66
module.exports = (config) => {
7-
const cnf = slSettings();
8-
cnf.sauceLabs.testName = 'api-console';
9-
cnf.browsers = [
10-
'SL_Chrome',
11-
'SL_Chrome-1',
12-
'SL_Firefox',
13-
'SL_Firefox-1',
14-
'SL_Safari',
15-
// 'SL_EDGE'
16-
];
17-
if (process.env.TRAVIS) {
18-
const buildLabel = 'TRAVIS #' + process.env.TRAVIS_BUILD_NUMBER + ' (' + process.env.TRAVIS_BUILD_ID + ')';
19-
20-
cnf.browserStack = {
21-
build: buildLabel,
22-
tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER
23-
};
24-
25-
cnf.sauceLabs.build = buildLabel;
26-
cnf.sauceLabs.tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER;
27-
}
28-
29-
config.set(merge(createBaseConfig(config), cnf));
30-
7+
const slConfig = merge(slSettings(config), {
8+
sauceLabs: {
9+
testName: 'api-console',
10+
},
11+
});
12+
// slConfig.browsers = [
13+
// 'SL_Chrome',
14+
// 'SL_Chrome-1',
15+
// 'SL_Firefox',
16+
// 'SL_Firefox-1',
17+
// 'SL_Safari',
18+
// 'SL_Safari-1',
19+
// 'SL_EDGE',
20+
// ];
21+
config.set(merge(createBaseConfig(config), slConfig));
3122
return config;
3223
};

manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"start_url": "/",
66
"display": "standalone",
77
"theme_color": "#3f51b5",
8-
"background_color": "#3f51b5"
8+
"background_color": "#3f51b5",
9+
"version": "6.1.0"
910
}

0 commit comments

Comments
 (0)