Skip to content

Commit

Permalink
chore: release 0.18.0 (#741)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyJones authored Oct 17, 2024
1 parent 021a4d7 commit c4ac7d3
Show file tree
Hide file tree
Showing 34 changed files with 408 additions and 122 deletions.
30 changes: 15 additions & 15 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"packages/case-core": "0.17.1",
"packages/case-definition-dsl": "0.17.1",
"packages/case-core-plugin-http": "0.17.1",
"packages/case-core-plugin-http-dsl": "0.17.1",
"packages/case-core-plugin-function": "0.17.1",
"packages/case-core-plugin-function-dsl": "0.17.1",
"packages/case-plugin-base": "0.17.1",
"packages/case-plugin-dsl-types": "0.17.1",
"packages/case-entities": "0.17.1",
"packages/contract-case-jest": "0.12.5",
"packages/case-core": "0.18.0",
"packages/case-definition-dsl": "0.18.0",
"packages/case-core-plugin-http": "0.18.0",
"packages/case-core-plugin-http-dsl": "0.18.0",
"packages/case-core-plugin-function": "0.18.0",
"packages/case-core-plugin-function-dsl": "0.18.0",
"packages/case-plugin-base": "0.18.0",
"packages/case-plugin-dsl-types": "0.18.0",
"packages/case-entities": "0.18.0",
"packages/contract-case-jest": "0.13.0",
"packages/documentation": "0.0.8",
".": "0.17.1",
"packages/contract-case-cli": "0.2.5",
".": "0.18.0",
"packages/contract-case-cli": "0.2.6",
"packages/case-maintainer-config": "0.1.0",
"packages/eslint-config-case-maintainer": "0.1.1",
"packages/case-connector": "0.9.0",
"packages/case-connector-proto": "0.8.0",
"packages/dsl-java": "0.2.3"
"packages/case-connector": "0.10.0",
"packages/case-connector-proto": "0.9.0",
"packages/dsl-java": "0.3.0"
}
16 changes: 16 additions & 0 deletions docs/maintainers/FULL-CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.18.0](https://github.com/case-contract-testing/contract-case/compare/v0.17.1...v0.18.0) (2024-10-17)


### ⚠ BREAKING CHANGES

* Replace the config object in triggers with a clearer SetupInfo type, allowing cross-language function calls as mocks. Note that the function calls now always return json strings, user-facing DSLs will need to parse the strings

### Bug Fixes

* Improve broker logging and error reporting ([61fb28d](https://github.com/case-contract-testing/contract-case/commit/61fb28d362879fe68e70b2b15504da5c8b82ec5a))


### Code Refactoring

* Replace the config object in triggers with a clearer SetupInfo type, allowing cross-language function calls as mocks. Note that the function calls now always return json strings, user-facing DSLs will need to parse the strings ([c9ddd93](https://github.com/case-contract-testing/contract-case/commit/c9ddd93782b5e11cd5925ea76e089e0d779fdc11))

## [0.17.1](https://github.com/case-contract-testing/contract-case/compare/v0.17.0...v0.17.1) (2024-10-08)


Expand Down
106 changes: 53 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"workspaces": [
"packages/*"
],
"version": "0.17.1",
"version": "0.18.0",
"devDependencies": {
"@contract-case/eslint-config-case-maintainer": "0.1.1",
"example-extractor": "^0.0.4",
Expand Down
11 changes: 11 additions & 0 deletions packages/case-connector-proto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.9.0](https://github.com/case-contract-testing/contract-case/compare/@contract-case/case-connector-proto-v0.8.0...@contract-case/case-connector-proto-v0.9.0) (2024-10-17)


### ⚠ BREAKING CHANGES

* Replace the config struct in triggers with a fully specified SetupInfo object

### Code Refactoring

* Replace the config struct in triggers with a fully specified SetupInfo object ([5d76d84](https://github.com/case-contract-testing/contract-case/commit/5d76d8478f505fe04801c5ed11199aee82e86e4f))

## [0.8.0](https://github.com/case-contract-testing/contract-case/compare/@contract-case/case-connector-proto-v0.7.6...@contract-case/case-connector-proto-v0.8.0) (2024-10-08)


Expand Down
2 changes: 1 addition & 1 deletion packages/case-connector-proto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contract-case/case-connector-proto",
"version": "0.8.0",
"version": "0.9.0",
"description": "Generated proto files for ContractCase's CaseConnector",
"author": "Timothy Jones <[email protected]> (https://github.com/TimothyJones)",
"homepage": "https://case.contract-testing.io/docs",
Expand Down
25 changes: 25 additions & 0 deletions packages/case-connector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [0.10.0](https://github.com/case-contract-testing/contract-case/compare/@contract-case/case-connector-v0.9.0...@contract-case/case-connector-v0.10.0) (2024-10-17)


### ⚠ BREAKING CHANGES

* Replace the config object in triggers with a clearer SetupInfo type, allowing cross-language function calls as mocks. Note that the function calls now always return json strings, user-facing DSLs will need to parse the strings

### Bug Fixes

* Accurately include version numbers at runtime ([cca80e3](https://github.com/case-contract-testing/contract-case/commit/cca80e32f2dd055388e3cadd0239c883d556bb49))


### Code Refactoring

* Replace the config object in triggers with a clearer SetupInfo type, allowing cross-language function calls as mocks. Note that the function calls now always return json strings, user-facing DSLs will need to parse the strings ([c9ddd93](https://github.com/case-contract-testing/contract-case/commit/c9ddd93782b5e11cd5925ea76e089e0d779fdc11))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @contract-case/case-core bumped from 0.17.1 to 0.18.0
* @contract-case/case-connector-proto bumped from 0.8.0 to 0.9.0
* @contract-case/case-entities-internal bumped from 0.17.1 to 0.18.0

## [0.9.0](https://github.com/case-contract-testing/contract-case/compare/@contract-case/case-connector-v0.8.4...@contract-case/case-connector-v0.9.0) (2024-10-08)


Expand Down
8 changes: 4 additions & 4 deletions packages/case-connector/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contract-case/case-connector",
"version": "0.9.0",
"version": "0.10.0",
"type": "module",
"description": "Connector to allow ContractCase to run as a server. Use only if you're creating a custom wrapper for a new language",
"author": "Timothy Jones <[email protected]> (https://github.com/TimothyJones)",
Expand Down Expand Up @@ -50,9 +50,9 @@
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@contract-case/case-core": "0.17.1",
"@contract-case/case-connector-proto": "0.8.0",
"@contract-case/case-entities-internal": "0.17.1",
"@contract-case/case-core": "0.18.0",
"@contract-case/case-connector-proto": "0.9.0",
"@contract-case/case-entities-internal": "0.18.0",
"@grpc/grpc-js": "^1.11.1",
"@grpc/proto-loader": "^0.7.10",
"get-port": "^7.1.0",
Expand Down
Loading

0 comments on commit c4ac7d3

Please sign in to comment.