Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Commit

Permalink
Fixes #173
Browse files Browse the repository at this point in the history
  • Loading branch information
jwulf committed Aug 25, 2020
1 parent 07cd452 commit 2973448
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Version 0.24.0

## Fixes

_Things that were broken and are now fixed._

- The `segfault-handler` package dependency broke cross-architecture builds. This required users to change their build chain and caused issues with AWS lambda deployment. It was added to assist in debugging the pure JS implementation of gRPC. In this release it has been removed. See [#173](https://github.com/zeebe-io/zeebe-client-node-js/issues/173).

# Version 0.23.3

## Breaking Changes
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zeebe-node",
"version": "v0.23.3",
"version": "v0.24.0",
"description": "A Node.js client library for the Zeebe Microservices Orchestration Engine.",
"keywords": [
"zeebe",
Expand Down Expand Up @@ -72,7 +72,6 @@
"grpc": "^1.24.3",
"long": "^4.0.0",
"promise-retry": "^1.1.1",
"segfault-handler": "^1.3.0",
"stack-trace": "0.0.10",
"typed-duration": "^1.0.12",
"uuid": "^3.3.2"
Expand Down
3 changes: 0 additions & 3 deletions src/zb/ZBClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import * as NEA from 'fp-ts/lib/NonEmptyArray'
import { pipe } from 'fp-ts/lib/pipeable'
import * as path from 'path'
import promiseRetry from 'promise-retry'
import SegfaultHandler from 'segfault-handler'
import { Duration, MaybeTimeDuration } from 'typed-duration'
import { v4 as uuid } from 'uuid'
import {
Expand Down Expand Up @@ -39,8 +38,6 @@ import { decodeCreateZBWorkerSig } from '../lib/ZBWorkerSignature'
import { ZBBatchWorker } from './ZBBatchWorker'
import { ZBWorker } from './ZBWorker'

SegfaultHandler.registerHandler(`crash-${uuid()}.log`) // With no argument, SegfaultHandler will generate a generic log file name

const idColors = [
chalk.yellow,
chalk.green,
Expand Down

0 comments on commit 2973448

Please sign in to comment.