Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit 867add3

Browse files
authored
Merge branch 'event-catalog:main' into main
2 parents 321b5ea + df9490b commit 867add3

File tree

9 files changed

+1866
-1509
lines changed

9 files changed

+1866
-1509
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: pnpm/action-setup@v4
1717
with:
18-
version: 8
18+
version: 9
1919
- name: Installation
2020
run: pnpm i
2121
- name: Prettier Code

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Use Node.js 20.x
1919
uses: pnpm/action-setup@v4
2020
with:
21-
version: 8
21+
version: 9
2222
- name: Installation
2323
run: pnpm install
2424
- name: Build

.github/workflows/tests.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# Make sure the EventCatalog can build OK
21
name: Tests
32

43
on:
@@ -10,15 +9,29 @@ on:
109
- main
1110

1211
jobs:
13-
build:
14-
name: Tests
12+
build-ubuntu:
13+
name: Tests on Ubuntu
1514
timeout-minutes: 30
1615
runs-on: ubuntu-latest
1716
steps:
1817
- uses: actions/checkout@v4
1918
- uses: pnpm/action-setup@v4
2019
with:
21-
version: 8
20+
version: 9
21+
- name: Installation
22+
run: pnpm install
23+
- name: Run tests
24+
run: pnpm run test
25+
26+
build-windows:
27+
name: Tests on Windows
28+
timeout-minutes: 30
29+
runs-on: windows-latest
30+
steps:
31+
- uses: actions/checkout@v4
32+
- uses: pnpm/action-setup@v4
33+
with:
34+
version: 9
2235
- name: Installation
2336
run: pnpm install
2437
- name: Run tests

.github/workflows/verify-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: pnpm/action-setup@v4
1818
with:
19-
version: 8
19+
version: 9
2020
- name: Installation
2121
run: pnpm i
2222
- name: Build

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @eventcatalog/generator-openapi
22

3+
## 2.1.1
4+
5+
### Patch Changes
6+
7+
- 6fb2a83: chore(plugin): removed code to set unique messages as sdk now does this
8+
9+
## 2.1.0
10+
11+
### Minor Changes
12+
13+
- d7ed60c: chore(plugin): fixed issues with windows OS
14+
315
## 2.0.1
416

517
### Patch Changes

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eventcatalog/generator-openapi",
3-
"version": "2.0.1",
3+
"version": "2.1.1",
44
"description": "OpenAPI generator for EventCatalog",
55
"scripts": {
66
"build": "tsup",
@@ -35,7 +35,7 @@
3535
"dependencies": {
3636
"@apidevtools/swagger-parser": "^10.1.0",
3737
"@changesets/cli": "^2.27.7",
38-
"@eventcatalog/sdk": "^0.1.3",
38+
"@eventcatalog/sdk": "^0.1.4",
3939
"chalk": "^4",
4040
"openapi-types": "^12.1.3",
4141
"slugify": "^1.6.6"

0 commit comments

Comments
 (0)