Skip to content

chore(main): release 1.0.0 #107

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

## 1.0.0 (2024-02-24)


### ⚠ BREAKING CHANGES

* simplify down to an OAS 3.1 extension

### Features

* **cli:** add ability to read/write stdin/stdout ([43f7d5f](https://github.com/freakyfelt/yet-another-json-rpc/commit/43f7d5f1576a6371a348edafcf2b9164f7352fdd))
* **cli:** add basic addQuery and addMutation operations ([1070f3b](https://github.com/freakyfelt/yet-another-json-rpc/commit/1070f3bed917cf7c2b790e7805f11d4b56ab80ca))
* **cli:** add basic transform CLI ([0680b43](https://github.com/freakyfelt/yet-another-json-rpc/commit/0680b438fb988875ec6539682c4499d227fc6f54))
* **cli:** add DocumentTransformer; swap types package ([15d420e](https://github.com/freakyfelt/yet-another-json-rpc/commit/15d420ef6264bcaa294467c5917c834a072a5c94))
* **cli:** allow for mutation inputs in non-body locations ([abb569e](https://github.com/freakyfelt/yet-another-json-rpc/commit/abb569eb4deedddb14579b0f3b90ab685e92481f))
* **cli:** allow for overriding the path and method ([b80759b](https://github.com/freakyfelt/yet-another-json-rpc/commit/b80759b1cee6feb2e271b127eb9bd2160f2c5fb9))
* **cli:** allow for overriding the status code and description ([9b26c16](https://github.com/freakyfelt/yet-another-json-rpc/commit/9b26c1673bb8600499b45152ec759bce12e0f0a9))
* **cli:** Allow for parameter fields to be overridden ([ce96d4c](https://github.com/freakyfelt/yet-another-json-rpc/commit/ce96d4c7e4220e3a12228896d041dde56bc60d23))
* **cli:** shallow merge OAS paths ([39696b1](https://github.com/freakyfelt/yet-another-json-rpc/commit/39696b1314ca25833ac2dbc1cc3b7a23591c41ab))


### Bug Fixes

* **cli:** allow for not specifying query or mutation operations ([2d05435](https://github.com/freakyfelt/yet-another-json-rpc/commit/2d05435e6de23752cf4e929d844feeaa24be35d9))
* **cli:** deep merge provided OpenAPI paths ([43fc1e2](https://github.com/freakyfelt/yet-another-json-rpc/commit/43fc1e262e8fd3fa2b18a5e15a573cebecdc7923))
* **cli:** drop redundant package-lock.json ([980ca8a](https://github.com/freakyfelt/yet-another-json-rpc/commit/980ca8ab5a0554bfd48d03e6e7107a9538904af6))
* **cli:** execute all tests; fix broken tests ([1cea5e5](https://github.com/freakyfelt/yet-another-json-rpc/commit/1cea5e537003d27bc2bc4c3a571cc07282b2f425))
* **workspace:** move package dependencies to package ([9a9dfc8](https://github.com/freakyfelt/yet-another-json-rpc/commit/9a9dfc82d8c692832f3a13cfd2f09b715aad255e))


### Code Refactoring

* simplify down to an OAS 3.1 extension ([aef9afc](https://github.com/freakyfelt/yet-another-json-rpc/commit/aef9afc88f9b26c84447cafb88132e554a4681c3))

## [1.0.1](https://github.com/freakyfelt/yet-another-json-rpc/compare/[email protected]) (2023-07-03)


Expand Down
4 changes: 2 additions & 2 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
@@ -1,6 +1,6 @@
{
"name": "@freakyfelt/yarpc-cli",
"version": "1.0.1",
"version": "1.0.0",
"description": "Yet Another JSON RPC CLI",
"keywords": [],
"author": {
Expand Down
Loading