saml_idp_metadata 1.0.0 → 1.0.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/.circleci/config.yml +17 -3
- data/.github/workflows/ruby.yml +2 -2
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +1 -1
- data/lib/saml_idp_metadata/version.rb +1 -1
- data/saml_idp_metadata.gemspec +1 -1
- metadata +2 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 755339a9b7c25bd2f0d7de592b219b8920708342ff9de8d9f02006498364b77e
|
|
4
|
+
data.tar.gz: 13995e599de23eba0c188bc2b723e245eff4a3dc41307fe44d1f2f5a6a79951b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '03785c9c3fe9fd0f4bd183581d3a2a970f81388d91cf5b71aae9399a6ab228c219b09d0ee829bc91f6a1ef0301fb39a8b43fe0c0e204985b4a5216d4e865eeef'
|
|
7
|
+
data.tar.gz: de220ad9eff8cc10d1a5aad3636a069a1d025666d0930fdc02f182f70fd34e6672b426d65d12d28768cdb1820a6bddf829b9236a1a927fcbfc3ea40e5804450c
|
data/.circleci/config.yml
CHANGED
|
@@ -6,7 +6,7 @@ executors:
|
|
|
6
6
|
version:
|
|
7
7
|
type: string
|
|
8
8
|
docker:
|
|
9
|
-
- image: rubylang/ruby:<< parameters.version >>-dev-
|
|
9
|
+
- image: rubylang/ruby:<< parameters.version >>-dev-noble
|
|
10
10
|
working_directory: /root/saml_idp_metadata
|
|
11
11
|
|
|
12
12
|
commands:
|
|
@@ -18,6 +18,20 @@ commands:
|
|
|
18
18
|
# https://circleci.com/docs/2.0/custom-images/#required-tools-for-primary-containers
|
|
19
19
|
command: apt-get update -y && apt-get install -y ssh
|
|
20
20
|
|
|
21
|
+
checkout_code:
|
|
22
|
+
description: "Checkout using the Ed25519 deploy key (Additional SSH Key)"
|
|
23
|
+
steps:
|
|
24
|
+
# Adds all Additional SSH Keys registered for this project to the agent.
|
|
25
|
+
# The Ed25519 deploy key avoids the RSA/SHA-1 issue on the noble image.
|
|
26
|
+
- add_ssh_keys
|
|
27
|
+
- run:
|
|
28
|
+
name: Checkout
|
|
29
|
+
command: |
|
|
30
|
+
mkdir -p ~/.ssh
|
|
31
|
+
ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null
|
|
32
|
+
git clone --no-checkout git@github.com:tknzk/saml_idp_metadata.git .
|
|
33
|
+
git checkout -f "$CIRCLE_SHA1"
|
|
34
|
+
|
|
21
35
|
bundle_gems:
|
|
22
36
|
description: "Bundle gems"
|
|
23
37
|
steps:
|
|
@@ -48,7 +62,7 @@ jobs:
|
|
|
48
62
|
version: << parameters.ruby-version >>
|
|
49
63
|
steps:
|
|
50
64
|
- install_system_dependencies
|
|
51
|
-
-
|
|
65
|
+
- checkout_code
|
|
52
66
|
- bundle_gems
|
|
53
67
|
- run_tests
|
|
54
68
|
|
|
@@ -60,6 +74,6 @@ workflows:
|
|
|
60
74
|
matrix:
|
|
61
75
|
parameters:
|
|
62
76
|
ruby-version:
|
|
63
|
-
- "3.2"
|
|
64
77
|
- "3.3"
|
|
65
78
|
- "3.4"
|
|
79
|
+
- "4.0"
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -13,11 +13,11 @@ jobs:
|
|
|
13
13
|
fail-fast: false
|
|
14
14
|
matrix:
|
|
15
15
|
ruby-version:
|
|
16
|
-
- '3.2'
|
|
17
16
|
- '3.3'
|
|
18
17
|
- '3.4'
|
|
18
|
+
- '4.0'
|
|
19
19
|
container:
|
|
20
|
-
image: rubylang/ruby:${{ matrix.ruby-version }}-dev-
|
|
20
|
+
image: rubylang/ruby:${{ matrix.ruby-version }}-dev-noble
|
|
21
21
|
|
|
22
22
|
steps:
|
|
23
23
|
- name: Checkout code
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v1.0.0](https://github.com/tknzk/saml_idp_metadata/tree/v1.0.0) (2025-05-26)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.3.8...v1.0.0)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- bumpup 1.0.0 [\#239](https://github.com/tknzk/saml_idp_metadata/pull/239) ([tknzk](https://github.com/tknzk))
|
|
10
|
+
- Update ruby.yml [\#238](https://github.com/tknzk/saml_idp_metadata/pull/238) ([tknzk](https://github.com/tknzk))
|
|
11
|
+
- Drop Ruby 3.1 support due to EOL [\#237](https://github.com/tknzk/saml_idp_metadata/pull/237) ([tknzk](https://github.com/tknzk))
|
|
12
|
+
- bundle update [\#236](https://github.com/tknzk/saml_idp_metadata/pull/236) ([tknzk](https://github.com/tknzk))
|
|
13
|
+
- remove dependency for active\_support [\#228](https://github.com/tknzk/saml_idp_metadata/pull/228) ([tknzk](https://github.com/tknzk))
|
|
14
|
+
|
|
3
15
|
## [v0.3.8](https://github.com/tknzk/saml_idp_metadata/tree/v0.3.8) (2025-03-29)
|
|
4
16
|
|
|
5
17
|
[Full Changelog](https://github.com/tknzk/saml_idp_metadata/compare/v0.3.7...v0.3.8)
|
data/Gemfile.lock
CHANGED
data/saml_idp_metadata.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ require 'saml_idp_metadata/version'
|
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |spec|
|
|
8
8
|
spec.name = 'saml_idp_metadata'
|
|
9
|
-
spec.required_ruby_version = '>= 3.2'
|
|
9
|
+
spec.required_ruby_version = '>= 3.2'
|
|
10
10
|
spec.version = SamlIdpMetadata::VERSION
|
|
11
11
|
spec.authors = ['tknzk']
|
|
12
12
|
spec.email = ['info@tknzk.dev']
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: saml_idp_metadata
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tknzk
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rexml
|
|
@@ -180,9 +180,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
180
180
|
- - ">="
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
182
|
version: '3.2'
|
|
183
|
-
- - "<"
|
|
184
|
-
- !ruby/object:Gem::Version
|
|
185
|
-
version: '4'
|
|
186
183
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
187
184
|
requirements:
|
|
188
185
|
- - ">="
|