piwigo-api 0.5.8 → 0.5.9
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/gempush.yml +0 -2
- data/.github/workflows/ruby.yml +17 -11
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +1 -1
- data/lib/piwigo/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: 3fa77269c47c5c3de051986ac36f97764f5e766f14b7ab428401229a67ab2a78
|
|
4
|
+
data.tar.gz: e8a53e47119346c003463835983b2ce287c42a272f36d4aa143017f77559891d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef857c2959b2f5090f0ccf3f3ffe3e9b2ff70a8a7e45ab96ea2bbcbf81ece8b9379b67fcc6f54ad0f78c24b6eb29f92314463604b2cb754a20d4cb123eac777a
|
|
7
|
+
data.tar.gz: 0347faaf186d2e005a86fbb598b35f79d373026f123adc9e1fcfd5f8f164fa94983e2aec0628d8748f42931eeb2af62dfd72b1f48dec8e1f3d6198121155886e
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -1,20 +1,26 @@
|
|
|
1
|
+
|
|
1
2
|
name: Ruby
|
|
2
3
|
|
|
3
|
-
on:
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches: [ master ]
|
|
7
|
+
pull_request:
|
|
8
|
+
branches: [ master ]
|
|
4
9
|
|
|
5
10
|
jobs:
|
|
6
|
-
|
|
11
|
+
test:
|
|
7
12
|
|
|
8
13
|
runs-on: ubuntu-latest
|
|
14
|
+
strategy:
|
|
15
|
+
matrix:
|
|
16
|
+
ruby-version: ['2.6', '2.7', '3.0']
|
|
9
17
|
|
|
10
18
|
steps:
|
|
11
|
-
- uses: actions/checkout@
|
|
12
|
-
- name: Set up Ruby
|
|
13
|
-
uses:
|
|
19
|
+
- uses: actions/checkout@v2
|
|
20
|
+
- name: Set up Ruby
|
|
21
|
+
uses: ruby/setup-ruby@v1
|
|
14
22
|
with:
|
|
15
|
-
ruby-version:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
bundle install --jobs 4 --retry 3
|
|
20
|
-
bundle exec rake
|
|
23
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
24
|
+
bundler-cache: true
|
|
25
|
+
- name: Run tests
|
|
26
|
+
run: bundle exec rake
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
0.5.9 - 2021-07-13
|
|
8
|
+
- Update version to fix github actions
|
|
9
|
+
|
|
7
10
|
0.5.8 - 2021-07-13
|
|
8
11
|
- Update dependencies address CVE-2021-32740
|
|
9
12
|
|
data/Gemfile.lock
CHANGED
data/lib/piwigo/version.rb
CHANGED