govuk_content_item_loader 2.1.1 → 2.1.3
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.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +3 -3
- data/CHANGELOG.md +9 -0
- data/lib/govuk_content_item_loader/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0dcf5b2b565e52bd01cb1ab8edd4a697fe05ece140cb044a9118b5ea0273c5a2
|
|
4
|
+
data.tar.gz: 01070d8d27ae6541a211bdb939c54e0489db96900e4cb5c23a7234e2dd1a5288
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8e0abf9f4d6e7088742f6a034231904d9f3ca01835f235497896139917ddc49ff21a6857a448098fbc7881a5ec5cf2ea74150667ca83aa5fe826ebc983b220d
|
|
7
|
+
data.tar.gz: 3351a571beed7bcf55f0ea8f3881e806d8d2955d9a36237e0c1542494da137d0d554552510a3ea30c453c0799885e63eeae14224c1c1ecea04a09f561bca1311
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -26,19 +26,19 @@ jobs:
|
|
|
26
26
|
dependency-review:
|
|
27
27
|
name: Dependency Review scan
|
|
28
28
|
uses: alphagov/govuk-infrastructure/.github/workflows/dependency-review.yml@main
|
|
29
|
-
|
|
29
|
+
|
|
30
30
|
# Run the test suite against multiple Ruby and Rails versions
|
|
31
31
|
test_matrix:
|
|
32
32
|
strategy:
|
|
33
33
|
fail-fast: false
|
|
34
34
|
matrix:
|
|
35
|
-
ruby: [3.3, 3.4]
|
|
35
|
+
ruby: [3.3, 3.4, 4.0]
|
|
36
36
|
runs-on: ubuntu-latest
|
|
37
37
|
steps:
|
|
38
38
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
39
39
|
with:
|
|
40
40
|
ref: ${{ inputs.ref || github.ref }}
|
|
41
|
-
- uses: ruby/setup-ruby@
|
|
41
|
+
- uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # v1.301.0
|
|
42
42
|
with:
|
|
43
43
|
ruby-version: ${{ matrix.ruby }}
|
|
44
44
|
bundler-cache: true
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.1.3
|
|
4
|
+
|
|
5
|
+
* Update dependencies
|
|
6
|
+
|
|
7
|
+
## 2.1.2
|
|
8
|
+
|
|
9
|
+
* Test against Ruby 4.0
|
|
10
|
+
|
|
3
11
|
## 2.1.1
|
|
4
12
|
|
|
5
13
|
* Add optional `base_path` argument to `GovukConditionalContentItemLoader`, allowing a different path from the original request to be retrieved.
|
|
14
|
+
* Update dependencies
|
|
6
15
|
|
|
7
16
|
## 2.1.0
|
|
8
17
|
|