omniauth-miro 1.0.6 → 1.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9cdbd73ce755bf30674247e1ee8a0a1aff626ee2596c2c1b7561cde3c5b9e934
4
- data.tar.gz: 1497fbe16e3adaa710197b0ab68a99b0249c999f65c5010ebd6d9e9df764ddfa
3
+ metadata.gz: 8b8fac3e4f008c90a4b9e20a10ee527a730fca5d2aa48b269730d80c15ab8cc4
4
+ data.tar.gz: 1ed5e221eb22c22e136610a3775a9eb86fae8baa2e5545386f0488969bc48e19
5
5
  SHA512:
6
- metadata.gz: 9b47ff58e4f98c4b792853ca88d5e080b92e22be16ab6b1d6c8010f12ce418fe07f7b7ac68175a7729cf304324c4e46a56896b2a1e6aed42ca94a26448702d3d
7
- data.tar.gz: 9af4c2cc03f10154481f3f66ad666043a4f727531cb7726dadd42631523a5066b1d52238cea7d2ece45d1d937793d8e5522db6ba5e45ebd662238ab2209d20c7
6
+ metadata.gz: 502ae824f82ced512c91567347da25bb0ddc8ca753f921f1253b63efebda6e8277c54a37f35148c8ce5398ea2ad5ae81aeea4c2877db86844d17e66606b2503a
7
+ data.tar.gz: 1540afb61de59221c1a421d88d7bfd862878cca2f7d0de06924eae04b9536aee97af432acfae25b151c0495bdb399e5f1b066430b1293eb6cdba1c42a3f43e8d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.8]
4
+
5
+ - Fix the `tag-and-release` workflow to create the release tag with the `rewind-community-tagger` GitHub App token (`TAGGER_APP_ID`/`TAGGER_PRIVATE_KEY`) instead of the default `GITHUB_TOKEN`
6
+
7
+ ## [1.0.7]
8
+
9
+ - Address CVE-2026-54603 by updating oauth2 to 2.0.25
10
+
3
11
  ## [1.0.6]
4
12
 
5
13
  - Update Ruby version to 3.4.5 to address security vulnerabilities
data/Gemfile.lock CHANGED
@@ -1,15 +1,19 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-miro (1.0.6)
4
+ omniauth-miro (1.0.8)
5
5
  omniauth (>= 1, < 3)
6
6
  omniauth-oauth2 (~> 1.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
+ anonymous_loader (0.1.3)
12
+ version_gem (~> 1.1, >= 1.1.14)
11
13
  ansi (1.5.0)
12
14
  ast (2.4.3)
15
+ auth-sanitizer (0.2.3)
16
+ version_gem (~> 1.1, >= 1.1.14)
13
17
  base64 (0.3.0)
14
18
  bigdecimal (3.2.2)
15
19
  coderay (1.1.3)
@@ -33,14 +37,16 @@ GEM
33
37
  bigdecimal (~> 3.1)
34
38
  net-http (0.6.0)
35
39
  uri
36
- oauth2 (2.0.12)
40
+ oauth2 (2.0.25)
41
+ anonymous_loader (~> 0.1, >= 0.1.3)
42
+ auth-sanitizer (~> 0.2, >= 0.2.3)
37
43
  faraday (>= 0.17.3, < 4.0)
38
44
  jwt (>= 1.0, < 4.0)
39
45
  logger (~> 1.2)
40
46
  multi_xml (~> 0.5)
41
47
  rack (>= 1.2, < 4)
42
- snaky_hash (~> 2.0, >= 2.0.3)
43
- version_gem (>= 1.1.8, < 3)
48
+ snaky_hash (~> 2.0, >= 2.0.7)
49
+ version_gem (~> 1.1, >= 1.1.14)
44
50
  omniauth (2.1.3)
45
51
  hashie (>= 3.4.6)
46
52
  rack (>= 2.2.3)
@@ -110,16 +116,16 @@ GEM
110
116
  terminal-table
111
117
  simplecov-html (0.13.1)
112
118
  simplecov_json_formatter (0.1.4)
113
- snaky_hash (2.0.3)
119
+ snaky_hash (2.0.7)
114
120
  hashie (>= 0.1.0, < 6)
115
- version_gem (>= 1.1.8, < 3)
121
+ version_gem (~> 1.1, >= 1.1.14)
116
122
  terminal-table (4.0.0)
117
123
  unicode-display_width (>= 1.1.1, < 4)
118
124
  unicode-display_width (3.1.4)
119
125
  unicode-emoji (~> 4.0, >= 4.0.4)
120
126
  unicode-emoji (4.0.4)
121
127
  uri (1.0.3)
122
- version_gem (1.1.8)
128
+ version_gem (1.1.15)
123
129
 
124
130
  PLATFORMS
125
131
  ruby
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module Miro
5
- VERSION = '1.0.6'
5
+ VERSION = '1.0.8'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-miro
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rewind Software Inc. | Calvin Chen