Skip to content

Commit dbdf959

Browse files
committed
chore: release
1 parent cc9a717 commit dbdf959

38 files changed

Lines changed: 443 additions & 130 deletions

File tree

.release-please-manifest.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
2-
"packages/case-core": "0.18.0",
3-
"packages/case-definition-dsl": "0.18.0",
4-
"packages/case-core-plugin-http": "0.18.0",
5-
"packages/case-core-plugin-http-dsl": "0.18.0",
6-
"packages/case-core-plugin-function": "0.18.0",
7-
"packages/case-core-plugin-function-dsl": "0.18.0",
8-
"packages/case-plugin-base": "0.18.0",
9-
"packages/case-plugin-dsl-types": "0.18.0",
10-
"packages/case-entities": "0.18.0",
11-
"packages/contract-case-jest": "0.13.0",
12-
"packages/documentation": "0.0.8",
13-
".": "0.18.0",
14-
"packages/contract-case-cli": "0.2.6",
2+
"packages/case-core": "0.19.0",
3+
"packages/case-definition-dsl": "0.19.0",
4+
"packages/case-core-plugin-http": "0.19.0",
5+
"packages/case-core-plugin-http-dsl": "0.19.0",
6+
"packages/case-core-plugin-function": "0.19.0",
7+
"packages/case-core-plugin-function-dsl": "0.19.0",
8+
"packages/case-plugin-base": "0.19.0",
9+
"packages/case-plugin-dsl-types": "0.19.0",
10+
"packages/case-entities": "0.19.0",
11+
"packages/contract-case-jest": "0.13.1",
12+
"packages/documentation": "0.0.9",
13+
".": "0.19.0",
14+
"packages/contract-case-cli": "0.2.7",
1515
"packages/case-maintainer-config": "0.1.0",
1616
"packages/eslint-config-case-maintainer": "0.1.1",
17-
"packages/case-connector": "0.10.0",
18-
"packages/case-connector-proto": "0.9.0",
19-
"packages/dsl-java": "0.3.0",
20-
"packages/documentation-matchers-generator": "0.0.1"
17+
"packages/case-connector": "0.10.1",
18+
"packages/case-connector-proto": "0.9.1",
19+
"packages/dsl-java": "0.3.1",
20+
"packages/documentation-matchers-generator": "0.0.2"
2121
}

docs/maintainers/FULL-CHANGELOG.md

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

3+
## [0.19.0](https://github.com/case-contract-testing/contract-case/compare/v0.18.0...v0.19.0) (2024-12-30)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Allow different tests to have different values for the same default state variable. Contracts using state variables from the previous version will need to be regnerated
9+
* Add ability for matchers to validate their own content. This is a breaking change for any plugin authors, as matcher Executor implementations now need to provide validation functions
10+
* Move the matchers to packages grouped around related functionality - please update your imports following the matcher documentation
11+
12+
### Features
13+
14+
* Add ability for matchers to validate their own content. This is a breaking change for any plugin authors, as matcher Executor implementations now need to provide validation functions ([afaa8d7](https://github.com/case-contract-testing/contract-case/commit/afaa8d75d81e45ca7609f89b1e17819183bc59b2))
15+
* Add ability for the current version to be generated from the git sha ([dd70365](https://github.com/case-contract-testing/contract-case/commit/dd703650fd058d34f6d772011b74faec10b93074))
16+
* Expose docs-json for auto-documentation purposes ([2ff4e97](https://github.com/case-contract-testing/contract-case/commit/2ff4e97501bc29af4af085d7a751b752bad8e82c))
17+
* Run parameter validators ahead of the self-check, allowing early warning of configuration mistakes in example interactions ([186d2e5](https://github.com/case-contract-testing/contract-case/commit/186d2e58eff512d37e53425ac353b231d15250a8))
18+
19+
20+
### Bug Fixes
21+
22+
* Allow different tests to have different values for the same default state variable. Contracts using state variables from the previous version will need to be regnerated ([2984d2b](https://github.com/case-contract-testing/contract-case/commit/2984d2baf29406fab884c5fffc790b6022621047))
23+
24+
25+
### Code Refactoring
26+
27+
* Move the matchers to packages grouped around related functionality - please update your imports following the matcher documentation ([1edbda0](https://github.com/case-contract-testing/contract-case/commit/1edbda04c1fc6bcee19bfb13beb30980714bbfb6))
28+
329
## [0.18.0](https://github.com/case-contract-testing/contract-case/compare/v0.17.1...v0.18.0) (2024-10-17)
430

531

package-lock.json

Lines changed: 56 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"workspaces": [
55
"packages/*"
66
],
7-
"version": "0.18.0",
7+
"version": "0.19.0",
88
"devDependencies": {
99
"@contract-case/eslint-config-case-maintainer": "0.1.1",
1010
"example-extractor": "^0.0.4",

packages/case-connector-proto/CHANGELOG.md

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

3+
## [0.9.1](https://github.com/case-contract-testing/contract-case/compare/@contract-case/case-connector-proto-v0.9.0...@contract-case/case-connector-proto-v0.9.1) (2024-12-30)
4+
5+
6+
### Features
7+
8+
* Add ability for the current version to be generated from the git sha ([dd70365](https://github.com/case-contract-testing/contract-case/commit/dd703650fd058d34f6d772011b74faec10b93074))
9+
310
## [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)
411

512

packages/case-connector-proto/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@contract-case/case-connector-proto",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Generated proto files for ContractCase's CaseConnector",
55
"author": "Timothy Jones <timothy.l.jones@gmail.com> (https://github.com/TimothyJones)",
66
"homepage": "https://case.contract-testing.io/docs",

packages/case-connector/CHANGELOG.md

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

3+
## [0.10.1](https://github.com/case-contract-testing/contract-case/compare/@contract-case/case-connector-v0.10.0...@contract-case/case-connector-v0.10.1) (2024-12-30)
4+
5+
6+
### Features
7+
8+
* Add ability for the current version to be generated from the git sha ([dd70365](https://github.com/case-contract-testing/contract-case/commit/dd703650fd058d34f6d772011b74faec10b93074))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @contract-case/case-core bumped from 0.18.0 to 0.19.0
16+
* @contract-case/case-connector-proto bumped from 0.9.0 to 0.9.1
17+
* @contract-case/case-entities-internal bumped from 0.18.0 to 0.19.0
18+
319
## [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)
420

521

0 commit comments

Comments
 (0)