resources: Add `key` to reources.GetRemote options map
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 11 Apr 2022 08:34:08 +0000 (10:34 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 13 Apr 2022 07:18:17 +0000 (09:18 +0200)
commit2dbdf38a5411c554146ddd915a0aea3b2eaf4407
tree333aaaac81aff606b1e6d39adc1663cec0fa8a32
parentf8c4e1690a462a2dcafa05aeaab65d1fad6df61e
resources: Add `key` to reources.GetRemote options map

If set, `key` will be used as the only cache key element for the resource.

The default behaviour is to calculate the key based on the URL and all the options.

This means that you can now do:

```
{{ $cacheKey := print $url (now.Format "2006-01-02") }}
{{ $resource := resource.GetRemote $url (dict "key" $cacheKey) }}
```

Fixes #9755
common/maps/maps.go
common/maps/maps_test.go
docs/content/en/hugo-pipes/introduction.md
resources/resource_factories/create/remote.go
resources/resource_factories/create/remote_test.go