govuk_schemas 5.0.3 → 6.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb7171db237b01bb19991d1675d3d150731997d20fa4fb2f28c7b0868e0f723f
4
- data.tar.gz: 90872e26de2b1ccc70b1b4e3ade137eaeb6a3221bfa0cf65c69d6c81ae045c44
3
+ metadata.gz: 5dfa122dda29dbe6408145d997c35a0d59694bebe06e94e804123eeeb8c69949
4
+ data.tar.gz: 20378d4689077b168d2b7c9ea16198996c3064229f097593923f41739dc4b51f
5
5
  SHA512:
6
- metadata.gz: 8789569b6d515a80312e5aae98f33c68d7ec1972f487d8e7eb599d1b7a0cb4bd4b77d9cc9e952df9a149e2d5a32e5794a6de3f974411ec491ccc2a05d9527c37
7
- data.tar.gz: ff677fa7341044673cca7573fd14e07bf2de126b163c09c2c3d576850a6b52c7ee4206c1d2d4439db7339e2c9e8ff2191c687c3338d21f967033c275d5092cd8
6
+ metadata.gz: c5458746961ae35f261806c9f83a995ad696fceb591345642520704d8e12616a142092464dfe7abca40ab7299343216c1c3bdcf61cf12519b84f53d2380d8783
7
+ data.tar.gz: '09272215f8debc39696724c6ff775ea94ecf56776da71d85ec5b92a47bd74abb5bed7b151ea7e18691303697259fc7616cd6f2b4630c59b073e9bb0022b7da5c'
@@ -0,0 +1,12 @@
1
+ name: Lint GitHub Actions
2
+ on:
3
+ push:
4
+ paths: ['.github/**']
5
+ jobs:
6
+ actionlint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ with:
11
+ show-progress: false
12
+ - uses: alphagov/govuk-infrastructure/.github/actions/actionlint@main
@@ -0,0 +1,10 @@
1
+ on:
2
+ workflow_dispatch: {}
3
+ schedule:
4
+ - cron: '30 10 * * 1-5' # 10:30am UTC, Mon-Fri.
5
+
6
+ jobs:
7
+ autorelease:
8
+ uses: alphagov/govuk-infrastructure/.github/workflows/autorelease-rubygem.yml@main
9
+ secrets:
10
+ GH_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
@@ -26,7 +26,7 @@ jobs:
26
26
  strategy:
27
27
  fail-fast: false
28
28
  matrix:
29
- ruby: [3.1, 3.2, 3.3]
29
+ ruby: [3.2, 3.3]
30
30
  runs-on: ubuntu-latest
31
31
  steps:
32
32
  - uses: actions/checkout@v4
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.4
1
+ 3.3.7
data/CHANGELOG.md CHANGED
@@ -1,124 +1,131 @@
1
- # 5.0.3
1
+ # Changelog
2
+
3
+ ## 6.0.0
4
+
5
+ * BREAKING: Drop support for Ruby 3.1 [PR](https://github.com/alphagov/govuk_schemas/pull/141)
6
+
7
+ ## 5.0.4
8
+
9
+ * Ensure `Faker` is added as a non-development dependency
10
+
11
+ ## 5.0.3
2
12
 
3
13
  * Add support for `email` string types
4
14
  * Use `Faker` gem to generate emails and URLs
5
15
  * Improve error messages when an unknown type is given in `GovukSchemas::RandomContentGenerator#string_for_type`
6
16
 
7
- # 5.0.2
17
+ ## 5.0.2
8
18
 
9
19
  * Fix issue where customised schema validation message was incorrect for a modified payload
10
20
 
11
- # 5.0.1
21
+ ## 5.0.1
12
22
 
13
23
  * Improve speed of random schema generation for customised content items
14
24
 
15
- # 5.0.0
25
+ ## 5.0.0
16
26
 
17
27
  * BREAKING: Drop support for Ruby 3.0. The minimum required Ruby version is now 3.1.4.
18
28
  * Add support for Ruby 3.3.
19
29
  * Add support for `json-schema` 3.3.
20
30
 
21
- # 4.7.0
31
+ ## 4.7.0
22
32
 
23
33
  * Update `json-schema` dependency.
24
34
 
25
- # 4.6.0
35
+ ## 4.6.0
26
36
 
27
37
  * Drop support for Ruby 2.7.
28
38
  * Fix guidance on fixing a regex issue to reference correct filename.
29
39
  * Add support for `^[1-9][0-9]{3}$` regex to resolve exceptions randomly generating specialist_documents.
30
40
 
31
- # 4.5.0
41
+ ## 4.5.0
32
42
 
33
- General support for content schemas in publishing api:
34
- * Update default content schemas url to point to publishing api rather than govuk-content-schemas. This is because we are merging schemas into publishing api.
35
- * Update path of allowed_document_types.yml to reflect new location in publishing api, allowing us to remove a symlink.
36
- * Introduce a setter method for manually configuring the path to schemas, outside of an env variable
43
+ * General support for content schemas in Publishing API:
44
+ * Update default content schemas url to point to publishing api rather than govuk-content-schemas. This is because we are merging schemas into publishing api.
45
+ * Update path of allowed_document_types.yml to reflect new location in publishing api, allowing us to remove a symlink.
46
+ * Introduce a setter method for manually configuring the path to schemas, outside of an env variable
37
47
 
38
- # 4.4.1
48
+ ## 4.4.1
39
49
 
40
50
  * Fix `Validator` module to handle JSON or other object types being passed as the payload ([#68](https://github.com/alphagov/govuk_schemas/pull/68))
41
51
 
42
- # 4.4.0
52
+ ## 4.4.0
43
53
 
44
54
  * Adds support for applications that use Minitest by adding an `AssertMatchers` module ([#66](https://github.com/alphagov/govuk_schemas/pull/66))
45
55
 
46
- # 4.3.0
56
+ ## 4.3.0
47
57
 
48
58
  * Generate unique items for arrays with the "uniqueItems" property. ([#63](https://github.com/alphagov/govuk_schemas/pull/63))
49
59
 
50
- # 4.2.0
60
+ ## 4.2.0
51
61
 
52
62
  * Add support for generating random HH:MM time strings that match a regex. ([#62](https://github.com/alphagov/govuk_schemas/pull/62))
53
63
 
54
- # 4.1.1
64
+ ## 4.1.1
55
65
 
56
66
  * Fix RandomSchemaGenerator.new always returning equivalent generators ([#60](https://github.com/alphagov/govuk_schemas/pull/60))
57
67
 
58
- # 4.1.0
68
+ ## 4.1.0
59
69
 
60
70
  * Add `seed` parameter to `GovukSchemas::RandomExample` to make the random behaviour deterministic. Given the same seed, the same randomised outputs will be returned ([#56](https://github.com/alphagov/govuk_schemas/pull/56)).
61
71
 
62
- # 4.0.1
72
+ ## 4.0.1
63
73
 
64
74
  * Bump the required Ruby version to >= 2.6.x.
65
75
 
66
- # 4.0.0
76
+ ## 4.0.0
67
77
 
68
- * Change RSpec::Matchers, rename `be_valid_against_schema` to
69
- `be_valid_against_publisher_schema` and add
70
- `be_valid_against_frontend_schema` plus
71
- `be_valid_against_notification_schema`.
78
+ * Change RSpec::Matchers, rename `be_valid_against_schema` to `be_valid_against_publisher_schema` and add `be_valid_against_frontend_schema` plus `be_valid_against_notification_schema`.
72
79
 
73
- # 3.3.0
80
+ ## 3.3.0
74
81
 
75
82
  * Support generating objects with an `oneOf` property.
76
83
 
77
- # 3.2.0
84
+ ## 3.2.0
78
85
 
79
86
  * Add `GovukSchemas::DocumentTypes.valid_document_types` (PR #48)
80
87
 
81
- # 3.1.0
88
+ ## 3.1.0
82
89
 
83
90
  * Update json-schema dependency
84
91
 
85
- # 3.0.1
92
+ ## 3.0.1
86
93
 
87
- * change order of output when validation errors occur during random example generation
94
+ * Change order of output when validation errors occur during random example generation
88
95
 
89
- # 3.0.0
96
+ ## 3.0.0
90
97
 
91
98
  * Move to block based customisation of randomly generated payloads. This removes the existing methods: `customise_and_validate` and `merge_and_validate`. In addition `GovukSchemas::RandomExample.for_schema(schema)` now returns the payload hash directly.
92
99
 
93
- # 2.3.0
100
+ ## 2.3.0
94
101
 
95
102
  * Allow looking up examples to work with schemas stored in `formats/{format}/{schema_type}/examples/` and `examples/{format}/{schema_type}/` to allow schema examples to move.
96
103
 
97
- # 2.2.0
104
+ ## 2.2.0
98
105
 
99
106
  * Add RSpec test helpers
100
107
  * Add `customise_and_validate` to bring the functionality to remove fields from a payload which has been generated as a random example
101
108
 
102
- # 2.1.1
109
+ ## 2.1.1
103
110
 
104
111
  * Support for a new regex in GOV.UK content schemas
105
112
 
106
- # 2.1.0
113
+ ## 2.1.0
107
114
 
108
115
  * Add `Schema.schema_names` to return all schema names
109
116
  * Add functionality to work with examples
110
117
 
111
- # 2.0.0
118
+ ## 2.0.0
112
119
 
113
120
  * Change GovukSchemas::Schema.find to take { links_schema: 'detailded_guide' }
114
121
  * Add regex for lowercase-underscore strings
115
122
 
116
- # 1.0.0
123
+ ## 1.0.0
117
124
 
118
125
  * Add regex for GOV.UK campaign URLs
119
126
  * Improve error messages
120
127
 
121
- # 0.2.0
128
+ ## 0.2.0
122
129
 
123
130
  * Add a new regex for the new application validation in the schema
124
131
  * Add documentation for the gem
@@ -126,6 +133,6 @@ General support for content schemas in publishing api:
126
133
  * Now tests all available schema (a problem with specialist docs has been solved)
127
134
  * Drops active-support dependency, pins json-schema dependency
128
135
 
129
- # 0.1.0
136
+ ## 0.1.0
130
137
 
131
138
  * First release. Allows random content generation.
@@ -18,15 +18,15 @@ Gem::Specification.new do |spec|
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
19
  spec.require_paths = %w[lib]
20
20
 
21
+ spec.add_dependency "faker", ">= 3.4.1", "< 3.6.0"
21
22
  # This should be kept in sync with the json-schema version of publishing-api.
22
- spec.add_dependency "json-schema", ">= 2.8", "< 4.4"
23
+ spec.add_dependency "json-schema", ">= 2.8", "< 5.2"
23
24
 
24
25
  spec.add_development_dependency "climate_control"
25
- spec.add_development_dependency "faker", "~> 3.4.1"
26
26
  spec.add_development_dependency "pry-byebug"
27
27
  spec.add_development_dependency "rake", "~> 13.0"
28
28
  spec.add_development_dependency "rspec", "~> 3.4"
29
- spec.add_development_dependency "rubocop-govuk", "4.18.0"
29
+ spec.add_development_dependency "rubocop-govuk", "5.1.1"
30
30
 
31
- spec.required_ruby_version = ">= 3.1.4"
31
+ spec.required_ruby_version = ">= 3.2"
32
32
  end
@@ -1,4 +1,4 @@
1
1
  module GovukSchemas
2
2
  # @private
3
- VERSION = "5.0.3".freeze
3
+ VERSION = "6.0.0".freeze
4
4
  end
metadata CHANGED
@@ -1,63 +1,68 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: govuk_schemas
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.3
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - GOV.UK Dev
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-06-24 00:00:00.000000000 Z
10
+ date: 2025-03-26 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
- name: json-schema
13
+ name: faker
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '2.8'
18
+ version: 3.4.1
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
- version: '4.4'
21
+ version: 3.6.0
23
22
  type: :runtime
24
23
  prerelease: false
25
24
  version_requirements: !ruby/object:Gem::Requirement
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: '2.8'
28
+ version: 3.4.1
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
- version: '4.4'
31
+ version: 3.6.0
33
32
  - !ruby/object:Gem::Dependency
34
- name: climate_control
33
+ name: json-schema
35
34
  requirement: !ruby/object:Gem::Requirement
36
35
  requirements:
37
36
  - - ">="
38
37
  - !ruby/object:Gem::Version
39
- version: '0'
40
- type: :development
38
+ version: '2.8'
39
+ - - "<"
40
+ - !ruby/object:Gem::Version
41
+ version: '5.2'
42
+ type: :runtime
41
43
  prerelease: false
42
44
  version_requirements: !ruby/object:Gem::Requirement
43
45
  requirements:
44
46
  - - ">="
45
47
  - !ruby/object:Gem::Version
46
- version: '0'
48
+ version: '2.8'
49
+ - - "<"
50
+ - !ruby/object:Gem::Version
51
+ version: '5.2'
47
52
  - !ruby/object:Gem::Dependency
48
- name: faker
53
+ name: climate_control
49
54
  requirement: !ruby/object:Gem::Requirement
50
55
  requirements:
51
- - - "~>"
56
+ - - ">="
52
57
  - !ruby/object:Gem::Version
53
- version: 3.4.1
58
+ version: '0'
54
59
  type: :development
55
60
  prerelease: false
56
61
  version_requirements: !ruby/object:Gem::Requirement
57
62
  requirements:
58
- - - "~>"
63
+ - - ">="
59
64
  - !ruby/object:Gem::Version
60
- version: 3.4.1
65
+ version: '0'
61
66
  - !ruby/object:Gem::Dependency
62
67
  name: pry-byebug
63
68
  requirement: !ruby/object:Gem::Requirement
@@ -106,14 +111,14 @@ dependencies:
106
111
  requirements:
107
112
  - - '='
108
113
  - !ruby/object:Gem::Version
109
- version: 4.18.0
114
+ version: 5.1.1
110
115
  type: :development
111
116
  prerelease: false
112
117
  version_requirements: !ruby/object:Gem::Requirement
113
118
  requirements:
114
119
  - - '='
115
120
  - !ruby/object:Gem::Version
116
- version: 4.18.0
121
+ version: 5.1.1
117
122
  description: Gem to generate test data based on GOV.UK content schemas
118
123
  email:
119
124
  - govuk-dev@digital.cabinet-office.gov.uk
@@ -122,6 +127,8 @@ extensions: []
122
127
  extra_rdoc_files: []
123
128
  files:
124
129
  - ".github/dependabot.yml"
130
+ - ".github/workflows/actionlint.yml"
131
+ - ".github/workflows/autorelease.yml"
125
132
  - ".github/workflows/ci.yml"
126
133
  - ".gitignore"
127
134
  - ".govuk_dependabot_merger.yml"
@@ -151,7 +158,6 @@ homepage: https://github.com/alphagov/govuk_schemas_gem
151
158
  licenses:
152
159
  - MIT
153
160
  metadata: {}
154
- post_install_message:
155
161
  rdoc_options: []
156
162
  require_paths:
157
163
  - lib
@@ -159,15 +165,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
159
165
  requirements:
160
166
  - - ">="
161
167
  - !ruby/object:Gem::Version
162
- version: 3.1.4
168
+ version: '3.2'
163
169
  required_rubygems_version: !ruby/object:Gem::Requirement
164
170
  requirements:
165
171
  - - ">="
166
172
  - !ruby/object:Gem::Version
167
173
  version: '0'
168
174
  requirements: []
169
- rubygems_version: 3.5.14
170
- signing_key:
175
+ rubygems_version: 3.6.6
171
176
  specification_version: 4
172
177
  summary: Gem to generate test data based on GOV.UK content schemas
173
178
  test_files: []