Skip to content

Commit

Permalink
chore: release 0.17.0 (#718)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyJones authored Oct 2, 2024
1 parent 789db7c commit 32a8a3d
Show file tree
Hide file tree
Showing 32 changed files with 316 additions and 116 deletions.
28 changes: 14 additions & 14 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"packages/case-core": "0.16.3",
"packages/case-definition-dsl": "0.16.3",
"packages/case-core-plugin-http": "0.16.3",
"packages/case-core-plugin-http-dsl": "0.16.3",
"packages/case-core-plugin-function": "0.16.3",
"packages/case-core-plugin-function-dsl": "0.16.3",
"packages/case-plugin-base": "0.16.3",
"packages/case-plugin-dsl-types": "0.16.3",
"packages/case-entities": "0.16.3",
"packages/contract-case-jest": "0.12.3",
"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/documentation": "0.0.8",
".": "0.16.3",
"packages/contract-case-cli": "0.2.3",
".": "0.17.0",
"packages/contract-case-cli": "0.2.4",
"packages/case-maintainer-config": "0.1.0",
"packages/eslint-config-case-maintainer": "0.1.1",
"packages/case-connector": "0.8.3",
"packages/case-connector": "0.8.4",
"packages/case-connector-proto": "0.7.6",
"packages/dsl-java": "0.2.1"
"packages/dsl-java": "0.2.2"
}
11 changes: 11 additions & 0 deletions docs/maintainers/FULL-CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

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


### ⚠ BREAKING CHANGES

* Separate case-plugin-base into case-plugin-base and case-plugin-dsl-types to make working with bundled dependencies easier. Some imports may need to be updated.

### Code Refactoring

* Separate case-plugin-base into case-plugin-base and case-plugin-dsl-types to make working with bundled dependencies easier. Some imports may need to be updated. ([6659218](https://github.com/case-contract-testing/contract-case/commit/6659218c053146c2c1171fa3c9621c6aa8399aac))

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


Expand Down
100 changes: 50 additions & 50 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.16.3",
"version": "0.17.0",
"devDependencies": {
"@contract-case/eslint-config-case-maintainer": "0.1.1",
"example-extractor": "^0.0.4",
Expand Down
10 changes: 10 additions & 0 deletions packages/case-connector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

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


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @contract-case/case-core bumped from 0.16.3 to 0.17.0
* @contract-case/case-entities-internal bumped from 0.16.3 to 0.17.0

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


Expand Down
6 changes: 3 additions & 3 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.3",
"version": "0.8.4",
"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.16.3",
"@contract-case/case-core": "0.17.0",
"@contract-case/case-connector-proto": "0.7.6",
"@contract-case/case-entities-internal": "0.16.3",
"@contract-case/case-entities-internal": "0.17.0",
"@grpc/grpc-js": "^1.11.1",
"@grpc/proto-loader": "^0.7.10",
"get-port": "^7.1.0",
Expand Down
14 changes: 14 additions & 0 deletions packages/case-core-plugin-function-dsl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

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


### Miscellaneous Chores

* **@contract-case/case-core-plugin-function-dsl:** Synchronize ContractCase versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @contract-case/case-plugin-dsl-types bumped from ^0.16.3 to ^0.17.0

## [0.16.3](https://github.com/case-contract-testing/contract-case/compare/@contract-case/case-core-plugin-function-dsl-v0.16.2...@contract-case/case-core-plugin-function-dsl-v0.16.3) (2024-10-02)


Expand Down
4 changes: 2 additions & 2 deletions packages/case-core-plugin-function-dsl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contract-case/case-core-plugin-function-dsl",
"version": "0.16.3",
"version": "0.17.0",
"description": "ContractCase core function plugin DSL",
"keywords": [
"testing",
Expand Down Expand Up @@ -60,6 +60,6 @@
"typescript": "5.5.4"
},
"dependencies": {
"@contract-case/case-plugin-dsl-types": "^0.16.3"
"@contract-case/case-plugin-dsl-types": "^0.17.0"
}
}
16 changes: 16 additions & 0 deletions packages/case-core-plugin-function/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

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


### Miscellaneous Chores

* **@contract-case/case-core-plugin-function:** Synchronize ContractCase versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @contract-case/case-core-plugin-function-dsl bumped from ^0.16.3 to ^0.17.0
* @contract-case/case-plugin-base bumped from ^0.16.3 to ^0.17.0
* @contract-case/case-plugin-dsl-types bumped from ^0.16.3 to ^0.17.0

## [0.16.3](https://github.com/case-contract-testing/contract-case/compare/@contract-case/case-core-plugin-function-v0.16.2...@contract-case/case-core-plugin-function-v0.16.3) (2024-10-02)


Expand Down
Loading

0 comments on commit 32a8a3d

Please sign in to comment.