Skip to content

Commit

Permalink
Merge pull request #114 from rudderlabs/release/2.0.4
Browse files Browse the repository at this point in the history
chore(release): pulling release/2.0.4 into master
  • Loading branch information
MoumitaM authored Aug 29, 2023
2 parents 926b91d + b94338d commit 2dc7220
Show file tree
Hide file tree
Showing 10 changed files with 2,345 additions and 1,517 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
HUSKY: 0
run: |
npm ci
npm run build
npm run package
- name: Publish package to NPM
env:
HUSKY: 0
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
cd lib
cd dist
npm publish
- name: Get new version number
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ coverage
.nyc_output
coverage.lcov
lib
dist/
examples/**/package-lock.json
.idea/
.DS_Store
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [2.0.4](https://github.com/rudderlabs/rudder-sdk-node/compare/v2.0.3...v2.0.4) (2023-08-28)


### Bug Fixes

* concurrent event triggering unnecessary flush call ([#113](https://github.com/rudderlabs/rudder-sdk-node/issues/113)) ([5dd8999](https://github.com/rudderlabs/rudder-sdk-node/commit/5dd89999a7625c999434016dbf3bd6d509d7417a))
* remove winston logger dependency to enable serverless environments ([#112](https://github.com/rudderlabs/rudder-sdk-node/issues/112)) ([3619247](https://github.com/rudderlabs/rudder-sdk-node/commit/36192471055fdfc2032223986267715c2b48d4c4))

### [2.0.3](https://github.com/rudderlabs/rudder-sdk-node/compare/v2.0.2...v2.0.3) (2023-06-30)


Expand Down
4 changes: 2 additions & 2 deletions test.js → __tests__/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import delay from 'delay';
import auth from 'basic-auth';
import pify from 'pify';
import test from 'ava';
import Analytics from './index';
import { version } from './package.json';
import Analytics from '../src/index';
import { version } from '../package.json';

const noop = () => {};

Expand Down
Loading

0 comments on commit 2dc7220

Please sign in to comment.