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

Quick Schema fixes #201

Merged
merged 5 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ and this project adheres to

## [Unreleased]

## 0.57.0 - 2024-04-17

### Updated

- Remove empty `excludes` properties from schemas.
- Fix HostAgent schema having a property defined outside the `properties` key.

## 0.56.1 - 2024-04-04

### Updated
Expand Down
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,14 @@ is:

## Versioning this package

The following needs to be the last commit on your branch right before merging to
main. That's crucial to the CI process. \
If you encounter issues while doing the following procedure, rebasing won't work,
you'll need to start it over again because of how tags work.

1. Update the `CHANGELOG.md` file with the new version number and the changes
made in that version.
2. Stage your changes, and as the last commit, run `yarn version` to bump the
package number and tag the commit.
3. Push your changes.
made in that version. Don't commit the change.
2. Stage the changes of the changelog and then run `yarn version` to commit the
changes to the changelog, and bump the package number. This will also tag
said commit locally on your branch.
3. Push your changes. Merge to main.
5 changes: 5 additions & 0 deletions external/resolvedSchemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -9965,6 +9965,11 @@
],
"inherited": true
},
"lastSeenOn": {
"description": "The timestamp (in milliseconds since epoch) when the device either last checked in or was scanned.",
"type": ["number", "null"],
"format": "date-time"
},
"name": {
"description": "Name of this entity",
"type": "string",
Expand Down
Loading
Loading