oxidized-web 0.15.0 → 0.15.1
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/ruby.yml +0 -6
- data/.rubocop_todo.yml +7 -7
- data/CHANGELOG.md +5 -0
- data/docs/development.md +3 -0
- data/lib/oxidized/web/public/scripts/oxidized.js +0 -1
- data/lib/oxidized/web/version.rb +1 -1
- data/lib/oxidized/web/views/versions.haml +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef98fc626264e84687d7bdbfdb2a0a34aa5744086f34cdf3b84ddd823995246f
|
|
4
|
+
data.tar.gz: 7d43d90aa5027a130fba180db8c976200a19875978fb09bb9572d65a37ceb104
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9fdc33d367f0beb19545a31d73a830ecfb786d152cfdb8b6b28f0335c04b3fa40d524c47c49107cabe48785c788bcf38686e822038eb2e2cf37cf54b1b7267a8
|
|
7
|
+
data.tar.gz: 863d0e8381d5c55053922e581bf788fd93da4e45f90435e47b2afea678515f2d0e064b2471e81ce607b897c8deb6f0dbeb0fad57d67c088d4e323be2530f9bdd
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -31,11 +31,5 @@ jobs:
|
|
|
31
31
|
with:
|
|
32
32
|
ruby-version: ${{ matrix.ruby-version }}
|
|
33
33
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
34
|
-
- name: rubocop
|
|
35
|
-
uses: reviewdog/action-rubocop@v2
|
|
36
|
-
with:
|
|
37
|
-
rubocop_version: gemfile
|
|
38
|
-
rubocop_extensions: rubocop-minitest:gemfile rubocop-rake:gemfile rubocop-rails:gemfile
|
|
39
|
-
reporter: github-pr-review
|
|
40
34
|
- name: Run tests
|
|
41
35
|
run: bundle exec rake
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on 2025-02-
|
|
3
|
+
# on 2025-02-20 10:05:16 UTC using RuboCop version 1.72.2.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
|
8
8
|
|
|
9
|
-
# Offense count:
|
|
9
|
+
# Offense count: 2
|
|
10
10
|
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
|
|
11
11
|
Metrics/AbcSize:
|
|
12
|
-
Max:
|
|
12
|
+
Max: 31
|
|
13
13
|
|
|
14
|
-
# Offense count:
|
|
14
|
+
# Offense count: 1
|
|
15
15
|
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
|
16
16
|
Metrics/CyclomaticComplexity:
|
|
17
17
|
Max: 9
|
|
18
18
|
|
|
19
|
-
# Offense count:
|
|
19
|
+
# Offense count: 5
|
|
20
20
|
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
|
21
21
|
Metrics/MethodLength:
|
|
22
|
-
Max:
|
|
22
|
+
Max: 28
|
|
23
23
|
|
|
24
|
-
# Offense count:
|
|
24
|
+
# Offense count: 1
|
|
25
25
|
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
|
26
26
|
Metrics/PerceivedComplexity:
|
|
27
27
|
Max: 11
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
|
+
## [0.15.1 – 2025-02-20]
|
|
7
|
+
This minor release fixes javascript errors.
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Fix javascript not working (@robertcheramy)
|
|
6
11
|
|
|
7
12
|
## [0.15.0 – 2025-02-17]
|
|
8
13
|
This release fixes a security issue on the RANCID migration page.
|
data/docs/development.md
CHANGED
|
@@ -128,6 +128,9 @@ Run Oxidized-web from git against the latest git of Oxidized (see above).
|
|
|
128
128
|
|
|
129
129
|
Do not integrate late PRs into master if they do not fix issues for the release. The must wait for the next release.
|
|
130
130
|
|
|
131
|
+
When testing the web application, open the javascript console in the browser to
|
|
132
|
+
see any errors.
|
|
133
|
+
|
|
131
134
|
## Version numbering
|
|
132
135
|
Oxidized-web versions are nummered like 0.major.minor
|
|
133
136
|
- major is incremented when releasing new features. minor is then set to 0
|
data/lib/oxidized/web/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oxidized-web
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.15.
|
|
4
|
+
version: 0.15.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Saku Ytti
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2025-02-
|
|
12
|
+
date: 2025-02-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: charlock_holmes
|