Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit 82898a5

Browse files
Release v1.1.1
1 parent 0f6dd0c commit 82898a5

File tree

5 files changed

+60
-2
lines changed

5 files changed

+60
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ build
44
node_modules
55
*.tgz
66
.idea
7+
/dist/

.gitlab-ci.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
default:
2+
image: 'cimg/node:lts'
3+
4+
cache:
5+
key:
6+
files:
7+
- package-lock.json
8+
paths:
9+
- .npm/
10+
- node_modules/
11+
12+
stages:
13+
- setup
14+
- test
15+
- release
16+
17+
install:
18+
stage: setup
19+
script:
20+
- npm ci
21+
22+
test:
23+
stage: test
24+
script:
25+
- npm test
26+
27+
release:
28+
stage: release
29+
artifacts:
30+
paths:
31+
- dist/
32+
only:
33+
- /^v[0-9]+\.[0-9]+\.[0-9]+.*/
34+
except:
35+
- branches
36+
script:
37+
- npm pack
38+
- mkdir dist
39+
- mv signalfx-lambda-${CI_COMMIT_REF_NAME:1}.tgz dist/
40+
- shasum -a 256 dist/* > dist/checksums.txt
41+
42+
# release in NPM
43+
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN_SIGNALFX" > ~/.npmrc
44+
- npm publish ./dist/signalfx-lambda-${CI_COMMIT_REF_NAME:1}.tgz
45+
- rm -f ~/.npmrc

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## Unreleased
4+
5+
## 1.1.1 (2021-09-20)
6+
7+
Changes:
8+
- allow usage of nulls and booleans as dimension values ([#45](https://github.com/signalfx/lambda-nodejs/pull/45))

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"name": "signalfx-lambda",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Node.js lambda wrapper for SignalFx",
55
"homepage": "https://signalfx.com",
6+
"files": [
7+
"*.js",
8+
"README.md"
9+
],
610
"author": {
711
"name": "SignalFx, Inc",
812
"email": "[email protected]",

0 commit comments

Comments
 (0)