Skip to content

Commit 87692fa

Browse files
chore: release master (#2764)
1 parent c408fd2 commit 87692fa

File tree

11 files changed

+101
-18
lines changed

11 files changed

+101
-18
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
- name: Run Harness
127127
run: yarn test.harness
128128
publish:
129-
if: startsWith(github.ref, 'refs/tags/v') && github.ref != 'refs/heads/master'
129+
if: github.event_name == 'push' && startsWith(github.event.head_commit.message, 'chore: release master')
130130
runs-on: ubuntu-latest
131131
needs:
132132
- build
@@ -153,7 +153,7 @@ jobs:
153153
with:
154154
path: "./cli-binaries"
155155
upload_artifacts:
156-
if: startsWith(github.ref, 'refs/tags/v') && github.ref != 'refs/heads/master'
156+
if: github.event_name == 'push' && startsWith(github.event.head_commit.message, 'chore: release master')
157157
runs-on: ubuntu-latest
158158
container:
159159
image: golang:1.23

.release-please-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
".": "5.15.1",
3-
"packages/cli": "5.15.1",
4-
"packages/core": "5.10.0",
5-
"packages/http": "5.14.0",
6-
"packages/http-server": "5.15.0"
3+
"packages/cli": "5.15.2",
4+
"packages/core": "5.11.0",
5+
"packages/http": "5.15.0",
6+
"packages/http-server": "5.15.1"
77
}

packages/cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [5.15.2](https://github.com/stoplightio/prism/compare/v5.15.1...v5.15.2) (2026-03-30)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @stoplight/prism-core bumped from ^5.10.0 to ^5.11.0
11+
* @stoplight/prism-http bumped from 5.14.0 to 5.15.0
12+
* @stoplight/prism-http-server bumped from ^5.15.0 to ^5.15.1
13+
314
## [5.15.1](https://github.com/stoplightio/prism/compare/v5.15.0...v5.15.1) (2026-03-30)
415

516

packages/cli/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-cli",
3-
"version": "5.15.1",
3+
"version": "5.15.2",
44
"author": "Stoplight <support@stoplight.io>",
55
"bin": {
66
"prism": "./dist/index.js"
@@ -9,11 +9,11 @@
99
"dependencies": {
1010
"@stoplight/json": "3.21.7",
1111
"@stoplight/json-schema-ref-parser": "10.0.0",
12-
"@stoplight/prism-core": "^5.10.0",
13-
"@stoplight/prism-http": "5.14.0",
14-
"@stoplight/prism-http-server": "^5.15.0",
12+
"@stoplight/prism-core": "^5.11.0",
13+
"@stoplight/prism-http": "5.15.0",
14+
"@stoplight/prism-http-server": "^5.15.1",
1515
"@stoplight/types": "^14.1.0",
16-
"chalk": "^4.1.2",
16+
"chalk": "^5.6.2",
1717
"chokidar": "^3.5.2",
1818
"fp-ts": "^2.11.5",
1919
"json-schema-faker": "0.5.9",

packages/core/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [5.11.0](https://github.com/stoplightio/prism/compare/v5.10.0...v5.11.0) (2026-03-30)
4+
5+
6+
### Features
7+
8+
* **deps:** bump node from 16 to 18.20 ([#2520](https://github.com/stoplightio/prism/issues/2520)) ([4b175a6](https://github.com/stoplightio/prism/commit/4b175a614a7d1f184863d741c8cbec494b37b57f))
9+
* **deps:** bump node from 18.20 to 24.14 ([#2752](https://github.com/stoplightio/prism/issues/2752)) ([3940161](https://github.com/stoplightio/prism/commit/39401611f00b997852dcf54fc52902720377034d))
10+
* **http:** added support to Deprecation header for deprecated operations [#1563](https://github.com/stoplightio/prism/issues/1563) ([1415319](https://github.com/stoplightio/prism/commit/14153193c69bccd960e62bc2b86ec23470d66921))
11+
312
## [5.10.0](https://github.com/stoplightio/prism/compare/v5.9.0...v5.10.0) (2026-03-30)
413

514

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-core",
3-
"version": "5.10.0",
3+
"version": "5.11.0",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"author": "Stoplight <support@stoplight.io>",

packages/http-server/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [5.15.1](https://github.com/stoplightio/prism/compare/v5.15.0...v5.15.1) (2026-03-30)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @stoplight/prism-core bumped from ^5.10.0 to ^5.11.0
11+
* @stoplight/prism-http bumped from ^5.14.0 to ^5.15.0
12+
313
## [5.15.0](https://github.com/stoplightio/prism/compare/v5.14.0...v5.15.0) (2026-03-30)
414

515

packages/http-server/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-http-server",
3-
"version": "5.15.0",
3+
"version": "5.15.1",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"author": "Stoplight <support@stoplight.io>",
@@ -19,8 +19,8 @@
1919
"access": "public"
2020
},
2121
"dependencies": {
22-
"@stoplight/prism-core": "^5.10.0",
23-
"@stoplight/prism-http": "^5.14.0",
22+
"@stoplight/prism-core": "^5.11.0",
23+
"@stoplight/prism-http": "^5.15.0",
2424
"@stoplight/types": "^14.1.0",
2525
"fast-xml-parser": "^5.5.7",
2626
"fp-ts": "^2.11.5",

packages/http/CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,54 @@
11
# Changelog
22

33

4+
## [5.15.0](https://github.com/stoplightio/prism/compare/v5.14.0...v5.15.0) (2026-03-30)
5+
6+
7+
### Features
8+
9+
* 1813 start using 415 code for invalid content-types instead constantly inferring it ([df475fc](https://github.com/stoplightio/prism/commit/df475fcb67608428c143b3e6a988d95a1ef1fd3e))
10+
* add --seed CLI flag for deterministic generation of dynamic examples ([#2594](https://github.com/stoplightio/prism/issues/2594)) ([8edc1cc](https://github.com/stoplightio/prism/commit/8edc1cccd29e07e6f4a20642247189b4a1375cb2))
11+
* adds more standard compliant request body handling ([#2260](https://github.com/stoplightio/prism/issues/2260)) ([3b56cb7](https://github.com/stoplightio/prism/commit/3b56cb72f41d106cbcc95bb7c27711a3c05c6298))
12+
* Allow JSON Schema Faker configuration in specification ([b72dd03](https://github.com/stoplightio/prism/commit/b72dd03e24bea4a7178c824eb0d83c68715f1503))
13+
* better validation for optional auth ([#2401](https://github.com/stoplightio/prism/issues/2401)) ([e2d9f0f](https://github.com/stoplightio/prism/commit/e2d9f0f23884c73a8dad371e3497a0956c00ee11))
14+
* **deps:** bump node from 16 to 18.20 ([#2520](https://github.com/stoplightio/prism/issues/2520)) ([4b175a6](https://github.com/stoplightio/prism/commit/4b175a614a7d1f184863d741c8cbec494b37b57f))
15+
* **deps:** bump node from 18.20 to 24.14 ([#2752](https://github.com/stoplightio/prism/issues/2752)) ([3940161](https://github.com/stoplightio/prism/commit/39401611f00b997852dcf54fc52902720377034d))
16+
* **http:** added support to Deprecation header for deprecated operations [#1563](https://github.com/stoplightio/prism/issues/1563) ([1415319](https://github.com/stoplightio/prism/commit/14153193c69bccd960e62bc2b86ec23470d66921))
17+
* **http:** detect complex schema error, improve error message ([#2327](https://github.com/stoplightio/prism/issues/2327)) ([07af511](https://github.com/stoplightio/prism/commit/07af51120ecb8593bc7c0892bc79f5ad5258a67c))
18+
* STOP-243 - create prism instance with full spec ([#2501](https://github.com/stoplightio/prism/issues/2501)) ([ed41dca](https://github.com/stoplightio/prism/commit/ed41dca89e5ad673f1a0d813b403a44de7e367b2))
19+
20+
21+
### Bug Fixes
22+
23+
* [#1881](https://github.com/stoplightio/prism/issues/1881) fixed memory leak for validation ([931fc0f](https://github.com/stoplightio/prism/commit/931fc0fe47b4ff4ec58f8ba3369d50f8d1bf47c3))
24+
* [#1881](https://github.com/stoplightio/prism/issues/1881) fixed memory leak for validation ([bfc258a](https://github.com/stoplightio/prism/commit/bfc258aa98e49c46fa5116ca1e7b49b8a3117ce9))
25+
* [#1881](https://github.com/stoplightio/prism/issues/1881) fixed memory leak for validation ([1a05283](https://github.com/stoplightio/prism/commit/1a0528365251043d041c487ebeb905a51310e420))
26+
* [#7839](https://github.com/stoplightio/prism/issues/7839) fixed handling of number with format: double ([e10a1e5](https://github.com/stoplightio/prism/commit/e10a1e54995bd0a0c325412de63041835023f5d5))
27+
* 1917 fixed handling of example request for invalid requests ([444012b](https://github.com/stoplightio/prism/commit/444012bf1d9675abb2628727d4c5b39de486eb43))
28+
* another fix for memory leak of schema validation ([ded2a9b](https://github.com/stoplightio/prism/commit/ded2a9b110459b7c15e00115e5a600f6f8cd8438))
29+
* **http-negotiator:** [#2381](https://github.com/stoplightio/prism/issues/2381) add additional warn log message ([#2550](https://github.com/stoplightio/prism/issues/2550)) ([64a23fc](https://github.com/stoplightio/prism/commit/64a23fc530ff1e01c186f01e77a5906c0251f394))
30+
* **http:** add explicit dependency on chalk ([#2263](https://github.com/stoplightio/prism/issues/2263)) ([55b07c9](https://github.com/stoplightio/prism/commit/55b07c98145799faf0aae47a023a34a6e22e714b))
31+
* **http:** update json-path plus in http ([551a23f](https://github.com/stoplightio/prism/commit/551a23f6ea889803fe7b7b9db497dd94ddca54c9))
32+
* json schema faker fillProperties not working ([#2398](https://github.com/stoplightio/prism/issues/2398)) ([e8acebd](https://github.com/stoplightio/prism/commit/e8acebd430dfe3cfc9db7bda3228256153346488))
33+
* keep encoded value if uri decoding fails. ([#2387](https://github.com/stoplightio/prism/issues/2387)) ([aba9bee](https://github.com/stoplightio/prism/commit/aba9bee0dae442da8364c327bd3d2e560e7de4cc))
34+
* mock issue resolve for similar templated requests ([#2564](https://github.com/stoplightio/prism/issues/2564)) ([b8e9fd8](https://github.com/stoplightio/prism/commit/b8e9fd815f0f612664b36704e4200d5473875fbe))
35+
* readOnly objects in arrays are handled correctly ([#2513](https://github.com/stoplightio/prism/issues/2513)) ([7670236](https://github.com/stoplightio/prism/commit/767023681f481d5e9d8c46203613faa635541eab))
36+
* remove deprecated usage of parse ([#1959](https://github.com/stoplightio/prism/issues/1959)) ([ea5b445](https://github.com/stoplightio/prism/commit/ea5b44555435424c2743fd3cde9bea75a408c6b8))
37+
* reverted changes and bump the JSON version ([#2598](https://github.com/stoplightio/prism/issues/2598)) ([4acb898](https://github.com/stoplightio/prism/commit/4acb8980b31c3902ff01cabef06a4fb6f9a6cd48))
38+
* update http-spec ([#2037](https://github.com/stoplightio/prism/issues/2037)) ([72d6882](https://github.com/stoplightio/prism/commit/72d6882bc39a673e65b1fc10ff88d3581b838dca))
39+
* upgrade dependencies and resolve breaking http spec changes ([#2105](https://github.com/stoplightio/prism/issues/2105)) ([ebbc6c1](https://github.com/stoplightio/prism/commit/ebbc6c1546aced8db0f492dd80651d2459c9bae0))
40+
* upgrade json-schema-ref-parser to fix URL specs on Node.js 24 ([#2762](https://github.com/stoplightio/prism/issues/2762)) ([0ef7ee8](https://github.com/stoplightio/prism/commit/0ef7ee8550c3ce60a77d9a425eff977fa09726a4))
41+
* use proper client call in memory leak tests ([c223192](https://github.com/stoplightio/prism/commit/c223192750c2edde958e43da8bffe639f2672952))
42+
* validateOutput() when schema contains internal reference ([#2363](https://github.com/stoplightio/prism/issues/2363)) ([8e143e6](https://github.com/stoplightio/prism/commit/8e143e6622bdc8098a5c86c399831a12858612d5))
43+
* version update and bundled_issue changes ([#2577](https://github.com/stoplightio/prism/issues/2577)) ([c4074fa](https://github.com/stoplightio/prism/commit/c4074fa24438079e659061ee32d08464a688c17c))
44+
45+
46+
### Dependencies
47+
48+
* The following workspace dependencies were updated
49+
* dependencies
50+
* @stoplight/prism-core bumped from ^5.10.0 to ^5.11.0
51+
452
## [5.14.0](https://github.com/stoplightio/prism/compare/v5.13.0...v5.14.0) (2026-03-30)
553

654

packages/http/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-http",
3-
"version": "5.14.0",
3+
"version": "5.15.0",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"author": "Stoplight <support@stoplight.io>",
@@ -20,7 +20,7 @@
2020
"@stoplight/json": "3.21.7",
2121
"@stoplight/json-schema-merge-allof": "0.7.8",
2222
"@stoplight/json-schema-sampler": "0.3.0",
23-
"@stoplight/prism-core": "^5.10.0",
23+
"@stoplight/prism-core": "^5.11.0",
2424
"@stoplight/http-spec": "^7.1.0",
2525
"@stoplight/json-schema-ref-parser": "10.0.0",
2626
"@stoplight/types": "^14.1.0",
@@ -30,7 +30,7 @@
3030
"ajv": "^8.4.0",
3131
"ajv-formats": "^2.1.1",
3232
"caseless": "^0.12.0",
33-
"chalk": "^4.1.2",
33+
"chalk": "^5.6.2",
3434
"content-type": "^1.0.4",
3535
"fp-ts": "^2.11.5",
3636
"http-proxy-agent": "^5.0.0",

0 commit comments

Comments
 (0)