Skip to content

Commit 8c8027a

Browse files
chore: release master (#2517)
1 parent 4b175a6 commit 8c8027a

11 files changed

+85
-16
lines changed

.release-please-manifest.json

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

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
<!-- markdown-link-check-disable -->
88

9+
## [5.8.0](https://github.com/stoplightio/prism/compare/v5.7.0...v5.8.0) (2024-04-29)
10+
11+
12+
### Features
13+
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+
16+
17+
### Bug Fixes
18+
19+
* readOnly objects in arrays are handled correctly ([#2513](https://github.com/stoplightio/prism/issues/2513)) ([7670236](https://github.com/stoplightio/prism/commit/767023681f481d5e9d8c46203613faa635541eab))
20+
921
## [5.7.0](https://github.com/stoplightio/prism/compare/v5.6.0...v5.7.0) (2024-03-22)
1022

1123

packages/cli/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [5.8.0](https://github.com/stoplightio/prism/compare/v5.7.0...v5.8.0) (2024-04-29)
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+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @stoplight/prism-core bumped from ^5.6.0 to ^5.7.0
16+
* @stoplight/prism-http bumped from ^5.7.0 to ^5.8.0
17+
* @stoplight/prism-http-server bumped from ^5.7.0 to ^5.8.0
18+
319
## [5.7.0](https://github.com/stoplightio/prism/compare/v5.6.0...v5.7.0) (2024-03-22)
420

521

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.7.0",
3+
"version": "5.8.0",
44
"author": "Stoplight <[email protected]>",
55
"bin": {
66
"prism": "./dist/index.js"
@@ -9,9 +9,9 @@
99
"dependencies": {
1010
"@stoplight/json": "^3.18.1",
1111
"@stoplight/json-schema-ref-parser": "9.2.7",
12-
"@stoplight/prism-core": "^5.6.0",
13-
"@stoplight/prism-http": "^5.7.0",
14-
"@stoplight/prism-http-server": "^5.7.0",
12+
"@stoplight/prism-core": "^5.7.0",
13+
"@stoplight/prism-http": "^5.8.0",
14+
"@stoplight/prism-http-server": "^5.8.0",
1515
"@stoplight/types": "^14.1.0",
1616
"chalk": "^4.1.2",
1717
"chokidar": "^3.5.2",

packages/core/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [5.7.0](https://github.com/stoplightio/prism/compare/v5.6.0...v5.7.0) (2024-04-29)
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+
310
## [5.6.0](https://github.com/stoplightio/prism/compare/v5.5.4...v5.6.0) (2024-03-18)
411

512

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.6.0",
3+
"version": "5.7.0",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"author": "Stoplight <[email protected]>",

packages/http-server/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [5.8.0](https://github.com/stoplightio/prism/compare/v5.7.0...v5.8.0) (2024-04-29)
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+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @stoplight/prism-core bumped from ^5.6.0 to ^5.7.0
16+
* @stoplight/prism-http bumped from ^5.7.0 to ^5.8.0
17+
318
## [5.7.0](https://github.com/stoplightio/prism/compare/v5.6.0...v5.7.0) (2024-03-22)
419

520

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.7.0",
3+
"version": "5.8.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.6.0",
23-
"@stoplight/prism-http": "^5.7.0",
22+
"@stoplight/prism-core": "^5.7.0",
23+
"@stoplight/prism-http": "^5.8.0",
2424
"@stoplight/types": "^14.1.0",
2525
"fast-xml-parser": "^4.2.0",
2626
"fp-ts": "^2.11.5",

packages/http/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [5.8.0](https://github.com/stoplightio/prism/compare/v5.7.0...v5.8.0) (2024-04-29)
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+
10+
11+
### Bug Fixes
12+
13+
* readOnly objects in arrays are handled correctly ([#2513](https://github.com/stoplightio/prism/issues/2513)) ([7670236](https://github.com/stoplightio/prism/commit/767023681f481d5e9d8c46203613faa635541eab))
14+
15+
16+
### Dependencies
17+
18+
* The following workspace dependencies were updated
19+
* dependencies
20+
* @stoplight/prism-core bumped from ^5.6.0 to ^5.7.0
21+
322
## [5.7.0](https://github.com/stoplightio/prism/compare/v5.6.0...v5.7.0) (2024-03-22)
423

524

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.7.0",
3+
"version": "5.8.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.6.0",
23+
"@stoplight/prism-core": "^5.7.0",
2424
"@stoplight/http-spec": "^7.0.3",
2525
"@stoplight/json-schema-ref-parser": "9.2.7",
2626
"@stoplight/types": "^14.1.0",

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.7.0
1+
5.8.0

0 commit comments

Comments
 (0)