Skip to content

Commit 752bc8b

Browse files
stoplight-botDaniel A. White
and
Daniel A. White
authored
chore: release master (#2498)
Co-authored-by: Daniel A. White <[email protected]>
1 parent 6043a9b commit 752bc8b

12 files changed

+276
-113
lines changed

.release-please-manifest.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
".": "5.5.4",
3-
"packages/cli": "5.5.4",
4-
"packages/core": "5.5.4",
5-
"packages/http": "5.5.4",
6-
"packages/http-server": "5.5.4"
2+
".": "5.6.0",
3+
"packages/cli": "5.6.0",
4+
"packages/core": "5.6.0",
5+
"packages/http": "5.6.0",
6+
"packages/http-server": "5.6.0"
77
}

CHANGELOG.md

+153-97
Large diffs are not rendered by default.

mlc_config.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"ignorePatterns": [
3+
"^https://github\\.com/stoplightio/prism/compare/"
4+
]
5+
}

packages/cli/CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Changelog
2+
3+
## [5.6.0](https://github.com/stoplightio/prism/compare/v5.5.4...v5.6.0) (2024-03-18)
4+
5+
6+
### Features
7+
8+
* 1813 start using 415 code for invalid content-types instead constantly inferring it ([df475fc](https://github.com/stoplightio/prism/commit/df475fcb67608428c143b3e6a988d95a1ef1fd3e))
9+
* Allow JSON Schema Faker configuration in specification ([b72dd03](https://github.com/stoplightio/prism/commit/b72dd03e24bea4a7178c824eb0d83c68715f1503))
10+
* **proxy:** add a flag to skip request validation ([71d04c8](https://github.com/stoplightio/prism/commit/71d04c8e19fef64f1354a17e51cf48a0d8b4bee7))
11+
* support circular refs ([#1835](https://github.com/stoplightio/prism/issues/1835)) ([d287dd7](https://github.com/stoplightio/prism/commit/d287dd700c2597c0b20214c8340680dd42e20085))
12+
13+
14+
### Bug Fixes
15+
16+
* fixed [#1860](https://github.com/stoplightio/prism/issues/1860) performance regression ([fe6345d](https://github.com/stoplightio/prism/commit/fe6345dc8a78dc0a0a30774c0175422c9cc93139))
17+
* json schema faker fillProperties not working ([#2398](https://github.com/stoplightio/prism/issues/2398)) ([e8acebd](https://github.com/stoplightio/prism/commit/e8acebd430dfe3cfc9db7bda3228256153346488))
18+
* update http-spec ([#2037](https://github.com/stoplightio/prism/issues/2037)) ([72d6882](https://github.com/stoplightio/prism/commit/72d6882bc39a673e65b1fc10ff88d3581b838dca))
19+
* upgrade dependencies and resolve breaking http spec changes ([#2105](https://github.com/stoplightio/prism/issues/2105)) ([ebbc6c1](https://github.com/stoplightio/prism/commit/ebbc6c1546aced8db0f492dd80651d2459c9bae0))
20+
* upgrade jsrp to 9.2.4 to allow basic auth ([#2279](https://github.com/stoplightio/prism/issues/2279)) ([2148a2b](https://github.com/stoplightio/prism/commit/2148a2bc9c43d2897900ffe5838d7bc76fd8a3d1))
21+
22+
23+
### Dependencies
24+
25+
* The following workspace dependencies were updated
26+
* dependencies
27+
* @stoplight/prism-core bumped from ^5.5.4 to ^5.6.0
28+
* @stoplight/prism-http bumped from ^5.5.4 to ^5.6.0
29+
* @stoplight/prism-http-server bumped from ^5.5.4 to ^5.6.0

packages/cli/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-cli",
3-
"version": "5.5.4",
3+
"version": "5.6.0",
44
"author": "Stoplight <[email protected]>",
55
"bin": {
66
"prism": "./dist/index.js"
@@ -10,9 +10,9 @@
1010
"@stoplight/http-spec": "^7.0.2",
1111
"@stoplight/json": "^3.18.1",
1212
"@stoplight/json-schema-ref-parser": "9.2.7",
13-
"@stoplight/prism-core": "^5.5.4",
14-
"@stoplight/prism-http": "^5.5.4",
15-
"@stoplight/prism-http-server": "^5.5.4",
13+
"@stoplight/prism-core": "^5.6.0",
14+
"@stoplight/prism-http": "^5.6.0",
15+
"@stoplight/prism-http-server": "^5.6.0",
1616
"@stoplight/types": "^14.1.0",
1717
"chalk": "^4.1.2",
1818
"chokidar": "^3.5.2",

packages/core/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [5.6.0](https://github.com/stoplightio/prism/compare/v5.5.4...v5.6.0) (2024-03-18)
4+
5+
6+
### Features
7+
8+
* **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))

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-core",
3-
"version": "5.5.4",
3+
"version": "5.6.0",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"author": "Stoplight <[email protected]>",

packages/http-server/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Changelog
2+
3+
## [5.6.0](https://github.com/stoplightio/prism/compare/v5.5.4...v5.6.0) (2024-03-18)
4+
5+
6+
### Features
7+
8+
* 1813 start using 415 code for invalid content-types instead constantly inferring it ([df475fc](https://github.com/stoplightio/prism/commit/df475fcb67608428c143b3e6a988d95a1ef1fd3e))
9+
* adds more standard compliant request body handling ([#2260](https://github.com/stoplightio/prism/issues/2260)) ([3b56cb7](https://github.com/stoplightio/prism/commit/3b56cb72f41d106cbcc95bb7c27711a3c05c6298))
10+
* support circular refs ([#1835](https://github.com/stoplightio/prism/issues/1835)) ([d287dd7](https://github.com/stoplightio/prism/commit/d287dd700c2597c0b20214c8340680dd42e20085))
11+
12+
13+
### Bug Fixes
14+
15+
* **http-server:** discard request body if the content-length header i… ([#2103](https://github.com/stoplightio/prism/issues/2103)) ([c172f42](https://github.com/stoplightio/prism/commit/c172f42c89d67c3963eb9962d0550d5126756d34))
16+
* update http-spec ([#2037](https://github.com/stoplightio/prism/issues/2037)) ([72d6882](https://github.com/stoplightio/prism/commit/72d6882bc39a673e65b1fc10ff88d3581b838dca))
17+
18+
19+
### Dependencies
20+
21+
* The following workspace dependencies were updated
22+
* dependencies
23+
* @stoplight/prism-core bumped from ^5.5.4 to ^5.6.0
24+
* @stoplight/prism-http bumped from ^5.5.4 to ^5.6.0

packages/http-server/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-http-server",
3-
"version": "5.5.4",
3+
"version": "5.6.0",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"author": "Stoplight <[email protected]>",
@@ -19,8 +19,8 @@
1919
"access": "public"
2020
},
2121
"dependencies": {
22-
"@stoplight/prism-core": "^5.5.4",
23-
"@stoplight/prism-http": "^5.5.4",
22+
"@stoplight/prism-core": "^5.6.0",
23+
"@stoplight/prism-http": "^5.6.0",
2424
"@stoplight/types": "^14.1.0",
2525
"fast-xml-parser": "^4.2.0",
2626
"fp-ts": "^2.11.5",

packages/http/CHANGELOG.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Changelog
2+
3+
## [5.6.0](https://github.com/stoplightio/prism/compare/v5.5.4...v5.6.0) (2024-03-18)
4+
5+
6+
### Features
7+
8+
* 1813 start using 415 code for invalid content-types instead constantly inferring it ([df475fc](https://github.com/stoplightio/prism/commit/df475fcb67608428c143b3e6a988d95a1ef1fd3e))
9+
* adds more standard compliant request body handling ([#2260](https://github.com/stoplightio/prism/issues/2260)) ([3b56cb7](https://github.com/stoplightio/prism/commit/3b56cb72f41d106cbcc95bb7c27711a3c05c6298))
10+
* Allow JSON Schema Faker configuration in specification ([b72dd03](https://github.com/stoplightio/prism/commit/b72dd03e24bea4a7178c824eb0d83c68715f1503))
11+
* better validation for optional auth ([#2401](https://github.com/stoplightio/prism/issues/2401)) ([e2d9f0f](https://github.com/stoplightio/prism/commit/e2d9f0f23884c73a8dad371e3497a0956c00ee11))
12+
* **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))
13+
* **http:** detect complex schema error, improve error message ([#2327](https://github.com/stoplightio/prism/issues/2327)) ([07af511](https://github.com/stoplightio/prism/commit/07af51120ecb8593bc7c0892bc79f5ad5258a67c))
14+
* support circular refs ([#1835](https://github.com/stoplightio/prism/issues/1835)) ([d287dd7](https://github.com/stoplightio/prism/commit/d287dd700c2597c0b20214c8340680dd42e20085))
15+
16+
17+
### Bug Fixes
18+
19+
* [#1881](https://github.com/stoplightio/prism/issues/1881) fixed memory leak for validation ([931fc0f](https://github.com/stoplightio/prism/commit/931fc0fe47b4ff4ec58f8ba3369d50f8d1bf47c3))
20+
* [#1881](https://github.com/stoplightio/prism/issues/1881) fixed memory leak for validation ([bfc258a](https://github.com/stoplightio/prism/commit/bfc258aa98e49c46fa5116ca1e7b49b8a3117ce9))
21+
* [#1881](https://github.com/stoplightio/prism/issues/1881) fixed memory leak for validation ([1a05283](https://github.com/stoplightio/prism/commit/1a0528365251043d041c487ebeb905a51310e420))
22+
* fixed handling of number with format: double ([e10a1e5](https://github.com/stoplightio/prism/commit/e10a1e54995bd0a0c325412de63041835023f5d5))
23+
* 1917 fixed handling of example request for invalid requests ([444012b](https://github.com/stoplightio/prism/commit/444012bf1d9675abb2628727d4c5b39de486eb43))
24+
* another fix for memory leak of schema validation ([ded2a9b](https://github.com/stoplightio/prism/commit/ded2a9b110459b7c15e00115e5a600f6f8cd8438))
25+
* decode path before matching it ([ed5bce8](https://github.com/stoplightio/prism/commit/ed5bce837fb0cf83d15fb1a085227986f063aee7))
26+
* **http:** add explicit dependency on chalk ([#2263](https://github.com/stoplightio/prism/issues/2263)) ([55b07c9](https://github.com/stoplightio/prism/commit/55b07c98145799faf0aae47a023a34a6e22e714b))
27+
* json schema faker fillProperties not working ([#2398](https://github.com/stoplightio/prism/issues/2398)) ([e8acebd](https://github.com/stoplightio/prism/commit/e8acebd430dfe3cfc9db7bda3228256153346488))
28+
* keep encoded value if uri decoding fails. ([#2387](https://github.com/stoplightio/prism/issues/2387)) ([aba9bee](https://github.com/stoplightio/prism/commit/aba9bee0dae442da8364c327bd3d2e560e7de4cc))
29+
* remove deprecated usage of parse ([#1959](https://github.com/stoplightio/prism/issues/1959)) ([ea5b445](https://github.com/stoplightio/prism/commit/ea5b44555435424c2743fd3cde9bea75a408c6b8))
30+
* replace date-time validator with our bug fixed version ([#1856](https://github.com/stoplightio/prism/issues/1856)) ([44186db](https://github.com/stoplightio/prism/commit/44186dbf6eba6ad506fd9f08e473edf891cdbf3c))
31+
* update http-spec ([#2037](https://github.com/stoplightio/prism/issues/2037)) ([72d6882](https://github.com/stoplightio/prism/commit/72d6882bc39a673e65b1fc10ff88d3581b838dca))
32+
* upgrade dependencies and resolve breaking http spec changes ([#2105](https://github.com/stoplightio/prism/issues/2105)) ([ebbc6c1](https://github.com/stoplightio/prism/commit/ebbc6c1546aced8db0f492dd80651d2459c9bae0))
33+
* use proper client call in memory leak tests ([c223192](https://github.com/stoplightio/prism/commit/c223192750c2edde958e43da8bffe639f2672952))
34+
* validateOutput() when schema contains internal reference ([#2363](https://github.com/stoplightio/prism/issues/2363)) ([8e143e6](https://github.com/stoplightio/prism/commit/8e143e6622bdc8098a5c86c399831a12858612d5))
35+
36+
37+
### Dependencies
38+
39+
* The following workspace dependencies were updated
40+
* dependencies
41+
* @stoplight/prism-core bumped from ^5.5.4 to ^5.6.0

packages/http/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-http",
3-
"version": "5.5.4",
3+
"version": "5.6.0",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"author": "Stoplight <[email protected]>",
@@ -20,7 +20,7 @@
2020
"@stoplight/json": "^3.18.1",
2121
"@stoplight/json-schema-merge-allof": "0.7.8",
2222
"@stoplight/json-schema-sampler": "0.3.0",
23-
"@stoplight/prism-core": "^5.5.4",
23+
"@stoplight/prism-core": "^5.6.0",
2424
"@stoplight/types": "^14.1.0",
2525
"@stoplight/yaml": "^4.2.3",
2626
"abstract-logging": "^2.0.1",

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.5.4
1+
5.6.0

0 commit comments

Comments
 (0)