Skip to content

Commit 8febdc1

Browse files
committed
v2.0.1
1 parent 358f7f8 commit 8febdc1

13 files changed

+2357
-3950
lines changed

.gitattributes

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
# Auto detect text files and perform LF normalization
22
* text=auto
3+
4+
# Don't allow people to merge changes to these generated files, because the result
5+
# may be invalid.
6+
pnpm-lock.yaml merge=binary
7+
shrinkwrap.yaml merge=binary
8+
npm-shrinkwrap.json merge=binary
9+
yarn.lock merge=binary
10+
.yarn/releases/** merge=binary
11+
.yarn/plugins/** merge=binary
12+
schema.graphql merge=binary
13+
persistedQueries.json merge=binary

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v2.0.1
2+
3+
**improvements**
4+
5+
- Add missing attribute to makeCalendar method #93, Thanks to @nibdo
6+
- updated dependencies
7+
18
## v2.0.0
29

310
**features**

dist/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tsdav",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "WebDAV, CALDAV, and CARDDAV client for Nodejs and the Browser",
55
"keywords": [
66
"dav",
@@ -57,33 +57,33 @@
5757
"xml-js": "1.6.11"
5858
},
5959
"devDependencies": {
60-
"@rollup/plugin-commonjs": "21.0.1",
60+
"@rollup/plugin-commonjs": "21.0.2",
6161
"@rollup/plugin-node-resolve": "13.1.3",
62-
"@rollup/plugin-typescript": "8.3.0",
62+
"@rollup/plugin-typescript": "8.3.1",
6363
"@types/base-64": "1.0.0",
6464
"@types/debug": "4.1.7",
65-
"@types/jest": "27.4.0",
66-
"@types/node": "17.0.16",
67-
"@typescript-eslint/eslint-plugin": "5.11.0",
68-
"@typescript-eslint/parser": "5.11.0",
65+
"@types/jest": "27.4.1",
66+
"@types/node": "17.0.21",
67+
"@typescript-eslint/eslint-plugin": "5.13.0",
68+
"@typescript-eslint/parser": "5.13.0",
6969
"copyfiles": "2.4.1",
7070
"cross-env": "7.0.3",
7171
"dotenv": "16.0.0",
72-
"eslint": "8.8.0",
72+
"eslint": "8.10.0",
7373
"eslint-config-airbnb": "19.0.4",
7474
"eslint-config-airbnb-typescript": "16.1.0",
75-
"eslint-config-prettier": "8.3.0",
75+
"eslint-config-prettier": "8.5.0",
7676
"eslint-plugin-import": "2.25.4",
7777
"eslint-plugin-prettier": "4.0.0",
7878
"jest": "27.5.1",
7979
"prettier": "2.5.1",
8080
"rimraf": "3.0.2",
81-
"rollup": "2.67.1",
82-
"rollup-plugin-dts": "4.1.0",
81+
"rollup": "2.70.0",
82+
"rollup-plugin-dts": "4.2.0",
8383
"rollup-plugin-terser": "7.0.2",
8484
"sort-package-json": "1.54.0",
8585
"ts-jest": "27.1.3",
86-
"typescript": "4.5.5"
86+
"typescript": "4.6.2"
8787
},
8888
"engines": {
8989
"node": ">=10"

dist/tsdav.cjs.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,11 @@ const makeCalendar = (params) => __awaiter(void 0, void 0, void 0, function* ()
756756
namespace: exports.DAVNamespaceShort.DAV,
757757
body: {
758758
[`${exports.DAVNamespaceShort.CALDAV}:mkcalendar`]: {
759-
_attributes: getDAVAttribute([exports.DAVNamespace.DAV, exports.DAVNamespace.CALDAV]),
759+
_attributes: getDAVAttribute([
760+
exports.DAVNamespace.DAV,
761+
exports.DAVNamespace.CALDAV,
762+
exports.DAVNamespace.CALDAV_APPLE,
763+
]),
760764
set: {
761765
prop: props,
762766
},

dist/tsdav.esm.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,11 @@ const makeCalendar = (params) => __awaiter(void 0, void 0, void 0, function* ()
747747
namespace: DAVNamespaceShort.DAV,
748748
body: {
749749
[`${DAVNamespaceShort.CALDAV}:mkcalendar`]: {
750-
_attributes: getDAVAttribute([DAVNamespace.DAV, DAVNamespace.CALDAV]),
750+
_attributes: getDAVAttribute([
751+
DAVNamespace.DAV,
752+
DAVNamespace.CALDAV,
753+
DAVNamespace.CALDAV_APPLE,
754+
]),
751755
set: {
752756
prop: props,
753757
},

dist/tsdav.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6798,7 +6798,11 @@ const makeCalendar = (params) => __awaiter(void 0, void 0, void 0, function* ()
67986798
namespace: DAVNamespaceShort.DAV,
67996799
body: {
68006800
[`${DAVNamespaceShort.CALDAV}:mkcalendar`]: {
6801-
_attributes: getDAVAttribute([DAVNamespace.DAV, DAVNamespace.CALDAV]),
6801+
_attributes: getDAVAttribute([
6802+
DAVNamespace.DAV,
6803+
DAVNamespace.CALDAV,
6804+
DAVNamespace.CALDAV_APPLE,
6805+
]),
68026806
set: {
68036807
prop: props,
68046808
},

dist/tsdav.min.js

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

docs/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module.exports = {
5959
lastVersion: 'current',
6060
versions: {
6161
current: {
62-
label: '2.0.0',
62+
label: '2.0.1',
6363
},
6464
'1.1.6': {
6565
label: '1.1.6',

docs/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
]
2727
},
2828
"dependencies": {
29-
"@docusaurus/core": "2.0.0-beta.15",
30-
"@docusaurus/preset-classic": "2.0.0-beta.15",
31-
"@easyops-cn/docusaurus-search-local": "0.21.4",
29+
"@docusaurus/core": "2.0.0-beta.17",
30+
"@docusaurus/preset-classic": "2.0.0-beta.17",
31+
"@easyops-cn/docusaurus-search-local": "0.22.0",
3232
"@mdx-js/react": "1.6.22",
3333
"@svgr/webpack": "6.2.1",
3434
"buffer": "6.0.3",
@@ -41,11 +41,11 @@
4141
"xml-js": "1.6.11"
4242
},
4343
"devDependencies": {
44-
"@docusaurus/module-type-aliases": "2.0.0-beta.15",
44+
"@docusaurus/module-type-aliases": "2.0.0-beta.17",
4545
"@tsconfig/docusaurus": "1.0.4",
4646
"@types/react": "17.0.39",
4747
"@types/react-helmet": "6.1.5",
4848
"@types/react-router-dom": "5.3.3",
49-
"typescript": "4.5.5"
49+
"typescript": "4.6.2"
5050
}
5151
}

0 commit comments

Comments
 (0)