-
Notifications
You must be signed in to change notification settings - Fork 88
Releases: cloudflare/node-cloudflare
v2.9.1
Assets 2
v2.7.0
ab6ae68 Assets 2
v2.6.0
fbce975 2.6.0 (2019年07月23日)
$ npm install cloudflare@2.6.0This is a relatively minor maintenance release.
Changelog
Features
- API Token support for scoped API tokens. (d28eeb4f) 🎉 @luisfavila!
- Export DNS records as BIND files. (c7d48ad1) (#39) 🎉 @mikehardenize!
Assets 2
Workers API
9cc241a 2.5.0 (2018年7月24日)
Workers
This release includes endpoints to support managing Cloudflare Workers.
Changelog
Features
- Workers API (92af8b02) 🎉 @hankjacobs!
Assets 2
v2.4.0: Corporate Proxy Support
a06aad5 2.4.0 (2018年1月11日)
Corporate Proxy Support
Now automatically configures an HTTPS proxy agent if HTTPS_PROXY is configured in the environment. Hosts, IPs, and CIDRs are respected in NO_PROXY.
Work is underway to farther customize the proxy configuration, disable it completely, as well as providing your own HTTPS agent. Look forward to that in future releases.
API Documentation
JSDoc generated documentation is finally available! Check it out! Of course, continued improvements are welcome.
Changelog
Features
Doc
- api: add JSDoc to main interface and resources (de16c41)
Assets 2
v2.3.0
c3e1c83 Assets 2
v2.2.0
63f4d8c Assets 2
v2.1.0
0d6597d Assets 2
v2.0.0
2.0.0 (2016年12月30日)
Features
- all: simplified endpoint development (8bbdc0a)
Breaking Changes
-
Unfortunately, working with version 1 of the Cloudflare
bindings was a pain. As users, you were subject to a weird API
structure, strict—and often incorrect—local validation logic, and having
to use a client that was missing most of the API endpoints. For me
(hi!), it was hard to get validation logic accurate, keeping the models
complete, and adding support for the entire API.This pre-release introduces a ground-up rewrite of the bindings to
address these issues.- Endpoints and methods are now generated from a simple specification.
- Removal of those pesky model objects and the inaccurate validation
logic they contained. - Methods are now directly on the resource objects.
- Faster (and more direct) unit tests using testdouble.
- You can now provide authentication when calling resource methods,
which overrides the client's authentication, and "User Service Keys"
are completely supported.