backlog-js 0.12.5 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.13.0](https://github.com/nulab/backlog-js/compare/0.12.6...0.13.0) (2023-06-02)
4
+
5
+ * add type annotation for response [#77](https://github.com/nulab/backlog-js/pull/77) ([mmktomato](https://github.com/mmktomato))
6
+ * Bump json-schema and jsprim [#76](https://github.com/nulab/backlog-js/pull/76) ([dependabot[bot]](https://github.com/apps/dependabot))
7
+ * Bump minimist and mkdirp [#75](https://github.com/nulab/backlog-js/pull/75) ([dependabot[bot]](https://github.com/apps/dependabot))
8
+ * Bump undici from 5.8.1 to 5.19.1 [#74](https://github.com/nulab/backlog-js/pull/74) ([dependabot[bot]](https://github.com/apps/dependabot))
9
+ * Bump minimatch from 3.0.4 to 3.1.2 [#72](https://github.com/nulab/backlog-js/pull/72) ([dependabot[bot]](https://github.com/apps/dependabot))
10
+ * Add Node.js v18 support to CI [#70](https://github.com/nulab/backlog-js/pull/70) ([mmktomato](https://github.com/mmktomato))
11
+ * Remove es6-promise [#69](https://github.com/nulab/backlog-js/pull/69) ([mmktomato](https://github.com/mmktomato))
12
+ * Bump shell-quote from 1.7.2 to 1.7.3 [#68](https://github.com/nulab/backlog-js/pull/68) ([dependabot[bot]](https://github.com/apps/dependabot))
13
+ * Removed DefinitelyTyped badge [#67](https://github.com/nulab/backlog-js/pull/67) ([mmktomato](https://github.com/mmktomato))
14
+
15
+ ## [0.12.6](https://github.com/nulab/backlog-js/compare/0.12.5...0.12.6) (2022-05-11)
16
+
17
+ * Bump ansi-regex from 5.0.0 to 5.0.1 [#62](https://github.com/nulab/backlog-js/pull/62) ([dependabot[bot]](https://github.com/apps/dependabot))
18
+ * Maintain CI's node versions [#64](https://github.com/nulab/backlog-js/pull/64) ([mmktomato](https://github.com/mmktomato))
19
+ * Bump dependencies [#61](https://github.com/nulab/backlog-js/pull/61) ([mmktomato](https://github.com/mmktomato))
20
+ * Distribute .d.ts files [#59](https://github.com/nulab/backlog-js/pull/59) ([mmktomato](https://github.com/mmktomato))
21
+
3
22
  ## [0.12.5](https://github.com/nulab/backlog-js/compare/0.12.4...0.12.5) (2022-01-28)
4
23
 
5
24
  * Bump cached-path-relative from 1.0.2 to 1.1.0 [#56](https://github.com/nulab/backlog-js/pull/56) ([dependabot[bot]](https://github.com/apps/dependabot))
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # backlog-js [![CI](https://github.com/nulab/backlog-js/actions/workflows/nodejs.yml/badge.svg)](https://github.com/nulab/backlog-js/actions/workflows/nodejs.yml) [![npm version](https://badge.fury.io/js/backlog-js.svg)](https://badge.fury.io/js/backlog-js) [![TypeScript definitions on DefinitelyTyped](http://definitelytyped.org/badges/standard.svg)](http://definitelytyped.org)
1
+ # backlog-js [![CI](https://github.com/nulab/backlog-js/actions/workflows/nodejs.yml/badge.svg)](https://github.com/nulab/backlog-js/actions/workflows/nodejs.yml) [![npm version](https://badge.fury.io/js/backlog-js.svg)](https://badge.fury.io/js/backlog-js)
2
2
  Backlog API version 2 client for browser and node.
3
3
 
4
4
  ## Required reading
@@ -16,11 +16,8 @@ Append your "API Key" or "OAuth2 Access Token" to requests to the API to return
16
16
  ``` javascript
17
17
  import 'isomorphic-form-data';
18
18
  import 'isomorphic-fetch';
19
- import * as es6promise from 'es6-promise';
20
19
  import * as backlogjs from 'backlog-js';
21
20
 
22
- es6promise.polyfill();
23
-
24
21
  // 'xxx.backlog.jp' or 'xxx.backlogtool.com' or 'your package host'
25
22
  const host = 'yourSpaceHost';
26
23
  const apiKey = 'yourApiKey';