From d833cf70c04910bcf03aadf56cca7fbbbbee226e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 18:46:56 +0000 Subject: [PATCH 1/4] Bump husky from 9.1.6 to 9.1.7 Bumps [husky](https://github.com/typicode/husky) from 9.1.6 to 9.1.7. - [Release notes](https://github.com/typicode/husky/releases) - [Commits](https://github.com/typicode/husky/compare/v9.1.6...v9.1.7) --- updated-dependencies: - dependency-name: husky dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index e65d281e..9e2db799 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1156,9 +1156,9 @@ } }, "node_modules/husky": { - "version": "9.1.6", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.6.tgz", - "integrity": "sha512-sqbjZKK7kf44hfdE94EoX8MZNk0n7HeW37O4YrVGCF4wzgQjp+akPAkfUK5LZ6KuR/6sqeAVuXHji+RzQgOn5A==", + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz", + "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==", "dev": true, "bin": { "husky": "bin.js" From 17b40b3e28123216e4038cd036d84dfb66942a93 Mon Sep 17 00:00:00 2001 From: Courey Elliott Date: Wed, 20 Nov 2024 11:19:11 -0500 Subject: [PATCH 2/4] make eventId not required --- gcn/circulars.schema.json | 1 - 1 file changed, 1 deletion(-) diff --git a/gcn/circulars.schema.json b/gcn/circulars.schema.json index 90fd319f..923336a8 100644 --- a/gcn/circulars.schema.json +++ b/gcn/circulars.schema.json @@ -36,7 +36,6 @@ } }, "required": [ - "eventId", "submitter", "subject", "circularId", From 38a20c1de87ca9b81c8d2722d6d2b5ee39587a8a Mon Sep 17 00:00:00 2001 From: Courey Elliott Date: Wed, 20 Nov 2024 11:31:06 -0500 Subject: [PATCH 3/4] formatting changes --- gcn/circulars.schema.json | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/gcn/circulars.schema.json b/gcn/circulars.schema.json index 923336a8..4e3fb1ca 100644 --- a/gcn/circulars.schema.json +++ b/gcn/circulars.schema.json @@ -14,7 +14,12 @@ "description": "Name, affiliation, and email address of the person who submitted the Circular, in the form `A. E. Einstein at IAS `" }, "submittedHow": { - "enum": ["web", "email", "email-legacy", "api"], + "enum": [ + "web", + "email", + "email-legacy", + "api" + ], "description": "Specifies the method by which the user submitted the Circular" }, "subject": { @@ -26,10 +31,16 @@ "description": "Circular ID assigned to the Circular in the GCN Circulars archive. This value is unique to each published Circular and increments by 1" }, "format": { - "enum": ["text/plain", "text/markdown"], + "enum": [ + "text/plain", + "text/markdown" + ], "description": "Format of the body text as a MIME type. See https://gcn.nasa.gov/docs/circulars/markdown for documentation on using Markdown in Circulars" }, - "body": { "type": "string", "description": "Body text" }, + "body": { + "type": "string", + "description": "Body text" + }, "createdOn": { "type": "number", "description": "Date and time the Circular is accepted and published onto the GCN Circulars archive, formatted as a UNIX timestamp (milliseconds since the UNIX epoch)" @@ -42,4 +53,4 @@ "body", "createdOn" ] -} +} \ No newline at end of file From a31d7bac43576c9d853fd6a8f7a4ec5912cd9b23 Mon Sep 17 00:00:00 2001 From: Courey Elliott Date: Wed, 20 Nov 2024 11:33:05 -0500 Subject: [PATCH 4/4] undowing formatting changes --- gcn/circulars.schema.json | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/gcn/circulars.schema.json b/gcn/circulars.schema.json index 4e3fb1ca..86276d76 100644 --- a/gcn/circulars.schema.json +++ b/gcn/circulars.schema.json @@ -14,12 +14,7 @@ "description": "Name, affiliation, and email address of the person who submitted the Circular, in the form `A. E. Einstein at IAS `" }, "submittedHow": { - "enum": [ - "web", - "email", - "email-legacy", - "api" - ], + "enum": ["web", "email", "email-legacy", "api"], "description": "Specifies the method by which the user submitted the Circular" }, "subject": { @@ -31,10 +26,7 @@ "description": "Circular ID assigned to the Circular in the GCN Circulars archive. This value is unique to each published Circular and increments by 1" }, "format": { - "enum": [ - "text/plain", - "text/markdown" - ], + "enum": ["text/plain", "text/markdown"], "description": "Format of the body text as a MIME type. See https://gcn.nasa.gov/docs/circulars/markdown for documentation on using Markdown in Circulars" }, "body": { @@ -46,11 +38,5 @@ "description": "Date and time the Circular is accepted and published onto the GCN Circulars archive, formatted as a UNIX timestamp (milliseconds since the UNIX epoch)" } }, - "required": [ - "submitter", - "subject", - "circularId", - "body", - "createdOn" - ] -} \ No newline at end of file + "required": ["submitter", "subject", "circularId", "body", "createdOn"] +}