Skip to content

Commit

Permalink
Bump husky from 9.1.6 to 9.1.7
Browse files Browse the repository at this point in the history
Bumps [husky](https://github.com/typicode/husky) from 9.1.6 to 9.1.7.
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@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] <[email protected]>

make eventId not required

formatting changes

undowing formatting changes

Bump prettier from 3.3.3 to 3.4.1

Bumps [prettier](https://github.com/prettier/prettier) from 3.3.3 to 3.4.1.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.3...3.4.1)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Update README.md

Fixed "New Notice Producers" link.

Add contributing instructions

FRB: Adding subsequent field

reversing master

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](typicode/husky@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] <[email protected]>

make eventId not required

formatting changes

undowing formatting changes

Readme: Schema Rules
  • Loading branch information
dependabot[bot] authored and Vidushi-GitHub committed Dec 4, 2024
1 parent 922f069 commit b04ae22
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 19 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ npm install

npm install

3. Tag a new version by running the following command: `npm version [ major | minor | patch ]`. Choose `major`, `minor`, or `patch` depending on the kind of update according to [Semantic Versioning](https://semver.org) rules.
3. Tag a new version by running the following command: `npm version [ major | minor | patch ]`. Choose `major`, `minor`, or `patch` depending on the kind of update according to [Semantic Versioning](https://semver.org) rules. Updates are categorized as major, minor, or patch, depending on the type of change. A major change is defined as any modification that breaks compatibility with the core schema, such as a change in a property or the addition of a new property that affects the mission pipelines. Introducing a new mission and new core schema constitutes a minor change, while modifying the new mission schema and adding a new property to the core schema are considered patches.

This command will handle the intermediate steps of updating and committing the path changes in each file as defined in the `version` and `postversion` npm scripts
This command will handle the intermediate steps of updating and committing the path changes in each file as defined in the `version` and `postversion` npm scripts.

4. Review the changes with `git log -p` to make sure that each file is appropriately updated.

Expand Down
14 changes: 5 additions & 9 deletions gcn/circulars.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,14 @@
"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)"
}
},
"required": [
"eventId",
"submitter",
"subject",
"circularId",
"body",
"createdOn"
]
"required": ["submitter", "subject", "circularId", "body", "createdOn"]
}
14 changes: 7 additions & 7 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
Expand Up @@ -25,7 +25,7 @@
"glob": "^10.1.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"prettier": "3.3.3"
"prettier": "3.4.1"
},
"prettier": {
"semi": false,
Expand Down

0 comments on commit b04ae22

Please sign in to comment.