Skip to content

Commit

Permalink
release: v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fanhaoyuan committed Jul 20, 2022
1 parent a4a5005 commit 9b62669
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 27 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
@@ -1,9 +1,9 @@
## Coming Soon
## v1.5.0

### fatcher

- 🚀 `readStreamByChunk` supports async callback
- 🚀 request url supports relative path like `../` and `./`
- 🚀 `readStreamByChunk` supports async callback ([#167](https://github.com/fatcherjs/fatcher/pull/167))
- 🚀 request url supports relative path like `../` and `./` ([#170](https://github.com/fatcherjs/fatcher/pull/170))

## v1.4.1

Expand Down
32 changes: 16 additions & 16 deletions CODE_OF_CONDUCT.md
Expand Up @@ -17,24 +17,24 @@ diverse, inclusive, and healthy community.
Examples of behavior that contributes to a positive environment for our
community include:

* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the
overall community
- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
- Focusing on what is best not just for us as individuals, but for the
overall community

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or
advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting
- The use of sexualized language or imagery, and sexual attention or
advances of any kind
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email
address, without their explicit permission
- Other conduct which could reasonably be considered inappropriate in a
professional setting

## Enforcement Responsibilities

Expand Down Expand Up @@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
### 4. Permanent Ban

**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"private": true,
"name": "fatcher",
"version": "1.4.1",
"version": "1.5.0",
"repository": {
"type": "git",
"url": "git+https://github.com/fatcherjs/fatcher.git"
Expand Down
2 changes: 1 addition & 1 deletion packages/aborter/package.json
@@ -1,6 +1,6 @@
{
"name": "@fatcherjs/middleware-aborter",
"version": "1.4.1",
"version": "1.5.0",
"main": "dist/aborter.js",
"module": "dist/aborter.esm.js",
"browser": "dist/aborter.min.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/cache/package.json
@@ -1,6 +1,6 @@
{
"name": "@fatcherjs/middleware-cache",
"version": "1.4.1",
"version": "1.5.0",
"main": "dist/cache.js",
"module": "dist/cache.esm.js",
"browser": "dist/cache.min.js",
Expand Down
5 changes: 5 additions & 0 deletions packages/fatcher/CHANGELOG.md
@@ -1,3 +1,8 @@
## v1.5.0

- 🚀 `readStreamByChunk` supports async callback ([#167](https://github.com/fatcherjs/fatcher/pull/167))
- 🚀 request url supports relative path like `../` and `./` ([#170](https://github.com/fatcherjs/fatcher/pull/170))

## v1.4.1

- 🔧 Remove some overt options ([#161](https://github.com/fatcherjs/fatcher/pull/161))
Expand Down
2 changes: 1 addition & 1 deletion packages/fatcher/package.json
@@ -1,6 +1,6 @@
{
"name": "fatcher",
"version": "1.4.1",
"version": "1.5.0",
"description": "Send fetch request gracefully in browsers and nodeJS",
"homepage": "https://fatcherjs.github.io/fatcher/",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/form-data/package.json
@@ -1,6 +1,6 @@
{
"name": "@fatcherjs/middleware-form-data",
"version": "1.4.1",
"version": "1.5.0",
"main": "dist/form-data.js",
"module": "dist/form-data.esm.js",
"browser": "dist/form-data.min.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/json/package.json
@@ -1,6 +1,6 @@
{
"name": "@fatcherjs/middleware-json",
"version": "1.4.1",
"version": "1.5.0",
"main": "dist/json.js",
"module": "dist/json.esm.js",
"browser": "dist/json.min.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/progress/package.json
@@ -1,6 +1,6 @@
{
"name": "@fatcherjs/middleware-progress",
"version": "1.4.1",
"version": "1.5.0",
"main": "dist/progress.js",
"module": "dist/progress.esm.js",
"browser": "dist/progress.min.js",
Expand Down
2 changes: 1 addition & 1 deletion shared/tests/index.ts
@@ -1,4 +1,4 @@
export * from './getRandomString';
export * from './getStringStream';
export * from './getStringStreamByLength';
export * from './sleep';
export * from './sleep';

0 comments on commit 9b62669

Please sign in to comment.