Skip to content
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

Release 0.18.0 #7

Merged
merged 5 commits into from
Jan 25, 2022
Merged
Show file tree
Hide file tree
Changes from 4 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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.18.0"></a>
## [0.18.0](https://github.com/StatesTitle/thrift-server/compare/v0.17.2...v0.18.0) (2022-01-24)

### BREAKING CHANGES

* Update all depdendencies to the latest versions.
* Switch from using `request` to using `cross-fetch` for thrift clients.


<a name="0.17.0"></a>
## [0.17.0](https://github.com/creditkarma/thrift-server/compare/v0.16.1...v0.17.0) (2020-04-02)

Expand Down
4 changes: 2 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "3.14.1",
"version": "0.17.2",
"lerna": "4.0.0",
"version": "0.18.0",
"loglevel": "verbose",
"packages": [
"packages/*"
Expand Down
34 changes: 17 additions & 17 deletions package-lock.json

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

98 changes: 40 additions & 58 deletions packages/thrift-client-context-filter/package-lock.json

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

18 changes: 8 additions & 10 deletions packages/thrift-client-context-filter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@statestitle/thrift-client-context-filter",
"version": "0.17.2",
"version": "0.18.0",
"description": "Filter for appending a Thrift object to request payload",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
Expand All @@ -18,17 +18,15 @@
"test:only": "echo 'No tests for thrift-client-context-filter'; exit 0;"
},
"peerDependencies": {
"@statestitle/thrift-client": "0.17.x",
"@statestitle/thrift-server-core": "0.17.x"
"@statestitle/thrift-client": "0.18.x",
"@statestitle/thrift-server-core": "0.18.x"
},
"devDependencies": {
"@hapi/code": "^8.0.5",
"@hapi/lab": "^24.5.0",
"@statestitle/thrift-client": "^0.17.2",
"@statestitle/thrift-server-core": "^0.17.2",
"@types/hapi__code": "^8.0.1",
"@types/hapi__lab": "^22.0.1",
"@types/node": "^12.20.41",
"@hapi/code": "^8.0.6",
"@hapi/lab": "^24.5.1",
"@statestitle/thrift-client": "^0.18.0",
"@statestitle/thrift-server-core": "^0.18.0",
"@types/node": "^12.20.42",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
Expand Down
Loading