Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix the depth in the release workflow for generating all commit logs and correct CHANGELOG.md #15

Merged
merged 1 commit into from
Dec 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
with:
node-version: ${{ matrix.node }}
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: |
git config user.name 'github-actions'
git config user.email '/'
Expand Down
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,24 @@

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.1.0 (2021-12-26)
## [2.1.0](https://github.com/wood1986/react-ssr-webpack-plugin/compare/v2.0.0...v2.1.0) (2021-12-26)


### Features

* add a boolean config var for applying NodeTargetPlugin ([#14](https://github.com/wood1986/react-ssr-webpack-plugin/issues/14)) ([08fcfab](https://github.com/wood1986/react-ssr-webpack-plugin/commit/08fcfab55ba3ff3c38d6d884bca4685891a52612))
* move fetch out of app and add patchGlobal option ([#13](https://github.com/wood1986/react-ssr-webpack-plugin/issues/13)) ([3d15daf](https://github.com/wood1986/react-ssr-webpack-plugin/commit/3d15daf869320fea4c3ecb13a63492bec970b985))
* support customizing the response and replace react-router with path-to-regexp ([#8](https://github.com/wood1986/react-ssr-webpack-plugin/issues/8)) ([1da34d0](https://github.com/wood1986/react-ssr-webpack-plugin/commit/1da34d09e3107319222da8fe72622c80b7fa5d4d))

## 2.0.0 (2021-12-06)

### Bug Fixes

* remove path and add version invalidation ([#12](https://github.com/wood1986/react-ssr-webpack-plugin/issues/12)) ([f6ef600](https://github.com/wood1986/react-ssr-webpack-plugin/commit/f6ef600a156d2f0d61785166109d6ed7e32fc990))
* remove unnecessary plugins and show child compilation error ([#9](https://github.com/wood1986/react-ssr-webpack-plugin/issues/9)) ([44fc498](https://github.com/wood1986/react-ssr-webpack-plugin/commit/44fc498a3fd38810bb7533012709fb469de7d3b2))
* replace ReactSSRCommonMiddleware with ReactSSREntry ([#10](https://github.com/wood1986/react-ssr-webpack-plugin/issues/10)) ([134b0fa](https://github.com/wood1986/react-ssr-webpack-plugin/commit/134b0fab9c623acb9304c59f84bc70b7fa1dbf18))
* update examples/app to support cloudflare worker ([#11](https://github.com/wood1986/react-ssr-webpack-plugin/issues/11)) ([004a7a8](https://github.com/wood1986/react-ssr-webpack-plugin/commit/004a7a80f01a0c5341e94385111650581f28a944))

## [2.0.0](https://github.com/wood1986/react-ssr-webpack-plugin/compare/v1.0.1...v2.0.0) (2021-12-06)


### ⚠ BREAKING CHANGES
Expand All @@ -20,6 +30,11 @@ All notable changes to this project will be documented in this file. See [standa

* add react-route support with http status code and example ([#6](https://github.com/wood1986/react-ssr-webpack-plugin/issues/6)) ([72baf1b](https://github.com/wood1986/react-ssr-webpack-plugin/commit/72baf1bf99a2eef9e2081e0a5bd38ce33dc327bb))


### Bug Fixes

* fix commitlint workflow ([#4](https://github.com/wood1986/react-ssr-webpack-plugin/issues/4)) ([a860a9c](https://github.com/wood1986/react-ssr-webpack-plugin/commit/a860a9c31b0a3560096117550c99bc4426f66bfb))

### [1.0.1](https://github.com/wood1986/react-ssr-webpack-plugin/compare/v1.0.0...v1.0.1) (2021-11-12)


Expand Down