publishing_platform_app_config 0.4.0 → 0.5.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 +4 -4
- data/.github/dependabot.yml +10 -10
- data/.github/workflows/actionlint.yml +1 -1
- data/.github/workflows/autorelease.yml +10 -0
- data/.github/workflows/ci.yml +13 -3
- data/.publishing_platform_dependabot_merger.yml +4 -0
- data/lib/publishing_platform_app_config/version.rb +1 -1
- data/publishing_platform_app_config.gemspec +4 -4
- metadata +18 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54dec42d2b5271e82b95e2e04361da976041e088909527b801290c909e410d2c
|
|
4
|
+
data.tar.gz: 2b71ed32b94a567cc68e473892e0e44f7ad4ef5afb06ccb4ed73fb0d41e83592
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db4c8d376f3442a1756b289f801fd8f13ed15d9ee5596b73568c990193de4fefa79c631a20e396cbbe8631e8f7f45d6c8566fabca5012baebd2f98daad79eb74
|
|
7
|
+
data.tar.gz: 7d4fe4e892e0f804676a537c015fd912d40be9d8f57fe0c711cfee0a9ef020dcaa06d560217ed6807c25ca45f700d79746b29b198d67806efe9c821a0d01d8db
|
data/.github/dependabot.yml
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
version: 2
|
|
2
2
|
updates:
|
|
3
|
-
- package-ecosystem: bundler
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
- package-ecosystem: github-actions
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
- package-ecosystem: bundler
|
|
4
|
+
directory: "/"
|
|
5
|
+
schedule:
|
|
6
|
+
interval: daily
|
|
7
|
+
open-pull-requests-limit: 10
|
|
8
|
+
- package-ecosystem: github-actions
|
|
9
|
+
directory: "/"
|
|
10
|
+
schedule:
|
|
11
|
+
interval: daily
|
|
12
|
+
open-pull-requests-limit: 10
|
|
@@ -6,7 +6,7 @@ jobs:
|
|
|
6
6
|
actionlint:
|
|
7
7
|
runs-on: ubuntu-latest
|
|
8
8
|
steps:
|
|
9
|
-
- uses: actions/checkout@
|
|
9
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
10
10
|
with:
|
|
11
11
|
show-progress: false
|
|
12
12
|
- uses: publishing-platform/publishing-platform-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: publishing-platform/publishing-platform-infrastructure/.github/workflows/autorelease-rubygem.yml@main
|
|
9
|
+
secrets:
|
|
10
|
+
GH_TOKEN: ${{ secrets.PUBLISHING_PLATFORM_CI_GITHUB_API_TOKEN }}
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -2,7 +2,17 @@ name: CI
|
|
|
2
2
|
|
|
3
3
|
on: [push, pull_request]
|
|
4
4
|
|
|
5
|
-
jobs:
|
|
5
|
+
jobs:
|
|
6
|
+
codeql-sast:
|
|
7
|
+
name: CodeQL SAST scan
|
|
8
|
+
uses: publishing-platform/publishing-platform-infrastructure/.github/workflows/codeql-analysis.yml@main
|
|
9
|
+
permissions:
|
|
10
|
+
security-events: write
|
|
11
|
+
|
|
12
|
+
dependency-review:
|
|
13
|
+
name: Dependency Review scan
|
|
14
|
+
uses: publishing-platform/publishing-platform-infrastructure/.github/workflows/dependency-review.yml@main
|
|
15
|
+
|
|
6
16
|
# This matrix job runs the test suite against multiple Ruby versions
|
|
7
17
|
test_matrix:
|
|
8
18
|
strategy:
|
|
@@ -11,8 +21,8 @@ jobs:
|
|
|
11
21
|
ruby: [3.2, 3.3, 3.4]
|
|
12
22
|
runs-on: ubuntu-latest
|
|
13
23
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
15
|
-
- uses: ruby/setup-ruby@v1
|
|
24
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
25
|
+
- uses: ruby/setup-ruby@c4e5b1316158f92e3d49443a9d58b31d25ac0f8f # v1.306.0
|
|
16
26
|
with:
|
|
17
27
|
ruby-version: ${{ matrix.ruby }}
|
|
18
28
|
bundler-cache: true
|
|
@@ -21,8 +21,8 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.add_dependency "sentry-rails", ">= 5.3", "< 7.0"
|
|
22
22
|
spec.add_dependency "sentry-ruby", "~> 5.3"
|
|
23
23
|
|
|
24
|
-
spec.add_development_dependency "climate_control"
|
|
25
|
-
spec.add_development_dependency "publishing_platform_rubocop"
|
|
26
|
-
spec.add_development_dependency "rails", "~>
|
|
27
|
-
spec.add_development_dependency "simplecov"
|
|
24
|
+
spec.add_development_dependency "climate_control", "~> 1.2"
|
|
25
|
+
spec.add_development_dependency "publishing_platform_rubocop", "~> 0.2"
|
|
26
|
+
spec.add_development_dependency "rails", "~> 8"
|
|
27
|
+
spec.add_development_dependency "simplecov", "~> 0.22"
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: publishing_platform_app_config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Publishing Platform
|
|
@@ -67,58 +67,58 @@ dependencies:
|
|
|
67
67
|
name: climate_control
|
|
68
68
|
requirement: !ruby/object:Gem::Requirement
|
|
69
69
|
requirements:
|
|
70
|
-
- - "
|
|
70
|
+
- - "~>"
|
|
71
71
|
- !ruby/object:Gem::Version
|
|
72
|
-
version: '
|
|
72
|
+
version: '1.2'
|
|
73
73
|
type: :development
|
|
74
74
|
prerelease: false
|
|
75
75
|
version_requirements: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
|
77
|
-
- - "
|
|
77
|
+
- - "~>"
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version: '
|
|
79
|
+
version: '1.2'
|
|
80
80
|
- !ruby/object:Gem::Dependency
|
|
81
81
|
name: publishing_platform_rubocop
|
|
82
82
|
requirement: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
|
84
|
-
- - "
|
|
84
|
+
- - "~>"
|
|
85
85
|
- !ruby/object:Gem::Version
|
|
86
|
-
version: '0'
|
|
86
|
+
version: '0.2'
|
|
87
87
|
type: :development
|
|
88
88
|
prerelease: false
|
|
89
89
|
version_requirements: !ruby/object:Gem::Requirement
|
|
90
90
|
requirements:
|
|
91
|
-
- - "
|
|
91
|
+
- - "~>"
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
|
-
version: '0'
|
|
93
|
+
version: '0.2'
|
|
94
94
|
- !ruby/object:Gem::Dependency
|
|
95
95
|
name: rails
|
|
96
96
|
requirement: !ruby/object:Gem::Requirement
|
|
97
97
|
requirements:
|
|
98
98
|
- - "~>"
|
|
99
99
|
- !ruby/object:Gem::Version
|
|
100
|
-
version: '
|
|
100
|
+
version: '8'
|
|
101
101
|
type: :development
|
|
102
102
|
prerelease: false
|
|
103
103
|
version_requirements: !ruby/object:Gem::Requirement
|
|
104
104
|
requirements:
|
|
105
105
|
- - "~>"
|
|
106
106
|
- !ruby/object:Gem::Version
|
|
107
|
-
version: '
|
|
107
|
+
version: '8'
|
|
108
108
|
- !ruby/object:Gem::Dependency
|
|
109
109
|
name: simplecov
|
|
110
110
|
requirement: !ruby/object:Gem::Requirement
|
|
111
111
|
requirements:
|
|
112
|
-
- - "
|
|
112
|
+
- - "~>"
|
|
113
113
|
- !ruby/object:Gem::Version
|
|
114
|
-
version: '0'
|
|
114
|
+
version: '0.22'
|
|
115
115
|
type: :development
|
|
116
116
|
prerelease: false
|
|
117
117
|
version_requirements: !ruby/object:Gem::Requirement
|
|
118
118
|
requirements:
|
|
119
|
-
- - "
|
|
119
|
+
- - "~>"
|
|
120
120
|
- !ruby/object:Gem::Version
|
|
121
|
-
version: '0'
|
|
121
|
+
version: '0.22'
|
|
122
122
|
description: Base configuration for Publishing Platform applications
|
|
123
123
|
executables: []
|
|
124
124
|
extensions: []
|
|
@@ -126,8 +126,10 @@ extra_rdoc_files: []
|
|
|
126
126
|
files:
|
|
127
127
|
- ".github/dependabot.yml"
|
|
128
128
|
- ".github/workflows/actionlint.yml"
|
|
129
|
+
- ".github/workflows/autorelease.yml"
|
|
129
130
|
- ".github/workflows/ci.yml"
|
|
130
131
|
- ".gitignore"
|
|
132
|
+
- ".publishing_platform_dependabot_merger.yml"
|
|
131
133
|
- ".rspec"
|
|
132
134
|
- ".rubocop.yml"
|
|
133
135
|
- ".ruby-version"
|
|
@@ -162,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
162
164
|
- !ruby/object:Gem::Version
|
|
163
165
|
version: '0'
|
|
164
166
|
requirements: []
|
|
165
|
-
rubygems_version: 4.0.
|
|
167
|
+
rubygems_version: 4.0.11
|
|
166
168
|
specification_version: 4
|
|
167
169
|
summary: Base configuration for Publishing Platform applications
|
|
168
170
|
test_files: []
|