Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@condenast/flyway-schema-validator
Advanced tools
Does what it says on the tin.
See https://condenast.github.io/flyway-api-docs/.
To use as a node.js module, make sure you're in your project source and run:
npm i --save @condenast/flyway-schema-validator
To use as a command line module, install globally with the following command:
npm i -g @condenast/flyway-schema-validator
const validator = require('@condenast/flyway-schema-validator');
const isValid = validator(someFlywayAPIObject);
try {
// invalid
const invalidThrows = validator({ invalid: true });
} catch (err) {
// error describes the validation issues.
}
*nix Piping:
cat someObj.json | flyway-schema-validator
Reading from a file directly:
flyway-schema-validator -f ./someObj.json
To publish updates, you must bump the version number using npm version major|minor|patch
, and push the generated commit and tag to github.
CI will detect a new tag push and automatically build and publish it.
Generally the workflow after merging a PR should be
git checkout master
git pull
npm version patch|minor|major|v11.x.x # <--- this also generates a git commit and tags it based on the new version
git push origin master # push that commit to master
git push origin --tags
CI will now pickup and build your changes.
NOTE: we use a new branch that tracks origin master so if you have accidentally commited to master locally, that doesn't get published without any PR. If you're confident that your master matches origin EXACTLY feel free to do this on your local master branch.
MIT.
FAQs
A joi schema validator for flyways types
The npm package @condenast/flyway-schema-validator receives a total of 0 weekly downloads. As such, @condenast/flyway-schema-validator popularity was classified as not popular.
We found that @condenast/flyway-schema-validator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 451 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.