Skip to content
This repository was archived by the owner on Jun 5, 2024. It is now read-only.

Prepare release 1.1.1 #966

Merged
merged 2 commits into from
Jan 26, 2022
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
10 changes: 0 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,3 @@ updates:
versions:
- 4.4.0
- 4.5.0
- dependency-name: jasmine-core
versions:
- 3.6.0
- 3.7.0
- dependency-name: jasmine
versions:
- 3.6.4
- dependency-name: xmldom
versions:
- 0.4.0
6 changes: 6 additions & 0 deletions changelog/1.1.1_2022-01-26/bugfix-require-default-axios
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: Always require default axios

We now always require the default axios since the unspecified require
eventually lead to problems with unit tests and mocks.

https://github.com/owncloud/owncloud-sdk/pull/965
23 changes: 6 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "owncloud-sdk",
"version": "1.1.0",
"version": "1.1.1",
"description": "ownCloud client library for JavaScript",
"keywords": [
"owncloud",
Expand Down Expand Up @@ -28,6 +28,7 @@
"dist"
],
"scripts": {
"depcheck": "depcheck",
"build:docs": "jsdoc -c jsdoc.conf.json",
"build:system": "webpack",
"lint": "eslint tests/**/*.js tests/*.js src/**/*.js src/*.js --color --global requirejs --global require",
Expand Down Expand Up @@ -70,28 +71,23 @@
"axios": "^0.21.1",
"cross-fetch": "^3.0.6",
"promise": "^8.0.3",
"request": "^2.88.0",
"qs": "^6.10.3",
"semver": "^7.3.5",
"utf8": "^3.0.0",
"uuid": "^8.2.0",
"webdav": "4.6.0",
"xhr": "^2.5.0",
"xml-js": "^1.6.11",
"xmlhttprequest": "^1.8.0"
"xml-js": "^1.6.11"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/runtime": "^7.4.4",
"@pact-foundation/pact": "10.0.0-beta.36",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.3.0",
"depcheck": "^1.4.3",
"eslint": "^6.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
Expand All @@ -100,16 +96,9 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "3.5",
"jasmine-core": "3.5",
"jasmine-data-provider": "^2.2.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.1",
"jszip": "^3.2.1",
"lint-staged": ">=8",
"mocha": "^8.2.1",
"sinon": "^9.0.2",
"sync-fetch": "^0.3.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
Expand Down
Loading