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

chore: update all http to https to resolve WS1262 security vulnerability #3658

Merged
merged 6 commits into from
Aug 10, 2020
Merged
Show file tree
Hide file tree
Changes from 5 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const template = html`
width="9"
height="9"
viewBox="0 0 9 9"
xmlns="http://www.w3.org/2000/svg"
xmlns="https://www.w3.org/2000/svg"
aria-hidden="true"
>
<path
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function refresh(className: string): JSX.Element {
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
xmlns="https://www.w3.org/2000/svg"
className={className}
>
<path
Expand All @@ -25,7 +25,7 @@ export function revertChanges(className: string): JSX.Element {
height="16"
viewBox="0 0 15 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
xmlns="https://www.w3.org/2000/svg"
className={className}
>
<path
Expand All @@ -43,7 +43,7 @@ export function detach(className: string): JSX.Element {
height="15"
viewBox="0 0 14 15"
fill="none"
xmlns="http://www.w3.org/2000/svg"
xmlns="https://www.w3.org/2000/svg"
className={className}
>
<path
Expand Down
12 changes: 6 additions & 6 deletions packages/tooling/fast-tooling-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ Example:

```json
{
"$schema": "http://json-schema.org/schema#",
"$schema": "https://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"type": "object",
Expand Down Expand Up @@ -353,7 +353,7 @@ Example:

```json
{
"$schema": "http://json-schema.org/schema#",
"$schema": "https://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"type": "object",
Expand Down Expand Up @@ -387,7 +387,7 @@ Example:

```json
{
"$schema": "http://json-schema.org/schema#",
"$schema": "https://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"type": "object",
Expand All @@ -413,7 +413,7 @@ Example:

```json
{
"$schema": "http://json-schema.org/schema#",
"$schema": "https://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"type": "object",
Expand Down Expand Up @@ -493,7 +493,7 @@ Example:

```json
{
"$schema": "http://json-schema.org/schema#",
"$schema": "https://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"oneOf": [
Expand Down Expand Up @@ -529,7 +529,7 @@ Any enums will be converted to a select dropdown.

```json
{
"$schema": "http://json-schema.org/schema#",
"$schema": "https://json-schema.org/schema#",
"id": "my-component",
"title": "My component",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with children",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component without children",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema, ReservedElementMappingKeyword } from "@microsoft/fast-tooling";

export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Fancy button",
[ReservedElementMappingKeyword.mapsToTagName]: "fancy-button",
description: "A test component's schema definition.",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Text",
description: "A test component's schema definition.",
type: "string",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with horizontal alignment",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with all control types",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with anyOf",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with array",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Badge",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with checkbox",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with custom properties ",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with children",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component interpreted by a plugin",
description: "A test component's schema definition.",
type: "string",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with const",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with custom controls",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with defaults",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with additional properties",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with all disabled types",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "General example",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "General example",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with invalid data",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
type: "object",
id: "mergedOneOf",
title: "Merged oneOf",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with a nested oneOf",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with null",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with number-field",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with objects",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Complex nesting arrays with oneOf",
type: "object",
id: "oneOfArrays",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linkedDataSchema } from "@microsoft/fast-tooling";

export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with oneOf",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with text-field",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
description: "A test component's schema definition.",
id: "text",
title: "Text",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with text-field",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
$schema: "http://json-schema.org/schema#",
$schema: "https://json-schema.org/schema#",
title: "Component with tooltips",
description: "A test component's schema definition.",
type: "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/schema#",
"$schema": "https://json-schema.org/schema#",
"title": "CSS Background",
"description": "A CSS background component's schema definition.",
"id": "@microsoft/fast-tooling-react/css-background",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/schema#",
"$schema": "https://json-schema.org/schema#",
"title": "CSS border radius",
"description": "A CSS border radius component's schema definition.",
"id": "@microsoft/fast-tooling-react/css-border-radius",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default class CSSBorderRadius extends Foundation<
width="14"
height="14"
viewBox="0 0 14 14"
xmlns="http://www.w3.org/2000/svg"
xmlns="https://www.w3.org/2000/svg"
>
<path
className={this.generatePathClassNames(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/schema#",
"$schema": "https://json-schema.org/schema#",
"title": "CSS Border",
"description": "A CSS border component's schema definition.",
"id": "@microsoft/fast-tooling-react/css-border",
Expand Down
Loading