Skip to content

Commit

Permalink
- Updated @asyncapi/react-component to v1.2.11
Browse files Browse the repository at this point in the history
- Use npm-ci instead of npm-install in ci scripts
  • Loading branch information
m-wild committed Jan 16, 2024
1 parent 74d4775 commit 7845604
Show file tree
Hide file tree
Showing 8 changed files with 2,601 additions and 392 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
dotnet-version: '6.0.x' # SDK Version to use; x will use the latest version of the channel

- name: Run NPM install
run: npm install
run: npm ci
working-directory: ./src/Saunter.UI
- name: Run dotnet build
run: dotnet build --configuration Debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
dotnet-version: '6.0.x' # SDK Version to use; x will use the latest version of the channel

- name: Run NPM install
run: npm install
run: npm ci
working-directory: ./src/Saunter.UI
- name: Run dotnet build
run: dotnet build --configuration Debug
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

<!-- Please update the links section at the bottom when adding a new version. -->


## [v0.13.0] - 2024-01-16
### Changed
- [Updated NJsonSchema to v11.0.0](https://github.com/m-wild/saunter/issues/179)
- [Document names are correctly copied to clones when using named docs](https://github.com/m-wild/saunter/issues/172)
- Updated @asyncapi/react-component to v1.2.11
- Use npm-ci instead of npm-install in ci scripts

## [v0.12.0] - 2023-06-15
### Added
- [Add support for message headers](https://github.com/tehmantra/saunter/issues/150)
Expand Down
2 changes: 1 addition & 1 deletion Saunter.sln
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Saunter.IntegrationTests.ReverseProxy", "test\Saunter.IntegrationTests.ReverseProxy\Saunter.IntegrationTests.ReverseProxy.csproj", "{7CD09B89-130A-41AF-ADAE-2166C4ED695B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Saunter.Tests.MarkerTypeTests", "Saunter.Tests.MarkerTypeTests\Saunter.Tests.MarkerTypeTests.csproj", "{02284473-6DE7-4EE0-8433-2AC295045549}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Saunter.Tests.MarkerTypeTests", "test\Saunter.Tests.MarkerTypeTests\Saunter.Tests.MarkerTypeTests.csproj", "{02284473-6DE7-4EE0-8433-2AC295045549}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2,977 changes: 2,589 additions & 388 deletions src/Saunter.UI/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Saunter.UI/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"version": "1.0.0",
"private": true,
"dependencies": {
"@asyncapi/react-component": "^1.0.0-next.48"
"@asyncapi/react-component": "^1.2.11"
}
}
File renamed without changes.

0 comments on commit 7845604

Please sign in to comment.