Skip to content

Commit 53197bc

Browse files
committed
🔀 Merge pull requests #912, #913, and #914 from 'v1.0.16/event-emitter', 'v1.0.16/update-the-change-logs', and 'v1.0.16/bump-the-version'
Signed-off-by: kei-g <km.8k6ce+github@gmail.com>
4 parents e5f3dc0 + 2fdf13f + 81612a0 + ef7544a commit 53197bc

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# ChangeLogs
22

3+
## Version 1.0.16
4+
5+
- :green_heart: CI chore
6+
- Add the workflow to automatically merge PRs from Dependabot[bot]
7+
- Ignore events that branch is created not to run 'Release' workflow
8+
- Reduce triggers to run GitHub Actions
9+
- Use `kei-g/github/create-release` action to create a release on GitHub
10+
- Use the latest Node.js to publish
11+
- :bug: Import EventEmitter from not 'node:stream' but 'node:events'
12+
- :building_construction: Migrations
13+
- Coverage framework is migrated from `nyc` to `c8`
14+
- `@typescript-eslint/eslint-plugin` and `@typescript-eslint/parser` are migrated to `typescript-eslint`
15+
- :arrow_up: Packages for development are bumped
16+
- `@types/chai` is bumped from 4.3.4 to 5.0.1
17+
- `@types/mocha` is bumped from 10.0.1 to 10.0.9
18+
- `@types/node` is bumped from 18.11.18 to 22.8.7
19+
- `chai` is bumped from 4.3.7 to 5.1.2
20+
- `esbuild` is bumped from 0.17.0 to 0.24.0
21+
- `eslint` is bumped from 8.32.0 to 9.14.0
22+
- `mocha` is bumped from 10.2.0 to 10.8.2
23+
- `rimraf` is bumped from 4.0.7 to 6.0.1
24+
- `typescript` is bumped from 4.9.4 to 5.6.3
25+
326
## Version 1.0.15
427

528
- :green_heart: CI chore

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@
5656
"test": "run-p lint cover"
5757
},
5858
"types": "index.d.ts",
59-
"version": "1.0.15"
59+
"version": "1.0.16"
6060
}

src/lib/async-iterable-queue.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { EventEmitter } from 'stream'
2-
import { assert } from 'console'
1+
import { EventEmitter } from 'node:events'
2+
import { assert } from 'node:console'
33

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

0 commit comments

Comments
 (0)