ssolo 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ccb40eda9b6ea1d0b4252545669ee1e966d4774c07d55eaa014a8af959a210a
4
- data.tar.gz: 1a410aa070099ce4fe6caa8de8d11fdc0b0328a8d4dc723f18eddaf84e24d438
3
+ metadata.gz: 536a8c1c932cd4d875066098a1c570bdf03ba5fb14b3bb4e5d70884de92c1bd2
4
+ data.tar.gz: d3712685392a35cae9be0b0201e1e216f2f3618f382ca5674e27f46861cae29b
5
5
  SHA512:
6
- metadata.gz: a0ccf3bf281fe538b3417eb31a73dd38dd539e572ae9ed1b9c9f4fb2b040f9a628b2745f76b0a9cf1d01b6a7afedfd551c7d75e40693c65616062c35634715de
7
- data.tar.gz: 81628f37ae67bfb4dba9c3ed1fe226c29b816f787b8f4f2b7a2361f03c796b3261b879a038de6c6ece69d471434d4c8acee86ad657874efb8f87b39eb86efe8c
6
+ metadata.gz: f36d5544124d095cf7c3ed25eaed1cc88a1ae8840e04ec9ea3b4c20491d5955b89aca9426e56d836d98f93f5c63d1c426d413ccdfe82e5d122bb277ac0f4e58f
7
+ data.tar.gz: 9f125149b811ccc5387930195713791995845395d0eb8e84fdf60d8ae4c67a5b915a65aaf5e4ab8d1a80c5e2630db8860c757a841fbf8176e369752a48152e7c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
- ## [0.1.0] - 2025-05-08
3
+ ## [0.1.1] - 2025-05-15
4
+
5
+ - Switched the puma process in the `ssolo` executable to use single-threaded mode. This avoids different ephemeral certificates in each thread/worker.
6
+ - Improved the detection of certificate prefix/suffix lines when outputting the IdP metadata.
7
+
8
+ ## [0.1.0] - 2025-05-15
4
9
 
5
10
  - Initial release
data/exe/ssolo CHANGED
@@ -26,5 +26,8 @@ Rack::Handler::Puma.run(
26
26
  Port: ENV.fetch("SSOLO_PORT", 9292),
27
27
  Silent: ENV.fetch("SSOLO_SILENT", "true") == "true",
28
28
  daemon: false,
29
+ min_threads: 1,
30
+ max_threads: 1,
31
+ workers: 0,
29
32
  config_files: ["-"]
30
33
  )
@@ -13,7 +13,7 @@ module SSOlo
13
13
  <ds:KeyInfo xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
14
14
  <ds:X509Data>
15
15
  <ds:X509Certificate>
16
- #{certificate.to_pem.lines.grep_v(/BEGIN|END/).join.strip}
16
+ #{certificate.to_pem.lines.grep_v(/BEGIN CERTIFICATE|END CERTIFICATE/).join.strip}
17
17
  </ds:X509Certificate>
18
18
  </ds:X509Data>
19
19
  </ds:KeyInfo>
data/lib/ssolo/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SSOlo
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ssolo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pat Allan