Skip to content

Commit

Permalink
chore: release 0.17.1 (#730)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyJones authored Oct 8, 2024
1 parent 99cfa94 commit 0fdf254
Show file tree
Hide file tree
Showing 34 changed files with 348 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.0",
"packages/case-definition-dsl": "0.17.0",
"packages/case-core-plugin-http": "0.17.0",
"packages/case-core-plugin-http-dsl": "0.17.0",
"packages/case-core-plugin-function": "0.17.0",
"packages/case-core-plugin-function-dsl": "0.17.0",
"packages/case-plugin-base": "0.17.0",
"packages/case-plugin-dsl-types": "0.17.0",
"packages/case-entities": "0.17.0",
"packages/contract-case-jest": "0.12.4",
"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/documentation": "0.0.8",
".": "0.17.0",
"packages/contract-case-cli": "0.2.4",
".": "0.17.1",
"packages/contract-case-cli": "0.2.5",
"packages/case-maintainer-config": "0.1.0",
"packages/eslint-config-case-maintainer": "0.1.1",
"packages/case-connector": "0.8.4",
"packages/case-connector-proto": "0.7.6",
"packages/dsl-java": "0.2.2"
"packages/case-connector": "0.9.0",
"packages/case-connector-proto": "0.8.0",
"packages/dsl-java": "0.2.3"
}
10 changes: 10 additions & 0 deletions docs/maintainers/FULL-CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

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


### Bug Fixes

* Correct location of error messages when the string prefix / suffix don't resolve to strings ([ba3746e](https://github.com/case-contract-testing/contract-case/commit/ba3746e4ee5faab80051efe6aface1288f5a419b))
* Further improve logging of function invocation ([6641155](https://github.com/case-contract-testing/contract-case/commit/664115569ac7aac041ca05c6abe58cc585d9088c))
* Include all error messages in overall verification failed error ([889439f](https://github.com/case-contract-testing/contract-case/commit/889439faaacde40e54d988b93436bfa2d1a18253))
* Warn if the contract filename is too long ([fcc80d7](https://github.com/case-contract-testing/contract-case/commit/fcc80d7ed55a37bc85f95df3c460d8ad09d79e32))

## [0.17.0](https://github.com/case-contract-testing/contract-case/compare/v0.16.3...v0.17.0) (2024-10-02)


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.0",
"version": "0.17.1",
"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.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)


### ⚠ BREAKING CHANGES

* The gRRPC SuccessWithAny type now contains a json string instead of a struct, for ease of mapping

### Code Refactoring

* The gRRPC SuccessWithAny type now contains a json string instead of a struct, for ease of mapping ([adf66dd](https://github.com/case-contract-testing/contract-case/commit/adf66dd6e42eb85b5c5ece2d06405cb677e684e8))

## [0.7.6](https://github.com/case-contract-testing/contract-case/compare/@contract-case/case-connector-proto-v0.7.5...@contract-case/case-connector-proto-v0.7.6) (2024-10-01)


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.7.6",
"version": "0.8.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
26 changes: 26 additions & 0 deletions packages/case-connector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [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)


### ⚠ BREAKING CHANGES

* The gRRPC SuccessWithAny type now contains a json string instead of a struct, for ease of mapping

### Bug Fixes

* Improve error message if the invokeable function's return value fails to parse ([3634d5d](https://github.com/case-contract-testing/contract-case/commit/3634d5d5fba4ccfc27b479911322fbe2847c0dba))
* Substantially improve maintainer logging ([30a882b](https://github.com/case-contract-testing/contract-case/commit/30a882b69e971b44285ef74e6da76ccef1a8a1ad))


### Code Refactoring

* The gRRPC SuccessWithAny type now contains a json string instead of a struct, for ease of mapping ([adf66dd](https://github.com/case-contract-testing/contract-case/commit/adf66dd6e42eb85b5c5ece2d06405cb677e684e8))


### Dependencies

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

## [0.8.4](https://github.com/case-contract-testing/contract-case/compare/@contract-case/case-connector-v0.8.3...@contract-case/case-connector-v0.8.4) (2024-10-02)


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.8.4",
"version": "0.9.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.0",
"@contract-case/case-connector-proto": "0.7.6",
"@contract-case/case-entities-internal": "0.17.0",
"@contract-case/case-core": "0.17.1",
"@contract-case/case-connector-proto": "0.8.0",
"@contract-case/case-entities-internal": "0.17.1",
"@grpc/grpc-js": "^1.11.1",
"@grpc/proto-loader": "^0.7.10",
"get-port": "^7.1.0",
Expand Down
Loading

0 comments on commit 0fdf254

Please sign in to comment.