Skip to content

Commit

Permalink
🔀 Merge pull requests #912, #913, and #914 from 'v1.0.16/event-emitte…
Browse files Browse the repository at this point in the history
…r', 'v1.0.16/update-the-change-logs', and 'v1.0.16/bump-the-version'

Signed-off-by: kei-g <km.8k6ce+github@gmail.com>
  • Loading branch information
kei-g committed Nov 3, 2024
4 parents e5f3dc0 + 2fdf13f + 81612a0 + ef7544a commit 53197bc
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# ChangeLogs

## Version 1.0.16

- :green_heart: CI chore
- Add the workflow to automatically merge PRs from Dependabot[bot]
- Ignore events that branch is created not to run 'Release' workflow
- Reduce triggers to run GitHub Actions
- Use `kei-g/github/create-release` action to create a release on GitHub
- Use the latest Node.js to publish
- :bug: Import EventEmitter from not 'node:stream' but 'node:events'
- :building_construction: Migrations
- Coverage framework is migrated from `nyc` to `c8`
- `@typescript-eslint/eslint-plugin` and `@typescript-eslint/parser` are migrated to `typescript-eslint`
- :arrow_up: Packages for development are bumped
- `@types/chai` is bumped from 4.3.4 to 5.0.1
- `@types/mocha` is bumped from 10.0.1 to 10.0.9
- `@types/node` is bumped from 18.11.18 to 22.8.7
- `chai` is bumped from 4.3.7 to 5.1.2
- `esbuild` is bumped from 0.17.0 to 0.24.0
- `eslint` is bumped from 8.32.0 to 9.14.0
- `mocha` is bumped from 10.2.0 to 10.8.2
- `rimraf` is bumped from 4.0.7 to 6.0.1
- `typescript` is bumped from 4.9.4 to 5.6.3

## Version 1.0.15

- :green_heart: CI chore
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@
"test": "run-p lint cover"
},
"types": "index.d.ts",
"version": "1.0.15"
"version": "1.0.16"
}
4 changes: 2 additions & 2 deletions src/lib/async-iterable-queue.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EventEmitter } from 'stream'
import { assert } from 'console'
import { EventEmitter } from 'node:events'
import { assert } from 'node:console'

/**
* 非同期反復可能な先入れ先出し型の待ち行列への非同期反復子
Expand Down

0 comments on commit 53197bc

Please sign in to comment.