Skip to content

Commit

Permalink
docs: prepare for 1.8.1 (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
favonia authored Dec 5, 2022
1 parent a6a8dad commit cfb3ae1
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-build-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:

# Allow one concurrent deployment
concurrency:
group: "pages"
group: ${{ github.workflow }}
cancel-in-progress: true

jobs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ jobs:
fuzz:
name: Fuzz
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-fuzz-${{ github.ref }}
cancel-in-progress: true
env:
FUZZTIME: "60s"
steps:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# [1.8.1](https://github.com/favonia/cloudflare-ddns/compare/v1.8.0...v1.8.1) (2022-12-05)

A minor update with internal refactoring and insignificant UI adjustments.

# [1.8.0](https://github.com/favonia/cloudflare-ddns/compare/v1.7.2...v1.8.0) (2022-11-25)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ Change `1000` to the user or group IDs you wish to use to run the updater. The s
<details>
<summary>🎭 Use <code>PROXIED=true</code> to hide your IP addresses.</summary>

The setting `PROXIED=true` instructs Cloudflare to cache webpages on your machine and hide your actual IP addresses. If you wish to bypass that and expose your actual IP addresses, simply remove `PROXIED=true`. (The default value of `PROXIED` is `false`.)
The setting `PROXIED=true` instructs Cloudflare to cache webpages on your machine and hide your actual IP addresses. If you wish to bypass that and expose your actual IP addresses, simply remove `PROXIED=true`. If your traffic is not HTTP(S), then Cloudflare cannot proxy it and you must turn off the proxying by removing `PROXIED=true`. (The default value of `PROXIED` is `false`.)

</details>

Expand Down
3 changes: 1 addition & 2 deletions internal/api/cloudflare.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,7 @@ func (h *CloudflareHandle) ActiveZones(ctx context.Context, ppfmt pp.PP, name st
"initializing", // the setup was just started?
"moved", // domain registrar not pointing to Cloudflare
"pending": // the setup was not completed
ppfmt.Warningf(pp.EmojiWarning, "Zone %q is %q; your Cloudflare setup is incomplete", name, zone.Status)
ppfmt.Warningf(pp.EmojiWarning, "Some features might stop working")
ppfmt.Warningf(pp.EmojiWarning, "Zone %q is %q; your Cloudflare setup is incomplete; some features might not work as expected", name, zone.Status) //nolint:lll
ids = append(ids, zone.ID)
case
"deleted": // archived, pending/moved for too long
Expand Down
6 changes: 2 additions & 4 deletions internal/api/cloudflare_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,7 @@ func TestZoneOfDomain(t *testing.T) {
1, mockID("test.org", 0), true,
func(m *mocks.MockPP) {
gomock.InOrder(
m.EXPECT().Warningf(pp.EmojiWarning, "Zone %q is %q; your Cloudflare setup is incomplete", "test.org", "pending"), //nolint:lll
m.EXPECT().Warningf(pp.EmojiWarning, "Some features might stop working"),
m.EXPECT().Warningf(pp.EmojiWarning, "Zone %q is %q; your Cloudflare setup is incomplete; some features might not work as expected", "test.org", "pending"), //nolint:lll
)
},
},
Expand All @@ -423,8 +422,7 @@ func TestZoneOfDomain(t *testing.T) {
1, mockID("test.org", 0), true,
func(m *mocks.MockPP) {
gomock.InOrder(
m.EXPECT().Warningf(pp.EmojiWarning, "Zone %q is %q; your Cloudflare setup is incomplete", "test.org", "initializing"), //nolint:lll
m.EXPECT().Warningf(pp.EmojiWarning, "Some features might stop working"),
m.EXPECT().Warningf(pp.EmojiWarning, "Zone %q is %q; your Cloudflare setup is incomplete; some features might not work as expected", "test.org", "initializing"), //nolint:lll
)
},
},
Expand Down

0 comments on commit cfb3ae1

Please sign in to comment.