Skip to content

Commit 804e8e3

Browse files
chore: release master (#2503)
1 parent ed41dca commit 804e8e3

File tree

9 files changed

+54
-11
lines changed

9 files changed

+54
-11
lines changed

.release-please-manifest.json

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

CHANGELOG.md

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

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

9+
## [5.7.0](https://github.com/stoplightio/prism/compare/v5.6.0...v5.7.0) (2024-03-22)
10+
11+
12+
### Features
13+
14+
* STOP-243 - create prism instance with full spec ([#2501](https://github.com/stoplightio/prism/issues/2501)) ([ed41dca](https://github.com/stoplightio/prism/commit/ed41dca89e5ad673f1a0d813b403a44de7e367b2))
15+
916
## [5.6.0](https://github.com/stoplightio/prism/compare/v5.5.4...v5.6.0) (2024-03-18)
1017

1118
This is an inaccurate view of this release.

packages/cli/CHANGELOG.md

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

3+
## [5.7.0](https://github.com/stoplightio/prism/compare/v5.6.0...v5.7.0) (2024-03-22)
4+
5+
6+
### Features
7+
8+
* STOP-243 - create prism instance with full spec ([#2501](https://github.com/stoplightio/prism/issues/2501)) ([ed41dca](https://github.com/stoplightio/prism/commit/ed41dca89e5ad673f1a0d813b403a44de7e367b2))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @stoplight/prism-http bumped from ^5.6.0 to ^5.7.0
16+
* @stoplight/prism-http-server bumped from ^5.6.0 to ^5.7.0
17+
318
## [5.6.0](https://github.com/stoplightio/prism/compare/v5.5.4...v5.6.0) (2024-03-18)
419

520

packages/cli/package.json

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

packages/http-server/CHANGELOG.md

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

3+
## [5.7.0](https://github.com/stoplightio/prism/compare/v5.6.0...v5.7.0) (2024-03-22)
4+
5+
6+
### Features
7+
8+
* STOP-243 - create prism instance with full spec ([#2501](https://github.com/stoplightio/prism/issues/2501)) ([ed41dca](https://github.com/stoplightio/prism/commit/ed41dca89e5ad673f1a0d813b403a44de7e367b2))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @stoplight/prism-http bumped from ^5.6.0 to ^5.7.0
16+
317
## [5.6.0](https://github.com/stoplightio/prism/compare/v5.5.4...v5.6.0) (2024-03-18)
418

519

packages/http-server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-http-server",
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]>",
@@ -20,7 +20,7 @@
2020
},
2121
"dependencies": {
2222
"@stoplight/prism-core": "^5.6.0",
23-
"@stoplight/prism-http": "^5.6.0",
23+
"@stoplight/prism-http": "^5.7.0",
2424
"@stoplight/types": "^14.1.0",
2525
"fast-xml-parser": "^4.2.0",
2626
"fp-ts": "^2.11.5",

packages/http/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-03-22)
4+
5+
6+
### Features
7+
8+
* STOP-243 - create prism instance with full spec ([#2501](https://github.com/stoplightio/prism/issues/2501)) ([ed41dca](https://github.com/stoplightio/prism/commit/ed41dca89e5ad673f1a0d813b403a44de7e367b2))
9+
310
## [5.6.0](https://github.com/stoplightio/prism/compare/v5.5.4...v5.6.0) (2024-03-18)
411

512

packages/http/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-http",
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]>",

version.txt

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

0 commit comments

Comments
 (0)