vagrant-vyos 1.1.9 → 1.1.12
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 +15 -0
- data/.github/workflows/release.yml +15 -8
- data/.github/workflows/test.yml +7 -5
- data/.release-please-manifest.json +3 -0
- data/CHANGELOG.md +30 -0
- data/lib/vagrant-vyos/version.rb +1 -1
- data/release-please-config.json +15 -0
- data/renovate.json +2 -21
- data/spec/helper.rb +2 -2
- data/vagrant-vyos.gemspec +1 -1
- metadata +7 -5
- data/.github/release-please.yml +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47dcee2ce5304e63e5316c1e4c12e7ef1b40a13a756e2255f71ec132a328c73b
|
4
|
+
data.tar.gz: 8807644a25d366fd08b9d5e9a918096f2991101cd709d9b88d94e7e5122461e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b554c16e532a4513ffb0b7b7e4cc20265bf34871cd5b5f2643bc85c854ede3fd83aefc736476ce50de512760556aa7c04824ef2820811a11a47a2dc783b8e9d9
|
7
|
+
data.tar.gz: 7768000623a45495f83deb034d609740a5ac637476395faa8dd581f315a964ee5ac213066f66868209ccd787e8b44e25be9958c6ebfd342da19b85cb62a8c1de
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
3
|
+
# Please see the documentation for all configuration options:
|
4
|
+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
5
|
+
|
6
|
+
version: 2
|
7
|
+
updates:
|
8
|
+
- package-ecosystem: "bundler" # See documentation for possible values
|
9
|
+
directory: "/" # Location of package manifests
|
10
|
+
schedule:
|
11
|
+
interval: "daily"
|
12
|
+
commit-message:
|
13
|
+
prefix: fix
|
14
|
+
prefix-development: chore
|
15
|
+
include: scope
|
@@ -5,28 +5,35 @@ on:
|
|
5
5
|
branches:
|
6
6
|
- master
|
7
7
|
|
8
|
+
permissions:
|
9
|
+
contents: write
|
10
|
+
pull-requests: write
|
11
|
+
|
8
12
|
jobs:
|
9
13
|
release:
|
10
14
|
runs-on: ubuntu-latest
|
15
|
+
|
11
16
|
steps:
|
12
|
-
- uses:
|
17
|
+
- uses: googleapis/release-please-action@v4
|
13
18
|
id: release
|
14
19
|
with:
|
15
|
-
|
16
|
-
|
20
|
+
config-file: release-please-config.json
|
21
|
+
manifest-file: .release-please-manifest.json
|
17
22
|
|
18
|
-
- uses: actions/checkout@
|
23
|
+
- uses: actions/checkout@v4
|
19
24
|
if: ${{ steps.release.outputs.release_created }}
|
20
25
|
|
21
|
-
- name: Set up Ruby
|
26
|
+
- name: Set up Ruby
|
22
27
|
uses: ruby/setup-ruby@v1
|
23
28
|
with:
|
24
|
-
ruby-version:
|
25
|
-
bundler-cache: true
|
29
|
+
ruby-version: 3.3
|
26
30
|
if: ${{ steps.release.outputs.release_created }}
|
27
31
|
|
28
32
|
- name: Build
|
29
|
-
run:
|
33
|
+
run: |
|
34
|
+
bundle config path vendor/bundle
|
35
|
+
bundle install --jobs 4 --retry 3
|
36
|
+
gem build *.gemspec
|
30
37
|
if: ${{ steps.release.outputs.release_created }}
|
31
38
|
|
32
39
|
- name: Publish
|
data/.github/workflows/test.yml
CHANGED
@@ -8,15 +8,17 @@ jobs:
|
|
8
8
|
runs-on: ubuntu-latest
|
9
9
|
|
10
10
|
steps:
|
11
|
-
- uses: actions/checkout@
|
12
|
-
- name: Set up Ruby
|
11
|
+
- uses: actions/checkout@v4
|
12
|
+
- name: Set up Ruby
|
13
13
|
uses: ruby/setup-ruby@v1
|
14
14
|
with:
|
15
|
-
ruby-version:
|
16
|
-
bundler-cache: true
|
15
|
+
ruby-version: 3.3
|
17
16
|
- name: Test
|
18
17
|
run: |
|
19
|
-
gem install bundler
|
20
18
|
bundle config path vendor/bundle
|
21
19
|
bundle install --jobs 4 --retry 3
|
22
20
|
bundle exec rake spec
|
21
|
+
- name: Upload coverage to Codecov
|
22
|
+
uses: codecov/codecov-action@v4
|
23
|
+
with:
|
24
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,35 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.1.12](https://github.com/higebu/vagrant-vyos/compare/vagrant-vyos-v1.1.11...vagrant-vyos/v1.1.12) (2024-09-02)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* **deps:** update actions/checkout action to v4 ([4871f71](https://github.com/higebu/vagrant-vyos/commit/4871f71f2039061f8ad22356a9e0aa9d86b9312a))
|
9
|
+
* fix Gemfile.lock ([1190da6](https://github.com/higebu/vagrant-vyos/commit/1190da66fd3de5b991bdb84a8e31bde50d744120))
|
10
|
+
* fix release-please config ([09ffb04](https://github.com/higebu/vagrant-vyos/commit/09ffb045d8fbc95aa0711a085b58eb4698be04dc))
|
11
|
+
* gempush.yml ([2072747](https://github.com/higebu/vagrant-vyos/commit/2072747871785f61a11ff12c671b1f61fd7c08cd))
|
12
|
+
* remove Gemfile.lock ([7544922](https://github.com/higebu/vagrant-vyos/commit/75449224262d8c9405a7a23e2433691518c56021))
|
13
|
+
* revert Gemfile.lock ([670e496](https://github.com/higebu/vagrant-vyos/commit/670e496fabcf7c4a06d299c3af8e7d1a33e122c7))
|
14
|
+
* update Gemfile.lock ([cb089e3](https://github.com/higebu/vagrant-vyos/commit/cb089e3b78eecdf0b44d0c97afca5cff6530d4c0))
|
15
|
+
* use simplecov-cobertura for coverage formatter ([31bf554](https://github.com/higebu/vagrant-vyos/commit/31bf5544d5470f9516e3fbe91e60321fa4e21092))
|
16
|
+
|
17
|
+
## [1.1.11](https://github.com/higebu/vagrant-vyos/compare/v1.1.10...v1.1.11) (2024-09-02)
|
18
|
+
|
19
|
+
|
20
|
+
### Bug Fixes
|
21
|
+
|
22
|
+
* **deps:** update actions/checkout action to v4 ([4871f71](https://github.com/higebu/vagrant-vyos/commit/4871f71f2039061f8ad22356a9e0aa9d86b9312a))
|
23
|
+
* use simplecov-cobertura for coverage formatter ([31bf554](https://github.com/higebu/vagrant-vyos/commit/31bf5544d5470f9516e3fbe91e60321fa4e21092))
|
24
|
+
|
25
|
+
### [1.1.10](https://www.github.com/higebu/vagrant-vyos/compare/v1.1.9...v1.1.10) (2022-02-15)
|
26
|
+
|
27
|
+
|
28
|
+
### Bug Fixes
|
29
|
+
|
30
|
+
* fix Gemfile.lock ([1190da6](https://www.github.com/higebu/vagrant-vyos/commit/1190da66fd3de5b991bdb84a8e31bde50d744120))
|
31
|
+
* revert Gemfile.lock ([670e496](https://www.github.com/higebu/vagrant-vyos/commit/670e496fabcf7c4a06d299c3af8e7d1a33e122c7))
|
32
|
+
|
3
33
|
### [1.1.9](https://www.github.com/higebu/vagrant-vyos/compare/v1.1.8...v1.1.9) (2021-07-07)
|
4
34
|
|
5
35
|
|
data/lib/vagrant-vyos/version.rb
CHANGED
@@ -0,0 +1,15 @@
|
|
1
|
+
{
|
2
|
+
"packages": {
|
3
|
+
".": {
|
4
|
+
"package-name": "vagrant-vyos",
|
5
|
+
"version-file": "lib/vagrant-vyos/version.rb",
|
6
|
+
"changelog-path": "CHANGELOG.md",
|
7
|
+
"release-type": "ruby",
|
8
|
+
"bump-minor-pre-major": false,
|
9
|
+
"bump-patch-for-minor-pre-major": false,
|
10
|
+
"draft": false,
|
11
|
+
"prerelease": false
|
12
|
+
}
|
13
|
+
},
|
14
|
+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
|
15
|
+
}
|
data/renovate.json
CHANGED
@@ -1,25 +1,6 @@
|
|
1
1
|
{
|
2
|
+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
2
3
|
"extends": [
|
3
|
-
"
|
4
|
-
":combinePatchMinorReleases",
|
5
|
-
":ignoreUnstable",
|
6
|
-
":prImmediately",
|
7
|
-
":semanticPrefixFixDepsChoreOthers",
|
8
|
-
":updateNotScheduled",
|
9
|
-
":automergeMinor",
|
10
|
-
":automergeDigest",
|
11
|
-
":ignoreModulesAndTests",
|
12
|
-
":maintainLockFilesDisabled",
|
13
|
-
":autodetectPinVersions",
|
14
|
-
":prHourlyLimitNone",
|
15
|
-
"group:monorepos",
|
16
|
-
"group:recommended",
|
17
|
-
":timezone(Asia/Tokyo)",
|
18
|
-
"schedule:nonOfficeHours",
|
19
|
-
":label(renovate)"
|
20
|
-
],
|
21
|
-
"prConcurrentLimit": 1,
|
22
|
-
"baseBranches": [
|
23
|
-
"master"
|
4
|
+
"local>higebu/renovate-config"
|
24
5
|
]
|
25
6
|
}
|
data/spec/helper.rb
CHANGED
data/vagrant-vyos.gemspec
CHANGED
@@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.add_development_dependency "rake"
|
23
23
|
spec.add_development_dependency "rspec", "~> 3.4"
|
24
24
|
spec.add_development_dependency "simplecov"
|
25
|
-
spec.add_development_dependency
|
25
|
+
spec.add_development_dependency 'simplecov-cobertura'
|
26
26
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-vyos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- KUSAKABE Yuya
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -53,7 +53,7 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: simplecov-cobertura
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - ">="
|
@@ -73,10 +73,11 @@ executables: []
|
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
|
-
- ".github/
|
76
|
+
- ".github/dependabot.yml"
|
77
77
|
- ".github/workflows/release.yml"
|
78
78
|
- ".github/workflows/test.yml"
|
79
79
|
- ".gitignore"
|
80
|
+
- ".release-please-manifest.json"
|
80
81
|
- ".rspec"
|
81
82
|
- ".travis.yml"
|
82
83
|
- CHANGELOG.md
|
@@ -93,6 +94,7 @@ files:
|
|
93
94
|
- lib/vagrant-vyos/guest.rb
|
94
95
|
- lib/vagrant-vyos/plugin.rb
|
95
96
|
- lib/vagrant-vyos/version.rb
|
97
|
+
- release-please-config.json
|
96
98
|
- renovate.json
|
97
99
|
- spec/guest_spec.rb
|
98
100
|
- spec/helper.rb
|
@@ -116,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
118
|
- !ruby/object:Gem::Version
|
117
119
|
version: 1.3.6
|
118
120
|
requirements: []
|
119
|
-
rubygems_version: 3.
|
121
|
+
rubygems_version: 3.5.11
|
120
122
|
signing_key:
|
121
123
|
specification_version: 4
|
122
124
|
summary: A small gem that adds vyos guest support to vagrant.
|
data/.github/release-please.yml
DELETED