Skip to content

Commit fb8711e

Browse files
committed
Release 1.1.4 🎉
1 parent e20e1ff commit fb8711e

File tree

4 files changed

+71
-41
lines changed

4 files changed

+71
-41
lines changed

CHANGELOG.md

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

78
## [Unreleased]
89

10+
## [1.1.4] — 2020-03-19
11+
12+
- [Security] Bump Acorn to 5.7.4 && 6.4.1 (#125, #127)
13+
- [i18n] Translate to farsi, fix improper translation (#121, #124) (@MParvin, @fargito)
14+
- Better fixtures for local dev & review apps (#134) (@phacks)
15+
- Display “Go to admin” link in Account panel for admins (#135) (@phacks)
16+
917
## [1.1.3] — 2019-12-20
1018

11-
- [Security] Bump Django to 3.0.1 (#101) (@phacks)
12-
- Fix `from_date` not working for scripts (#103) (@phacks)
13-
- Activate gzip compression on API calls (#104) (@phacks)
19+
- [Security] Bump Django to 3.0.1 (#101) (@phacks)
20+
- Fix `from_date` not working for scripts (#103) (@phacks)
21+
- Activate gzip compression on API calls (#104) (@phacks)
1422

1523
## [1.1.2] — 2019-12-17
1624

@@ -22,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2230
- Fix WPT Compare view not working for Private Instances (@phacks)
2331

2432
## [1.1.0] — 2019-12-13
33+
2534
- Add support for WebPageTest Private Instances 🎉 (@phacks)
2635

2736
## [1.0.3] - 2019-12-10
@@ -55,12 +64,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5564

5665
🎉Initial release! 🎉
5766

58-
[Unreleased]: https://github.com/theodo/falco/compare/1.1.3...HEAD
67+
[unreleased]: https://github.com/theodo/falco/compare/1.1.4...HEAD
68+
[1.1.4]: https://github.com/theodo/falco/compare/1.1.4...1.1.3
5969
[1.1.3]: https://github.com/theodo/falco/compare/1.1.3...1.1.2
6070
[1.1.2]: https://github.com/theodo/falco/compare/1.1.2...1.1.1
6171
[1.1.1]: https://github.com/theodo/falco/compare/1.1.1...1.1.0
6272
[1.1.0]: https://github.com/theodo/falco/compare/1.0.3...1.1.0
6373
[1.0.3]: https://github.com/theodo/falco/compare/1.0.2...1.0.3
6474
[1.0.2]: https://github.com/theodo/falco/compare/1.0.1...1.0.2
6575
[1.0.1]: https://github.com/theodo/falco/compare/1.0.0...1.0.1
66-
[1.0.0]: https://github.com/theodo/falco/releases/tag/1.0.0
76+
[1.0.0]: https://github.com/theodo/falco/releases/tag/1.0.0

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You can try a demo version by logging in to https://falco.theo.do with the crede
3737

3838
You can deploy Falco on Heroku by clicking on the following button:
3939

40-
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.1.3)
40+
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.1.4)
4141

4242
You will need to provide your credit card details to Heroku, but you will be under the free tier by default. You can find more details on why they are needed and Heroku’s pricing policy [in the docs](https://getfal.co).
4343

@@ -95,6 +95,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
9595

9696
<!-- markdownlint-enable -->
9797
<!-- prettier-ignore-end -->
98+
9899
<!-- ALL-CONTRIBUTORS-LIST:END -->
99100

100101
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

docs/docs/getting-started/installation.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import Link from "@docusaurus/Link";
4242

4343
<Link
4444
className="button button--primary button--lg"
45-
href={"https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.1.3"}
45+
href={"https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.1.4"}
4646
style={{marginBottom: '20px'}}
4747
>
4848
Deploy to Heroku

docs/src/pages/index.js

+53-34
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ const features = [
2929
imageUrl: "img/monitoring.svg",
3030
description: (
3131
<>
32-
Falco monitors key performance metrics, and lets you choose which one you want
33-
to monitor—Time to Interactive, First Meaningful Paint, Speed Index…
32+
Falco monitors key performance metrics, and lets you choose which one
33+
you want to monitor—Time to Interactive, First Meaningful Paint, Speed
34+
Index…
3435
</>
3536
)
3637
},
@@ -39,8 +40,8 @@ const features = [
3940
imageUrl: "img/team.svg",
4041
description: (
4142
<>
42-
Invite your team to Falco to make collaboration around performance issues
43-
better, with fine-grained user rights management.
43+
Invite your team to Falco to make collaboration around performance
44+
issues better, with fine-grained user rights management.
4445
</>
4546
)
4647
},
@@ -69,12 +70,11 @@ const features = [
6970
imageUrl: "img/private.svg",
7071
description: (
7172
<>
72-
You can choose to use your own WebPageTest Private Instance for more frequent audits,
73-
or rely on the public one.
73+
You can choose to use your own WebPageTest Private Instance for more
74+
frequent audits, or rely on the public one.
7475
</>
7576
)
7677
}
77-
7878
];
7979

8080
function Home() {
@@ -106,7 +106,7 @@ function Home() {
106106
"button button--primary button--lg",
107107
styles.addFocus
108108
)}
109-
href="https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.1.3"
109+
href="https://heroku.com/deploy?template=https://github.com/theodo/falco/tree/1.1.4"
110110
target="_blank"
111111
>
112112
Deploy to Heroku
@@ -125,10 +125,17 @@ function Home() {
125125
/>
126126
</div>
127127
</div>
128-
<div className={classnames("text--center", styles.infoPill)}>
129-
<p>Looking for Theodo’s Falco instance? Head to its new URL: <a href="https://falco.theo.do">https://falco.theo.do</a>.</p>
130-
<p>To see a demo, log in to <a href="https://falco.theo.do">https://falco.theo.do</a> with the credentials <code>demo / demodemo</code>.</p>
131-
</div>
128+
<div className={classnames("text--center", styles.infoPill)}>
129+
<p>
130+
Looking for Theodo’s Falco instance? Head to its new URL:{" "}
131+
<a href="https://falco.theo.do">https://falco.theo.do</a>.
132+
</p>
133+
<p>
134+
To see a demo, log in to{" "}
135+
<a href="https://falco.theo.do">https://falco.theo.do</a> with the
136+
credentials <code>demo / demodemo</code>.
137+
</p>
138+
</div>
132139
</div>
133140
</header>
134141
<main>
@@ -140,7 +147,11 @@ function Home() {
140147
<div className={classnames("row", styles.usersImages)}>
141148
<div
142149
className="col col--2"
143-
style={{ display: "flex", justifyContent: "center", marginBottom: "30px"}}
150+
style={{
151+
display: "flex",
152+
justifyContent: "center",
153+
marginBottom: "30px"
154+
}}
144155
>
145156
<img
146157
src={useBaseUrl("img/bnp.png")}
@@ -149,7 +160,11 @@ function Home() {
149160
</div>
150161
<div
151162
className="col col--2"
152-
style={{ display: "flex", justifyContent: "center", marginBottom: "30px" }}
163+
style={{
164+
display: "flex",
165+
justifyContent: "center",
166+
marginBottom: "30px"
167+
}}
153168
>
154169
<img
155170
src={useBaseUrl("img/choose.png")}
@@ -158,39 +173,43 @@ function Home() {
158173
</div>
159174
<div
160175
className="col col--2"
161-
style={{ display: "flex", justifyContent: "center", marginBottom: "30px" }}
176+
style={{
177+
display: "flex",
178+
justifyContent: "center",
179+
marginBottom: "30px"
180+
}}
162181
>
163-
<img
164-
src={useBaseUrl("img/tarkett.png")}
165-
alt="Tarkett logo"
166-
/>
182+
<img src={useBaseUrl("img/tarkett.png")} alt="Tarkett logo" />
167183
</div>
168184
<div
169185
className="col col--2"
170-
style={{ display: "flex", justifyContent: "center", marginBottom: "30px" }}
186+
style={{
187+
display: "flex",
188+
justifyContent: "center",
189+
marginBottom: "30px"
190+
}}
171191
>
172-
<img
173-
src={useBaseUrl("img/voodoo.png")}
174-
alt="Voodoo logo"
175-
/>
192+
<img src={useBaseUrl("img/voodoo.png")} alt="Voodoo logo" />
176193
</div>
177194
<div
178195
className="col col--2"
179-
style={{ display: "flex", justifyContent: "center", marginBottom: "30px" }}
196+
style={{
197+
display: "flex",
198+
justifyContent: "center",
199+
marginBottom: "30px"
200+
}}
180201
>
181-
<img
182-
src={useBaseUrl("img/evaneos.png")}
183-
alt="Evaneos logo"
184-
/>
202+
<img src={useBaseUrl("img/evaneos.png")} alt="Evaneos logo" />
185203
</div>
186204
<div
187205
className="col col--2"
188-
style={{ display: "flex", justifyContent: "center", marginBottom: "30px" }}
206+
style={{
207+
display: "flex",
208+
justifyContent: "center",
209+
marginBottom: "30px"
210+
}}
189211
>
190-
<img
191-
src={useBaseUrl("img/oscaro.png")}
192-
alt="Oscaro logo"
193-
/>
212+
<img src={useBaseUrl("img/oscaro.png")} alt="Oscaro logo" />
194213
</div>
195214
</div>
196215
</div>

0 commit comments

Comments
 (0)