Skip to content

v3.2-dev: update from dev #4787

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

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
dd19e3f
auto-merge sync PRs from dev
ralfhandl Jul 10, 2025
cb39996
Switch to @hyperjump/json-schema-coverage for schema test coverage
jdesrosiers Jul 2, 2025
5f48809
Add a check to fail the build if there isn't 100% test coverage
jdesrosiers Jul 10, 2025
ee625d6
Use file path for schema test instead of URI
jdesrosiers Jul 10, 2025
96f62b8
Fix coverage with custom vocabulary
jdesrosiers Jul 13, 2025
059a4b0
Update coverage to work on windows and don't enforce coverage on dev
jdesrosiers Jul 13, 2025
800542a
Thresholds now work with json-schema-coverage
jdesrosiers Jul 14, 2025
cf80708
Merge pull request #4762 from jdesrosiers/json-schema-coverage
ralfhandl Jul 14, 2025
59cf859
Upport of #4762
ralfhandl Jul 15, 2025
8f369be
Only remove parts of tests/schema
ralfhandl Jul 15, 2025
d6daa34
Update MAINTAINERS.md
philsturgeon Jul 16, 2025
a33d803
Merge pull request #4783 from philsturgeon/patch-2
ralfhandl Jul 16, 2025
36fcc93
Merge pull request #4785 from OAI/main
ralfhandl Jul 17, 2025
a9bee8c
Fixing non-working link
dret Jul 18, 2025
6745fba
Merge pull request #4794 from dret/patch-7
handrews Jul 18, 2025
9281b81
Merge pull request #4795 from OAI/main
ralfhandl Jul 18, 2025
dfd4a56
Bump respec from 35.4.2 to 35.4.3
dependabot[bot] Jul 23, 2025
7d04861
Merge pull request #4809 from OAI/dependabot/npm_and_yarn/respec-35.4.3
ralfhandl Jul 23, 2025
7f41d4b
Bump cheerio from 1.1.0 to 1.1.2
dependabot[bot] Jul 23, 2025
6bc3a27
Merge pull request #4806 from OAI/dependabot/npm_and_yarn/cheerio-1.1.2
ralfhandl Jul 23, 2025
9f4e617
Bump yaml from 2.8.0 to 2.8.1
dependabot[bot] Aug 6, 2025
2413078
Merge pull request #4823 from OAI/dependabot/npm_and_yarn/yaml-2.8.1
ralfhandl Aug 7, 2025
c9338bd
Coverage thresholds met by existing tests
ralfhandl Aug 8, 2025
e4d17f8
Merge pull request #4782 from ralfhandl/main-new-schema-coverage
handrews Aug 11, 2025
139c3e5
Merge pull request #4775 from ralfhandl/main-auto-merge-dev-sync-prs
handrews Aug 11, 2025
53e56bf
Merge branch 'main' into dev-merge-main
ralfhandl Aug 11, 2025
1f3374c
Merge pull request #4829 from OAI/dev-merge-main
handrews Aug 12, 2025
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
2 changes: 1 addition & 1 deletion MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

## Active

* Darrel Miller [@darrelmiller](https://github.com/darrelmiller)
* Jeremy Whitlock [@whitlockjc](https://github.com/whitlockjc)
* Marsh Gardiner [@earth2marsh](https://github.com/earth2marsh)
* Ron Ratovsky [@webron](https://github.com/webron)
Expand All @@ -13,6 +12,7 @@

## Emeritus

* Darrel Miller [@darrelmiller](https://github.com/darrelmiller)
* Mike Ralphson [@MikeRalphson](https://github.com/MikeRalphson)
* Uri Sarid [@usarid](https://github.com/usarid)
* Jason Harmon [@jharmn](https://github.com/jharmn)
Expand Down
163 changes: 149 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"scripts": {
"build": "bash ./scripts/md2html/build.sh",
"build-src": "npm run validate-markdown && bash ./scripts/md2html/build.sh src && bash ./scripts/schema-publish.sh src",
"test": "c8 --100 vitest --watch=false && bash scripts/schema-test-coverage.sh",
"test": "c8 --100 vitest run --coverage",
"format-markdown": "npx markdownlint-cli2 --config spec.markdownlint.yaml --fix src/oas.md && npx markdownlint-cli2 --fix *.md",
"validate-markdown": "npx markdownlint-cli2 --config spec.markdownlint.yaml src/oas.md && npx markdownlint-cli2 *.md"
},
Expand All @@ -27,7 +27,7 @@
"yargs": "^18.0.0"
},
"devDependencies": {
"@hyperjump/json-schema": "^1.16.1",
"@hyperjump/json-schema-coverage": "^1.1.0",
"c8": "^10.1.3",
"markdownlint-cli2": "^0.18.1",
"vitest": "^3.2.4",
Expand Down
Loading
Loading