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

Releases: seek-oss/skuba-dive

v2.0.0

09 Feb 23:00
c47f63a
Compare
Choose a tag to compare

2.0.0 (2022-02-09)

Bug Fixes

  • register: Remove source-map-support (#86) (c47f63a)

BREAKING CHANGES

skuba-dive/register no longer configures source-map-support for your project. Upgrade to Node.js 14.18+ and use the built-in --enable-source-maps option.

For a containerised application, update your Dockerfile:

- FROM gcr.io/distroless/nodejs:12 AS runtime
+ FROM gcr.io/distroless/nodejs:16 AS runtime

+ # https://nodejs.org/api/cli.html#cli_node_options_options
+ ENV NODE_OPTIONS --enable-source-maps

For a Serverless Lambda application, update your serverless.yml:

provider:
- runtime: nodejs12.x
+ runtime: nodejs14.x

functions:
  Worker:
    environment:
+     # https://nodejs.org/api/cli.html#cli_node_options_options
+     NODE_OPTIONS: --enable-source-maps

For a CDK Lambda application, update your stack:

new aws_lambda.Function(this, 'worker', {
- runtime: aws_lambda.Runtime.NODEJS_12_X,
+ runtime: aws_lambda.Runtime.NODEJS_14_X,
  environment: {
+   // https://nodejs.org/api/cli.html#cli_node_options_options
+   NODE_OPTIONS: '--enable-source-maps',
  },
});

See seek-oss/skuba#761 for more information

v1.2.0

24 May 00:22
3e65744
Compare
Choose a tag to compare

1.2.0 (2021-05-24)

Features

  • Env: Add boolean parser & preset (#42) (3e65744)

v1.1.2

14 Dec 20:34
72fbab4
Compare
Choose a tag to compare

1.1.2 (2020-12-14)

Bug Fixes

v1.1.1

03 Sep 07:06
dfe1141
Compare
Choose a tag to compare

1.1.1 (2020-09-03)

Bug Fixes

v1.1.0

10 Jun 11:42
312a1a4
Compare
Choose a tag to compare

1.1.0 (2020-06-10)

Features

v1.0.2

10 Jun 02:39
1c31ae6
Compare
Choose a tag to compare

1.0.2 (2020-06-10)

Bug Fixes

v1.0.1

05 Jun 07:02
b3e3cf6
Compare
Choose a tag to compare

Starting point for Semantic Release.