Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: February 2022 #1447

Merged
merged 24 commits into from
Feb 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
32cfa71
chore(release): 4.3.0 (#852)
ElinorW Feb 16, 2021
a42b742
chore(release): 4.4.0 (#860)
ElinorW Feb 22, 2021
8190568
chore(release): 4.4.1 (#878)
thewahome Mar 3, 2021
bc65ddf
chore(release): 4.4.2 (#912)
thewahome Mar 30, 2021
5368580
chore(release): 4.5.0 (#929)
thewahome Apr 13, 2021
d690cd8
Fix linting errors preventing the pipeline from runnings (#930)
thewahome Apr 13, 2021
69758cb
chore(release): 4.6.0 (#938)
thewahome May 5, 2021
9107145
Set GET as default HTTP method if method specified in query params is…
millicentachieng May 13, 2021
40d8316
Task: Update version number (#951)
millicentachieng May 13, 2021
e0ef4a4
chore(release): 4.9.0 (#989)
thewahome Jun 10, 2021
c477432
chore(release): 4.10.0 (#1014)
thewahome Jul 6, 2021
19733ac
chore(release): 4.11.0 (#1031)
thewahome Jul 15, 2021
c919328
chore(release): 4.12.0 (#1046)
thewahome Aug 3, 2021
d16607c
Release: September 2021 (#1091)
thewahome Sep 1, 2021
edfb717
Release: November 2021 (#1238)
ElinorW Nov 18, 2021
932a672
Release: December 2021 (#1308)
Onokaev Dec 9, 2021
194610a
Merge branch 'dev'
Onokaev Jan 5, 2022
f167a60
Revert "Merge branch 'dev'"
Onokaev Jan 5, 2022
1ff4ea0
Release 01-2022 (#1344)
millicentachieng Jan 13, 2022
2addfd6
Merge branch 'dev' into release/february-2022
millicentachieng Feb 2, 2022
96871cb
chore(release): 4.16.1
ElinorW Feb 3, 2022
513d40a
Merge branch 'dev' into release/february-2022
ElinorW Feb 3, 2022
d74387d
chore(release): 4.16.2
ElinorW Feb 3, 2022
2db2aa6
Merge branch 'dev' into release/february-2022
thewahome Feb 10, 2022
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
32 changes: 30 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graph-explorer-v2",
"version": "4.16.0",
"version": "4.16.2",
"private": true,
"dependencies": {
"@augloop/types-core": "file:packages/types-core-2.16.189.tgz",
Expand Down
19 changes: 9 additions & 10 deletions src/app/views/sidebar/history/har-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ export function createHarPayload(query: IHistoryItem): IHarPayload {

const headers: IHarHeaders[] = [];
if (query.headers) {
query.headers.forEach(header => {
query.headers.forEach((header) => {
const { name, value } = header;
const head: IHarHeaders = {
name, value
}
headers.push(head)
name,
value
};
headers.push(head);
});
}

Expand All @@ -33,8 +34,7 @@ export function createHarPayload(query: IHistoryItem): IHarPayload {
request: {
headers
},
response:
{
response: {
headers: query.responseHeaders
},
sendTime: 0,
Expand All @@ -44,7 +44,8 @@ export function createHarPayload(query: IHistoryItem): IHarPayload {
};

if (query.body) {
harPayload = Object.assign(harPayload, { //tslint:disable-line
harPayload = Object.assign(harPayload, {
//tslint:disable-line
postData: {
mimeType: 'application/json',
text: query.body
Expand All @@ -70,7 +71,7 @@ export function generateHar(payloads: IHarPayload[]): IHarFormat {

function createEntries(payloads: IHarPayload[]) {
const entries: any = [];
payloads.forEach(payload => {
payloads.forEach((payload) => {
entries.push({
startedDateTime: payload.startedDateTime,
time: payload.time,
Expand Down Expand Up @@ -115,5 +116,3 @@ export function exportQuery(content: IHarFormat, requestUrl: string) {
const filename = `${url.join('_')}.har`;
downloadToLocal(content, filename);
}


2 changes: 1 addition & 1 deletion src/telemetry/component-names.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ export const FETCH_SAMPLES_ACTION = 'Fetch samples action';
export const AUTHENTICATION_ACTION = 'Authentication action';
export const GET_ADAPTIVE_CARD_ACTION = 'Get adaptive card action';
export const FETCH_PERMISSIONS_ACTION = 'Fetch permissions action';
export const MONACO_EDITOR_FORMAT_JSON_ACTION = 'Monaco editor format JSON action';
export const MONACO_EDITOR_FORMAT_JSON_ACTION = 'Monaco editor format JSON action';