ruru 2.0.0-beta.1 → 2.0.0-beta.2
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 +8 -0
- package/README.md +2 -2
- package/bundle/ruru.min.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# ruru
|
|
2
2
|
|
|
3
|
+
## 2.0.0-beta.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#488](https://github.com/benjie/crystal/pull/488)
|
|
8
|
+
[`9f82b8612`](https://github.com/benjie/crystal/commit/9f82b861206fdd2b8a7c50ba5184112dfb57b54a)
|
|
9
|
+
Thanks [@benjie](https://github.com/benjie)! - Fix detection of SQL aliases
|
|
10
|
+
|
|
3
11
|
## 2.0.0-beta.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ installing it using the `npx` command. Here's an example command to explore
|
|
|
14
14
|
[@trevorblades](https://twitter.com/trevorblades)'s countries API:
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
npx ruru -SPe https://countries.trevorblades.com/graphql
|
|
17
|
+
npx ruru@beta -SPe https://countries.trevorblades.com/graphql
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
(`-S` enables subscriptions, `-P` proxies GraphQL requests; neither of these are
|
|
@@ -25,7 +25,7 @@ needed for Trevor's API, but you might want them for your API.)
|
|
|
25
25
|
Install Ruru:
|
|
26
26
|
|
|
27
27
|
```
|
|
28
|
-
yarn add ruru
|
|
28
|
+
yarn add ruru@beta
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
Then you can run something like the following to automatically proxy requests
|