Skip to content

Commit f6f8b15

Browse files
authored
Merge pull request #9 from mikeyyyzhao/try_5_rebase_master
updated rbc to 0.38.9
2 parents aaa8c0a + a3f53cf commit f6f8b15

33 files changed

Lines changed: 36763 additions & 4001 deletions

.github/workflows/release.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,25 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v1
14+
uses: actions/checkout@v2
1515

1616
- name: Setup Node.js
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v2
1818
with:
19-
node-version: '12.x'
19+
node-version: '16.13.2'
2020

2121
- name: Install Dependencies
2222
run: yarn install
2323

24+
# test and build prior to release
2425
- name: Unit Test & Linting
2526
run: yarn test
2627

2728
- name: Build
2829
run: yarn build
2930

30-
- name: Semantic Release
31-
uses: cycjimmy/semantic-release-action@master
32-
id: semantic
33-
with:
34-
branch: master
35-
extra_plugins: |
36-
@semantic-release/git
37-
@semantic-release/changelog
38-
31+
- name: Release
3932
env:
4033
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4134
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
35+
run: npx semantic-release

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v1
12+
uses: actions/checkout@v2
1313

1414
- name: Setup Node.js
15-
uses: actions/setup-node@v1
15+
uses: actions/setup-node@v2
1616
with:
17-
node-version: '12.x'
17+
node-version: '16.13.2'
1818

1919
- name: Install Dependencies
2020
run: yarn install

.size-snapshot.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
{
22
"./dist/react-big-calendar.js": {
3-
"bundled": 521178,
4-
"minified": 154264,
5-
"gzipped": 46743
3+
"bundled": 542563,
4+
"minified": 167573,
5+
"gzipped": 51480
66
},
77
"./dist/react-big-calendar.min.js": {
8-
"bundled": 455453,
9-
"minified": 134679,
10-
"gzipped": 42250
8+
"bundled": 470431,
9+
"minified": 145730,
10+
"gzipped": 45681
1111
},
1212
"dist/react-big-calendar.esm.js": {
13-
"bundled": 187458,
14-
"minified": 89244,
15-
"gzipped": 22022,
13+
"bundled": 225568,
14+
"minified": 102091,
15+
"gzipped": 25347,
1616
"treeshaked": {
1717
"rollup": {
18-
"code": 63948,
19-
"import_statements": 1590
18+
"code": 64782,
19+
"import_statements": 1458
2020
},
2121
"webpack": {
22-
"code": 68551
22+
"code": 68285
2323
}
2424
}
2525
}

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
## [0.38.9](https://github.com/jquense/react-big-calendar/compare/v0.38.8...v0.38.9) (2022-02-10)
2+
3+
4+
### Bug Fixes
5+
6+
* Correct no overlap algorithm stretch behavior ([#2120](https://github.com/jquense/react-big-calendar/issues/2120)) ([c3f25eb](https://github.com/jquense/react-big-calendar/commit/c3f25eb61545af36ada0c940f0f05b440250341f))
7+
8+
## [0.38.8](https://github.com/jquense/react-big-calendar/compare/v0.38.7...v0.38.8) (2022-02-10)
9+
10+
11+
### Bug Fixes
12+
13+
* Correct variable name that gets passed on to EventWrapper so dragndrop ha… ([#2121](https://github.com/jquense/react-big-calendar/issues/2121)) ([19294de](https://github.com/jquense/react-big-calendar/commit/19294de0de5c3aaf4280bfb9c28f37d88254d51d))
14+
15+
## [0.38.7](https://github.com/jquense/react-big-calendar/compare/v0.38.6...v0.38.7) (2022-02-03)
16+
17+
18+
### Bug Fixes
19+
20+
* Correct display of beginning DST ([bd8e0e9](https://github.com/jquense/react-big-calendar/commit/bd8e0e971a5c5e2590ca0016df4e186b326dec19)), closes [#1617](https://github.com/jquense/react-big-calendar/issues/1617)
21+
22+
## [0.38.6](https://github.com/jquense/react-big-calendar/compare/v0.38.5...v0.38.6) (2022-01-25)
23+
24+
25+
### Bug Fixes
26+
27+
* Correct DragAndDrop event resizing in 'month' view ([e3d96e5](https://github.com/jquense/react-big-calendar/commit/e3d96e5b5899e809092051e32274c8cfdd11d4e9)), closes [#2012](https://github.com/jquense/react-big-calendar/issues/2012)
28+
29+
## [0.38.5](https://github.com/jquense/react-big-calendar/compare/v0.38.4...v0.38.5) (2022-01-16)
30+
31+
32+
### Bug Fixes
33+
34+
* Correct issue with semantic-release and yarn-lock ([cc48854](https://github.com/jquense/react-big-calendar/commit/cc48854c87b03ca23541484e30061576c2edfe98)), closes [#2096](https://github.com/jquense/react-big-calendar/issues/2096)
35+
36+
## [0.38.4](https://github.com/jquense/react-big-calendar/compare/v0.38.3...v0.38.4) (2022-01-04)
37+
38+
39+
### Bug Fixes
40+
41+
* **sass:** Reference distributed folder in SASS compile ([#2091](https://github.com/jquense/react-big-calendar/issues/2091)) ([20502f3](https://github.com/jquense/react-big-calendar/commit/20502f334a3c9ce62a1322a88d897b9afa66ee23)), closes [#2086](https://github.com/jquense/react-big-calendar/issues/2086)
42+
43+
## [0.38.3](https://github.com/jquense/react-big-calendar/compare/v0.38.2...v0.38.3) (2022-01-04)
44+
45+
46+
### Bug Fixes
47+
48+
* Correct typo in custom view example ([267629b](https://github.com/jquense/react-big-calendar/commit/267629b5d253b5247b2cd2071764e6bb86c4d3a5))
49+
150
## [0.22.1](https://github.com/jquense/react-big-calendar/compare/v0.22.0...v0.22.1) (2019-09-13)
251

352
### Bug Fixes

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ element has a height, or the calendar won't be visible. To provide your own cust
1717

1818
- [react-big-calendar](https://github.com/arecvlohe/rbc-starter)
1919
- [react-big-calendar with drag and drop](https://github.com/arecvlohe/rbc-with-dnd-starter)
20+
- [react-big-calendar with TypeScript and React hooks bundled with Vite](https://github.com/christopher-caldwell/react-big-calendar-demo)
2021

2122
## Run examples locally
2223

commitlint.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
extends: ['@commitlint/config-conventional'],
3-
}
2+
extends: ['@commitlint/config-conventional']
3+
}

0 commit comments

Comments
 (0)