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

5.5.3 #2450

Merged
merged 2 commits into from
Jan 12, 2024
Merged

5.5.3 #2450

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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

# Unreleased

# 5.5.3 (2024.1.12)

- added functionality to show unevaluated property name in error message [#2441](https://github.com/stoplightio/prism/pull/2441) - thanks @aleung for your contribution!

# 5.5.2 (2023.12.01)

- added support for default JSON deserialization for arrays of objects in form data request bodies in OpenAPI 3 [#2379](https://github.com/stoplightio/prism/pull/2379) - thanks @ilanashapiro for your contribution!
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"packages": ["packages/*"],
"npmClient": "yarn",
"version": "5.5.2",
"version": "5.5.3",
"independent": false,
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stoplight/prism-cli",
"version": "5.5.2",
"version": "5.5.3",
"author": "Stoplight <[email protected]>",
"bin": {
"prism": "./dist/index.js"
Expand All @@ -10,9 +10,9 @@
"@stoplight/http-spec": "^6.0.2",
"@stoplight/json": "^3.18.1",
"@stoplight/json-schema-ref-parser": "9.2.7",
"@stoplight/prism-core": "^5.5.2",
"@stoplight/prism-http": "^5.5.2",
"@stoplight/prism-http-server": "^5.5.2",
"@stoplight/prism-core": "^5.5.3",
"@stoplight/prism-http": "^5.5.3",
"@stoplight/prism-http-server": "^5.5.3",
"@stoplight/types": "^14.0.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stoplight/prism-core",
"version": "5.5.2",
"version": "5.5.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Stoplight <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions packages/http-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stoplight/prism-http-server",
"version": "5.5.2",
"version": "5.5.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Stoplight <[email protected]>",
Expand All @@ -19,8 +19,8 @@
"access": "public"
},
"dependencies": {
"@stoplight/prism-core": "^5.5.2",
"@stoplight/prism-http": "^5.5.2",
"@stoplight/prism-core": "^5.5.3",
"@stoplight/prism-http": "^5.5.3",
"@stoplight/types": "^14.0.0",
"fast-xml-parser": "^4.2.0",
"fp-ts": "^2.11.5",
Expand Down
4 changes: 2 additions & 2 deletions packages/http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stoplight/prism-http",
"version": "5.5.2",
"version": "5.5.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Stoplight <[email protected]>",
Expand All @@ -20,7 +20,7 @@
"@stoplight/json": "^3.18.1",
"@stoplight/json-schema-merge-allof": "0.7.8",
"@stoplight/json-schema-sampler": "0.3.0",
"@stoplight/prism-core": "^5.5.2",
"@stoplight/prism-core": "^5.5.3",
"@stoplight/types": "^14.0.0",
"@stoplight/yaml": "^4.2.3",
"abstract-logging": "^2.0.1",
Expand Down