Commit Graph

33 Commits

Author SHA1 Message Date
Yong Wen Chua 3a9b1fd7e8
Fix build issues for Rocket 0.4.2 (#70)
- Fix clippy lints
- Bump minimum Rust version beyond Rocket required for
  - `std::mem::MaybeUninit` (cf. https://github.com/rust-lang/rust/pull/60445)
  - `alloc` crate
2019-11-13 10:45:06 +08:00
Yong Wen Chua 2827c8a02b
Release v0.5.0 2019-05-27 08:54:49 +08:00
Yong Wen Chua b5cb16c74a
Bump to beta 2 for development 2019-03-18 10:34:05 +08:00
Yong Wen Chua 00e1399b1f
Release 0.5.0-beta-1 2019-03-18 10:32:24 +08:00
Yong Wen Chua 6f56109d77
Support Regex in origins configuration (#62)
* Refactor Origin

* Fix tests

* Fix tests

* Add JSON deserialization test

* Support regex

* Fix wording

* Fix wording
2019-03-12 15:05:40 +08:00
Sergio Benitez d880c2a111 Bump both Rocket and this library to 0.4.0 (#56)
* Bump to Rocket 0.4.0

* Bump to 0.4.0

Fixes #55
2018-12-12 22:23:51 +01:00
Yong Wen Chua 495317bd9e
Bump to Rocket 0.4.0-rc.2 (#53)
* Bump to Rocket 0.4.0-rc.2

* Update strings

* Bump minimum Rust version
2018-12-04 12:01:29 +08:00
Yong Wen Chua 02c7fcf519
Bump to 0.4.0-rc.2 2018-11-21 12:18:58 +08:00
Yong Wen Chua 21444e90c4
Update README 2018-11-01 09:21:50 +08:00
Yong Wen Chua a0d31cf498
Bump to Rocket 0.4.0-rc.1 (#49) 2018-11-01 09:20:24 +08:00
Yong Wen Chua d993082991
docs.rs now builds nightly docs properly 🎉 2018-10-31 10:59:52 +08:00
Yong Wen Chua 096930ebfa v0.3.0 Release 2018-07-18 13:34:21 +08:00
Yong Wen Chua e45b618c4f Fix copy paste embarassing mistake 2018-07-18 13:30:54 +08:00
Yong Wen Chua 8654330176 Switch to MIT and Apache Dual License
Fixes #41
2018-07-18 13:29:02 +08:00
Heinmci 27a0ef73f1 fixed rocket_cors version in readme (#39) 2018-07-16 09:28:47 +08:00
Yong Wen Chua f66f31ad99 Stable is 0.2.3 2018-02-14 16:39:12 +08:00
Yong Wen Chua b71f7a2243 Bump to development 0.3
And link to manually maintained stable docs for now
2018-02-14 15:19:51 +08:00
Yong Wen Chua ff1deabf55 Rustfmt fix
- Bump to 0.2.2
 - Add Travis cargo cache
2018-02-14 13:22:43 +08:00
Yong Wen Chua 456248eabf
Bump rocket to 0.3.6 (#34)
* Bump rocket to 0.3.6

- Remove `build.rs` - the minimum nightly version is enforced by Rocket
- Remove the pinning to a specific Nightly version. The latest nightly
should work.
- Added a minimum nightly matrix

* Fix Rocket's minimum

* Fix travis build script
2018-02-14 13:20:31 +08:00
Yong Wen Chua 34e3af4869 Bump nightly version as per Rocket 0.3.5 2018-01-08 09:56:02 +08:00
Yong Wen Chua c99083af5d v0.2.1
- Bumped nightly requirement to at least `nightly-2017-09-26`
- `serde` is now gated behind a feature flag, enabled by default
- Some small cleanup changes
2017-11-06 15:31:05 +08:00
Yong Wen Chua 5c0bb10b2d
Bump nightly version (#28) 2017-10-31 10:46:25 +08:00
Yong Wen Chua 198190fb08 v0.2.0
- "Truly manual" mode is added (#22)
- Fairing's `on_response` will now log to info whenever it turns a missing OPTIONS
into a CORS preflight response (8eb782a7ca)
- Add a "catch all" OPTIONS route to automatically respond to preflight OPTIONS
check from the `Cors` in Rocket's managed state (#24)
- Bump minimum supported Rust nightly
2017-07-24 16:06:11 +08:00
Yong Wen Chua 7d26aeb795 Bump nightly 2017-07-21 14:23:21 +08:00
Yong Wen Chua 0163ff6a26 Fix bug where Access-Control-Allow-Origin included a trailing `/`
Which broke all browsers
2017-07-19 16:26:44 +08:00
Yong Wen Chua a5f54c72cf v0.1.3 2017-07-19 12:28:33 +08:00
Yong Wen Chua fcd83e8fb5 Fix an issue where Fairing on_response will inject CORS headers into failed CORS requests 2017-07-19 09:52:30 +08:00
Yong Wen Chua 539157e0f0 Update Docs link and bump to 0.1.1
docs.rs cannot build nightly documentation
2017-07-18 18:27:24 +08:00
Yong Wen Chua 8fc8fef3eb Add documentation (#15)
* Add documentation for Fairing

* Add Guard example and documentation
2017-07-18 18:22:20 +08:00
Yong Wen Chua ebd75cd0ba Rocket 0.3 is released 2017-07-15 10:37:10 +08:00
Yong Wen Chua 7dbc22b523 Delay CORS checks and response until `Responder::respond_to` is invoked (#6)
* Delay checking of CORS to just before responding

* Lifetime issues

* Use State::inner()

* Fix lifetime issues

* Bump Rocket

* Document 'static limitation

And link to https://github.com/SergioBenitez/Rocket/pull/345

* Remove extraneous comments
2017-07-15 01:38:13 +08:00
Yong Wen Chua dfc1cdfee0 Refactor Implementation (#3)
* Introduce AllOrSome enum

More AllOrSome usage

Allowed methods

Preflight response

Response

* Additional documentation

* Support non CORS requests
2017-07-14 11:03:45 +08:00
Yong Wen Chua c9190abdc4 Add README 2017-07-13 16:12:54 +08:00