splitclient-rb 7.3.4.pre.rc2 → 7.3.4
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/update-license-year.yml +45 -0
- data/CHANGES.txt +5 -1
- data/LICENSE +1 -1
- data/lib/splitclient-rb/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23b9c717284c495997eb1a3808850bd25816c29a447f13147f51a0c60138187e
|
|
4
|
+
data.tar.gz: 5b438d7782da8fb3e67689161d5fb53083665a5e4703f1b5fe628718e3cde81d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8dfa68a91b4e0cff3090d96640494f8755515499699c882b073ebe292f6920386e39b1c0be1b24a52b581f74d7092faa3c9ad5bf33bdf8565e7576d3f2ff2669
|
|
7
|
+
data.tar.gz: 76c004e32ac5e215b7e45690a96e9f0b9a2735f1212004f76c4402e3fabcbab2891ad22aa4caba3b6fb8aa5270b9a397589851a4d576254e7b0d70d01e78b6b7
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
name: Update License Year
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: "0 3 1 1 *" # 03:00 AM on January 1
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: write
|
|
9
|
+
pull-requests: write
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
test:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- name: Checkout
|
|
16
|
+
uses: actions/checkout@v2
|
|
17
|
+
with:
|
|
18
|
+
fetch-depth: 0
|
|
19
|
+
|
|
20
|
+
- name: Set Current year
|
|
21
|
+
run: "echo CURRENT=$(date +%Y) >> $GITHUB_ENV"
|
|
22
|
+
|
|
23
|
+
- name: Set Previous Year
|
|
24
|
+
run: "echo PREVIOUS=$(($CURRENT-1)) >> $GITHUB_ENV"
|
|
25
|
+
|
|
26
|
+
- name: Update LICENSE
|
|
27
|
+
uses: jacobtomlinson/gha-find-replace@v2
|
|
28
|
+
with:
|
|
29
|
+
find: ${{ env.PREVIOUS }}
|
|
30
|
+
replace: ${{ env.CURRENT }}
|
|
31
|
+
include: "LICENSE"
|
|
32
|
+
regex: false
|
|
33
|
+
|
|
34
|
+
- name: Commit files
|
|
35
|
+
run: |
|
|
36
|
+
git config user.name 'github-actions[bot]'
|
|
37
|
+
git config user.email 'github-actions[bot]@users.noreply.github.com'
|
|
38
|
+
git commit -m "Updated License Year" -a
|
|
39
|
+
|
|
40
|
+
- name: Create Pull Request
|
|
41
|
+
uses: peter-evans/create-pull-request@v3
|
|
42
|
+
with:
|
|
43
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
44
|
+
title: Update License Year
|
|
45
|
+
branch: update-license
|
data/CHANGES.txt
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
CHANGES
|
|
2
2
|
|
|
3
|
-
7.3.
|
|
3
|
+
7.3.4 (Feb 21, 2022)
|
|
4
|
+
- Updated streaming events architecture with a new queue logic.
|
|
5
|
+
- Fixed redis integration Pipelining command deprecation warning.
|
|
6
|
+
|
|
7
|
+
7.3.3 (Jan 28, 2022)
|
|
4
8
|
- Fixed edge cases where the sdk lost streaming connection.
|
|
5
9
|
- Updated default auth service url to https://auth.split.io/api/v2/auth
|
|
6
10
|
- Updated dependencies:
|
data/LICENSE
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: splitclient-rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.3.4
|
|
4
|
+
version: 7.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Split Software
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-02-
|
|
11
|
+
date: 2022-02-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: allocation_stats
|
|
@@ -364,6 +364,7 @@ extra_rdoc_files: []
|
|
|
364
364
|
files:
|
|
365
365
|
- ".github/pull_request_template.md"
|
|
366
366
|
- ".github/workflows/ci.yml"
|
|
367
|
+
- ".github/workflows/update-license-year.yml"
|
|
367
368
|
- ".gitignore"
|
|
368
369
|
- ".rubocop.yml"
|
|
369
370
|
- ".simplecov"
|
|
@@ -519,9 +520,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
519
520
|
version: '0'
|
|
520
521
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
521
522
|
requirements:
|
|
522
|
-
- - "
|
|
523
|
+
- - ">="
|
|
523
524
|
- !ruby/object:Gem::Version
|
|
524
|
-
version:
|
|
525
|
+
version: '0'
|
|
525
526
|
requirements: []
|
|
526
527
|
rubygems_version: 3.2.32
|
|
527
528
|
signing_key:
|