Skip to content

Commit 3b45e51

Browse files
chore: release master (#2765)
1 parent 87692fa commit 3b45e51

10 files changed

Lines changed: 58 additions & 16 deletions

File tree

.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: github.event_name == 'push' && startsWith(github.event.head_commit.message, 'chore: release 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: github.event_name == 'push' && startsWith(github.event.head_commit.message, 'chore: release 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.2",
4-
"packages/core": "5.11.0",
5-
"packages/http": "5.15.0",
6-
"packages/http-server": "5.15.1"
3+
"packages/cli": "5.15.3",
4+
"packages/core": "5.12.0",
5+
"packages/http": "5.15.1",
6+
"packages/http-server": "5.15.2"
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.3](https://github.com/stoplightio/prism/compare/v5.15.2...v5.15.3) (2026-03-30)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @stoplight/prism-core bumped from ^5.11.0 to ^5.12.0
11+
* @stoplight/prism-http bumped from 5.15.0 to 5.15.1
12+
* @stoplight/prism-http-server bumped from ^5.15.1 to ^5.15.2
13+
314
## [5.15.2](https://github.com/stoplightio/prism/compare/v5.15.1...v5.15.2) (2026-03-30)
415

516

packages/cli/package.json

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

packages/core/CHANGELOG.md

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

3+
## [5.12.0](https://github.com/stoplightio/prism/compare/v5.11.0...v5.12.0) (2026-03-30)
4+
5+
6+
### Features
7+
8+
* **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))
9+
310
## [5.11.0](https://github.com/stoplightio/prism/compare/v5.10.0...v5.11.0) (2026-03-30)
411

512

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.11.0",
3+
"version": "5.12.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.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.11.0 to ^5.12.0
11+
* @stoplight/prism-http bumped from ^5.15.0 to ^5.15.1
12+
313
## [5.15.1](https://github.com/stoplightio/prism/compare/v5.15.0...v5.15.1) (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.1",
3+
"version": "5.15.2",
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.11.0",
23-
"@stoplight/prism-http": "^5.15.0",
22+
"@stoplight/prism-core": "^5.12.0",
23+
"@stoplight/prism-http": "^5.15.1",
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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# Changelog
22

33

4+
## [5.15.1](https://github.com/stoplightio/prism/compare/v5.15.0...v5.15.1) (2026-03-30)
5+
6+
7+
### Bug Fixes
8+
9+
* 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))
10+
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* @stoplight/prism-core bumped from ^5.11.0 to ^5.12.0
17+
418
## [5.15.0](https://github.com/stoplightio/prism/compare/v5.14.0...v5.15.0) (2026-03-30)
519

620

packages/http/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/prism-http",
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>",
@@ -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.11.0",
23+
"@stoplight/prism-core": "^5.12.0",
2424
"@stoplight/http-spec": "^7.1.0",
2525
"@stoplight/json-schema-ref-parser": "10.0.0",
2626
"@stoplight/types": "^14.1.0",

0 commit comments

Comments
 (0)