Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
18b532b
Temporarily move custom steno codec for subtree integration
johha Feb 25, 2026
11503d9
Squashed 'lib/steno/' content from commit 5b08405f9
johha Feb 25, 2026
3e2d4a7
Merge commit '11503d9eb87152d638ce57dc7be275e42024d973' as 'lib/steno'
johha Feb 25, 2026
751f5a8
Remove steno gem infrastructure (gemspec, CI, specs, etc.)
johha Feb 25, 2026
dc5ed07
Flatten steno directory structure and integrate custom codec
johha Feb 25, 2026
2078b0f
Document steno integration history
johha Feb 25, 2026
d86e94a
Restore steno unit tests
johha Feb 25, 2026
68fe3fd
Apply rubocop auto-corrections to steno code
johha Feb 25, 2026
21a79ca
Remove steno gem dependency and update require paths
johha Feb 25, 2026
f22974e
Fix steno loading and make tests pass
johha Feb 25, 2026
99b8258
Move steno tests to proper location in spec/unit/lib/steno/
johha Feb 25, 2026
53036f8
Fix syslog test isolation issue
johha Feb 26, 2026
e52a26a
Remove spec_helper require and fix rubocop issues
johha Feb 26, 2026
74bdfb1
use Oj
johha Feb 26, 2026
c3fe1a6
Remove Windows support and document steno modifications
johha Feb 26, 2026
4caf706
Add NOTICE file from original steno repository
johha Feb 26, 2026
488070f
Replace STENO_HISTORY.md with README.md for better discoverability
johha Feb 26, 2026
b7c5f7a
Remove unused steno features and document modification policy
johha Feb 26, 2026
fdcda9b
Remove unused steno features - Round 2 (deep cleanup)
johha Feb 26, 2026
35acb95
Fix steno JSON codec timestamp test to accept Numeric types
johha Feb 26, 2026
df3dc02
Add syslog gem and remove unused yajl-ruby
johha Feb 26, 2026
2909e1f
Fix syslog sink mock leakage between tests
johha Feb 26, 2026
d434260
Document Rails/Delegate RuboCop change in steno README
johha Feb 26, 2026
060d846
Add nil guard to syslog sink add_record
johha Feb 26, 2026
5e349d5
Fix race condition in syslog reset for parallel test execution
johha Feb 27, 2026
c74756f
Add reset! method to Syslog singleton for proper test cleanup
johha Feb 27, 2026
e4b8026
Move steno tests to isolated_specs to prevent mock leakage
johha Mar 2, 2026
cf8bc6b
Remove lib/steno.rb wrapper by pointing all requires directly to sten…
johha Mar 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ gem 'sequel_pg', require: 'sequel'
gem 'sinatra', '~> 4.2'
gem 'sinatra-contrib'
gem 'statsd-ruby', '~> 1.5.0'
gem 'steno'
gem 'syslog'
gem 'talentbox-delayed_job_sequel', '~> 4.4.0'
gem 'uri', '~> 1.1'
gem 'vmstat', '~> 2.3'
Expand Down
7 changes: 2 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -578,10 +578,8 @@ GEM
spring-commands-rspec (1.0.4)
spring (>= 0.9.1)
statsd-ruby (1.5.0)
steno (1.3.5)
fluent-logger
yajl-ruby (~> 1.0)
stringio (3.2.0)
syslog (0.1.2)
talentbox-delayed_job_sequel (4.4.0)
delayed_job (~> 4.1)
sequel (>= 5.0, < 6.0)
Expand Down Expand Up @@ -609,7 +607,6 @@ GEM
webrick (1.9.2)
xml-simple (1.1.9)
rexml
yajl-ruby (1.4.3)
yard (0.9.38)
yard-activesupport-concern (0.0.1)
yard (>= 0.8)
Expand Down Expand Up @@ -700,7 +697,7 @@ DEPENDENCIES
spring
spring-commands-rspec
statsd-ruby (~> 1.5.0)
steno
syslog
talentbox-delayed_job_sequel (~> 4.4.0)
timecop
uri (~> 1.1)
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require File.expand_path('config/boot', __dir__)

require 'yaml'
require 'sequel'
require 'steno'
require 'steno/steno'
require 'cloud_controller'
require_relative 'lib/tasks/rake_config'

Expand Down
2 changes: 1 addition & 1 deletion lib/cloud_controller/resource_pool.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# they will be ignored and preserved.

require 'httpclient'
require 'steno'
require 'steno/steno'
require 'cloud_controller/blobstore/fog/providers'
require 'cloud_controller/resource_match'

Expand Down
2 changes: 1 addition & 1 deletion lib/cloud_controller/runner.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'steno'
require 'steno/steno'
require 'optparse'
require 'cloud_controller/uaa/uaa_token_decoder'
require 'cloud_controller/uaa/uaa_verification_keys'
Expand Down
5 changes: 1 addition & 4 deletions lib/cloud_controller/steno_configurer.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
require 'steno'
require 'steno/codec_rfc3339'
require 'steno/config'
require 'steno/context'
require 'steno/steno'

module VCAP::CloudController
class StenoConfigurer
Expand Down
2 changes: 1 addition & 1 deletion lib/locket/lock_runner.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'steno'
require 'steno/steno'
require 'locket/locket_services_pb'

module Locket
Expand Down
2 changes: 1 addition & 1 deletion lib/sinatra/vcap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'presenters/error_presenter'
require 'sinatra/reloader'
require 'securerandom'
require 'steno'
require 'steno/steno'

module Sinatra
module VCAP
Expand Down
Loading
Loading