Skip to content

chore(deps): update dependency json to v2#36

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/json-2.x
Open

chore(deps): update dependency json to v2#36
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/json-2.x

Conversation

@renovate
Copy link

@renovate renovate bot commented Dec 11, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Update Change
json major v1.8v2.18.1

Release Notes

flori/json (json)

v2.18.1

Compare Source

What's Changed

  • Fix a potential crash in very specific circumstance if GC triggers during a call to to_json
    without first invoking a user defined #to_json method.

Full Changelog: ruby/json@v2.18.0...v2.18.1

v2.18.0

Compare Source

What's Changed

  • Add :allow_control_characters parser options, to allow JSON strings containing unescaped ASCII control characters (e.g. newlines).

Full Changelog: ruby/json@v2.17.1...v2.18.0

v2.17.1

Compare Source

What's Changed

  • Fix a regression in parsing of unicode surogate pairs (\uXX\uXX) that could cause an invalid string to be returned.

Full Changelog: ruby/json@v2.17.0...v2.17.1

v2.17.0

Compare Source

What's Changed

  • Improve JSON.load and JSON.unsafe_load to allow passing options as second argument.
  • Fix the parser to no longer ignore invalid escapes in strings.
    Only \", \\, \b, \f, \n, \r, \t and \u are valid JSON escapes.
  • Fixed JSON::Coder to use the depth it was initialized with.
  • On TruffleRuby, fix the generator to not call to_json on the return value of as_json for Float::NAN.
  • Fixed handling of state.depth: when to_json changes state.depth but does not restore it, it is reset
    automatically to its initial value.
    In particular, when a NestingError is raised, depth is no longer equal to max_nesting after the call to
    generate, and is reset to its initial value. Similarly when to_json raises an exception.

Full Changelog: ruby/json@v2.16.0...v2.17.0

v2.16.0

Compare Source

What's Changed

  • Deprecate JSON::State#[] and JSON::State#[]=. Consider using JSON::Coder instead.
  • JSON::Coder now also yields to the block when encountering strings with invalid encoding.
  • Fix GeneratorError messages to be UTF-8 encoded.
  • Fix memory leak when Exception is raised, or throw is used during JSON generation.
  • Optimized floating point number parsing by integrating the ryu algorithm (thanks to Josef Šimánek).
  • Optimized numbers parsing using SWAR (thanks to Scott Myron).
  • Optimized parsing of pretty printed documents using SWAR (thanks to Scott Myron).

Full Changelog: ruby/json@v2.15.2...v2.16.0

v2.15.2

Compare Source

What's Changed

  • Fix JSON::Coder to have one dedicated depth counter per invocation.
    After encountering a circular reference in JSON::Coder#dump, any further #dump call would raise JSON::NestingError.

Full Changelog: ruby/json@v2.15.1...v2.15.2

v2.15.1

Compare Source

What's Changed

  • Fix incorrect escaping in the JRuby extension when encoding shared strings.

Full Changelog: ruby/json@v2.15.0...v2.15.1

v2.15.0

Compare Source

What's Changed

  • JSON::Coder callback now receive a second argument to convey whether the object is a hash key.
  • Tuned the floating point number generator to not use scientific notation as aggressively.

Full Changelog: ruby/json@v2.14.1...v2.15.0

v2.14.1

Compare Source

What's Changed

  • Fix IndexOutOfBoundsException in the JRuby extension when encoding shared strings.

Full Changelog: ruby/json@v2.14.0...v2.14.1

v2.14.0

Compare Source

What's Changed

  • Add new allow_duplicate_key generator options. By default a warning is now emitted when a duplicated key is encountered.
    In json 3.0 an error will be raised.
    >> Warning[:deprecated] = true
    >> puts JSON.generate({ foo: 1, "foo" => 2 })
    (irb):2: warning: detected duplicate key "foo" in {foo: 1, "foo" => 2}.
    This will raise an error in json 3.0 unless enabled via `allow_duplicate_key: true`
    {"foo":1,"foo":2}
    >> JSON.generate({ foo: 1, "foo" => 2 }, allow_duplicate_key: false)
    detected duplicate key "foo" in {foo: 1, "foo" => 2} (JSON::GeneratorError)
  • Fix JSON.generate strict: true mode to also restrict hash keys.
  • Fix JSON::Coder to also invoke block for hash keys that aren't strings nor symbols.
  • Fix JSON.unsafe_load usage with proc
  • Fix the parser to more consistently reject invalid UTF-16 surogate pairs.
  • Stop defining String.json_create, String#to_json_raw, String#to_json_raw_object when json/add isn't loaded.

Full Changelog: ruby/json@v2.13.2...v2.14.0

v2.13.2

Compare Source

What's Changed

  • Improve duplicate key warning and errors to include the key name and point to the right caller.

Full Changelog: ruby/json@v2.13.1...v2.13.2

v2.13.1

Compare Source

What's Changed

  • Fix support for older compilers without __builtin_cpu_supports.

Full Changelog: ruby/json@v2.13.0...v2.13.1

v2.13.0

Compare Source

What's Changed

  • Add new allow_duplicate_key parsing options. By default a warning is now emitted when a duplicated key is encountered.
    In json 3.0 an error will be raised.
  • Optimize parsing further using SIMD to scan strings.

Full Changelog: ruby/json@v2.12.2...v2.13.0

v2.12.2

Compare Source

  • Fix compiler optimization level.

Full Changelog: ruby/json@v2.12.1...v2.12.2

v2.12.1

Compare Source

What's Changed

  • Fix a potential crash in large negative floating point number generation.
  • Fix for JSON.pretty_generate to use passed state object's generate instead of state class as the required parameters aren't available.

Full Changelog: ruby/json@v2.12.0...v2.12.1

v2.12.0

Compare Source

What's Changed

  • Improve floating point generation to not use scientific notation as much.
  • Include line and column in parser errors. Both in the message and as exception attributes.
  • Handle non-string hash keys with broken to_s implementations.
  • JSON.generate now uses SSE2 (x86) or NEON (arm64) instructions when available to escape strings.

Full Changelog: ruby/json@v2.11.3...v2.12.0

v2.11.3

Compare Source

What's Changed

  • Fix a regression in JSON.pretty_generate that could cause indentation to be off once some #to_json has been called.

Full Changelog: ruby/json@v2.11.2...v2.11.3

v2.11.2

Compare Source

What's Changed

  • Bring back JSON::PRETTY_STATE_PROTOTYPE with a deprecation

Full Changelog: ruby/json@v2.11.1...v2.11.2

v2.11.1

Compare Source

What's Changed

  • Add back JSON.restore, JSON.unparse, JSON.fast_unparse and JSON.pretty_unparse.
    These were deprecated 16 years ago, but never emited warnings, only undocumented, so are
    still used by a few gems.

Full Changelog: ruby/json@v2.11.0...v2.11.1

v2.11.0

Compare Source

What's Changed

  • Optimize Integer generation to be ~1.8x faster.
  • Optimize Float generation to be ~10x faster.
  • Fix JSON.load proc argument to substitute the parsed object with the return value.
    This better match Marshal.load behavior.
  • Deprecate JSON.fast_generate (it's not any faster, so pointless).
  • Deprecate JSON.load_default_options.
  • Deprecate JSON.unsafe_load_default_options.
  • Deprecate JSON.dump_default_options.
  • Deprecate Kernel#j
  • Deprecate Kernel#jj
  • Remove outdated JSON.iconv.
  • Remove Class#json_creatable? monkey patch.
  • Remove deprecated JSON.restore method.
  • Remove deprecated JSON.unparse method.
  • Remove deprecated JSON.fast_unparse method.
  • Remove deprecated JSON.pretty_unparse method.
  • Remove deprecated JSON::UnparserError constant.
  • Remove outdated JSON::MissingUnicodeSupport constant.

Full Changelog: ruby/json@v2.10.2...v2.11.0

v2.10.2

Compare Source

What's Changed

  • Fix a potential crash in the C extension parser.
  • Raise a ParserError on all incomplete unicode escape sequence. This was the behavior until 2.10.0 unadvertently changed it.
  • Ensure document snippets that are included in parser errors don't include truncated multibyte characters.
  • Ensure parser error snippets are valid UTF-8.
  • Fix JSON::GeneratorError#detailed_message on Ruby < 3.2

Full Changelog: ruby/json@v2.10.1...v2.10.2

v2.10.1

Compare Source

What's Changed

  • Fix a compatibility issue with MultiJson.dump(obj, pretty: true) by @​byroot in ruby#749

Full Changelog: ruby/json@v2.10.0...v2.10.1

v2.10.0

Compare Source

What's Changed

  • strict: true now accept symbols as values. Previously they'd only be accepted as hash keys.
  • The C extension Parser has been entirely reimplemented from scratch.
  • Introduced JSON::Coder as a new API allowing to customize how non native types are serialized in a non-global way.
  • Introduced JSON::Fragment to allow assembling cached fragments in a safe way.
  • The Java implementation of the generator received many optimizations.

Full Changelog: ruby/json@v2.9.1...v2.10.0

v2.9.1

Compare Source

What's Changed

  • Add support for Solaris 10 which lacks strnlen()

v2.9.0

Compare Source

What's Changed

  • Fix C implementation of script_safe escaping to not confuse some other 3 wide characters with \u2028 and \u2029.
    e.g. JSON.generate(["倩", "瀨"], script_safe: true) would generate the wrong JSON.
  • JSON.dump(object, some_io) now write into the IO in chunks while previously it would buffer the entire JSON before writing.
  • JSON::GeneratorError now has a #invalid_object attribute, making it easier to understand why an object tree cannot be serialized.
  • Numerous improvements to the JRuby extension.

Full Changelog: ruby/json@v2.8.2...v2.9.0

v2.8.2

Compare Source

What's Changed

  • JSON.load_file: explictly load the file as UTF-8

Full Changelog: ruby/json@v2.8.1...v2.8.2

v2.8.1

Compare Source

  • Fix the java version of the package to include the extension implementation. Only concerns JRuby.

Full Changelog: ruby/json@v2.8.0...v2.8.1

v2.8.0

Compare Source

What's Changed

  • Emit a deprecation warning when JSON.load create custom types without the create_additions option being explictly enabled.
    • Prefer to use JSON.unsafe_load(string) or JSON.load(string, create_additions: true).
  • Emit a deprecation warning when serializing valid UTF-8 strings encoded in ASCII_8BIT aka BINARY.
  • Bump required Ruby version to 2.7.
  • Add support for optionally parsing trailing commas, via allow_trailing_comma: true, which in cunjunction with the
    pre-existing support for comments, make it suitable to parse jsonc documents.
  • Many performance improvements to JSON.parse and JSON.load, up to 1.7x faster on real world documents.
  • Some minor performance improvements to JSON.dump and JSON.generate.
  • JSON.pretty_generate no longer include newline inside empty object and arrays.

Parsing performance

Parsing performance is improved by 50-70% on realistic benchmarks, and even more on micro-benchmarks: https://gist.github.com/casperisfine/cf4b3a0594fae24b7d0eb93daaf3841a

== Parsing activitypub.json (58160 bytes)
ruby 3.4.0dev (2024-11-06T07:59:09Z precompute-hash-wh.. 7943f98a8a) +YJIT +PRISM [arm64-darwin24]
Warming up --------------------------------------
          json 2.7.2   638.000 i/100ms
                  oj   798.000 i/100ms
          Oj::Parser   948.000 i/100ms
           rapidjson   631.000 i/100ms
Calculating -------------------------------------
          json 2.7.2      6.423k (± 1.3%) i/s  (155.70 μs/i) -     32.538k in   5.067149s
                  oj      7.989k (± 1.0%) i/s  (125.17 μs/i) -     40.698k in   5.094544s
          Oj::Parser      9.472k (± 1.3%) i/s  (105.58 μs/i) -     47.400k in   5.005119s
           rapidjson      6.354k (± 1.1%) i/s  (157.37 μs/i) -     32.181k in   5.064962s

Comparison:
          json 2.8.0:     9510.0 i/s
          Oj::Parser:     9471.9 i/s - same-ish: difference falls within error
                  oj:     7989.4 i/s - 1.19x  slower
          json 2.7.2:     6422.5 i/s - 1.48x  slower
           rapidjson:     6354.5 i/s - 1.50x  slower

== Parsing twitter.json (567916 bytes)
ruby 3.4.0dev (2024-11-06T07:59:09Z precompute-hash-wh.. 7943f98a8a) +YJIT +PRISM [arm64-darwin24]
Warming up --------------------------------------
          json 2.7.2    52.000 i/100ms
                  oj    64.000 i/100ms
          Oj::Parser    76.000 i/100ms
           rapidjson    57.000 i/100ms
Calculating -------------------------------------
          json 2.7.2    526.860 (± 3.8%) i/s    (1.90 ms/i) -      2.652k in   5.042680s
                  oj    631.234 (± 1.7%) i/s    (1.58 ms/i) -      3.200k in   5.070973s
          Oj::Parser    764.354 (± 3.5%) i/s    (1.31 ms/i) -      3.876k in   5.077736s
           rapidjson    579.085 (± 2.8%) i/s    (1.73 ms/i) -      2.907k in   5.024620s

Comparison:
          json 2.8.0:      884.0 i/s
          Oj::Parser:      764.4 i/s - 1.16x  slower
                  oj:      631.2 i/s - 1.40x  slower
           rapidjson:      579.1 i/s - 1.53x  slower
          json 2.7.2:      526.9 i/s - 1.68x  slower

== Parsing citm_catalog.json (1727030 bytes)
ruby 3.4.0dev (2024-11-06T07:59:09Z precompute-hash-wh.. 7943f98a8a) +YJIT +PRISM [arm64-darwin24]
Warming up --------------------------------------
          json 2.7.2    30.000 i/100ms
                  oj    35.000 i/100ms
          Oj::Parser    45.000 i/100ms
           rapidjson    40.000 i/100ms
Calculating -------------------------------------
          json 2.7.2    304.584 (± 3.3%) i/s    (3.28 ms/i) -      1.530k in   5.029021s
                  oj    358.572 (± 0.8%) i/s    (2.79 ms/i) -      1.820k in   5.076123s
          Oj::Parser    450.643 (± 3.1%) i/s    (2.22 ms/i) -      2.295k in   5.098150s
           rapidjson    395.304 (± 1.5%) i/s    (2.53 ms/i) -      2.000k in   5.060537s

Comparison:
          json 2.8.0:      449.8 i/s
          Oj::Parser:      450.6 i/s - same-ish: difference falls within error
           rapidjson:      395.3 i/s - 1.14x  slower
                  oj:      358.6 i/s - 1.25x  slower
          json 2.7.2:      304.6 i/s - 1.48x  slower

Full Changelog: ruby/json@v2.7.3...v2.8.0

v2.7.6

Compare Source

  • Fix a regression in JSON.generate when dealing with Hash keys that are string subclasses, call to_json on them.

Full Changelog: ruby/json@v2.7.5...v2.7.6

v2.7.5

Compare Source

What's Changed

  • Fix a memory leak when #to_json methods raise an exception.
  • Gracefully handle formatting configs being set to nil instead of "".
  • Workaround another issue caused by conflicting versions of both json_pure and json being loaded.

Full Changelog: ruby/json@v2.7.4...v2.7.5

v2.7.4

Compare Source

What's Changed

  • Workaround a bug in 3.4.8 and older rubygems/rubygems#6490.
    This bug would cause some gems with native extension to fail during compilation.
  • Workaround different versions of json and json_pure being loaded (not officially supported).
  • Make json_pure Ractor compatible.

Full Changelog: ruby/json@v2.7.3...v2.7.4

v2.7.3

Compare Source

What's Changed

  • Numerous performance optimizations in JSON.generate and JSON.dump (up to 2 times faster).
  • Limit the size of ParserError exception messages, only include up to 32 bytes of the unparseable source.
  • Fix json-pure's Object#to_json to accept non state arguments
  • Fix multiline comment support in json-pure.
  • Fix JSON.parse to no longer mutate the argument encoding when passed an ASCII-8BIT string.
  • Fix String#to_json to raise on invalid encoding in json-pure.
  • Delete code that was based on CVTUTF.
  • Use the pure-Ruby generator on TruffleRuby.
  • Fix strict mode in json-pure to not break on Integer.

JSON.dump Performance

JSON.dump is now much faster, and on par or faster than alternative implementations:

== Encoding citm_catalog.json (500298 bytes)
ruby 3.4.0preview2 (2024-10-07 master 32c733f57b) +YJIT +PRISM [arm64-darwin23]
Warming up --------------------------------------
        json (2.7.3)   123.000 i/100ms
                  oj   124.000 i/100ms
Calculating -------------------------------------
        json (2.7.3)      1.312k (± 1.8%) i/s  (761.91 μs/i) -      6.642k in   5.062192s
                  oj      1.278k (± 2.0%) i/s  (782.35 μs/i) -      6.448k in   5.046587s

Comparison:
        json (2.7.2):      884.0 i/s
        json (2.7.3):     1312.5 i/s - 1.48x  faster
                  oj:     1278.2 i/s - 1.45x  faster
== Encoding twitter.json (466906 bytes)
ruby 3.4.0preview2 (2024-10-07 master 32c733f57b) +YJIT +PRISM [arm64-darwin23]
Warming up --------------------------------------
        json (2.7.3)   213.000 i/100ms
                  oj   222.000 i/100ms
Calculating -------------------------------------
        json (2.7.3)      2.140k (± 2.8%) i/s  (467.19 μs/i) -     10.863k in   5.079099s
                  oj      2.303k (± 3.2%) i/s  (434.27 μs/i) -     11.544k in   5.018239s

Comparison:
        json (2.7.2):     1250.5 i/s
                  oj:     2302.7 i/s - 1.84x  faster
        json (2.7.3):     2140.5 i/s - 1.71x  faster

Full Changelog: ruby/json@v2.7.2...v2.7.3

v2.7.2

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/json@v2.7.1...v2.7.2

v2.7.1

Compare Source

What's Changed

Improved
Fixed
Misc

New Contributors

Full Changelog: ruby/json@v2.7.0...v2.7.1

v2.7.0

Compare Source

What's Changed

Improved
Added
Fixed
Compatibility changes
Misc

New Contributors

Full Changelog: ruby/json@v2.6.3...v2.7.0

v2.6.3

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/json@v2.6.2...v2.6.3

v2.6.2

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/json@v2.6.1...v2.6.2

v2.6.1

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/json@v2.6.0...v2.6.1

v2.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/json@v2.5.1...v2.6.0

v2.5.1

Compare Source

What's Changed

Full Changelog: ruby/json@v2.5.0...v2.5.1

v2.5.0

Compare Source

What's Changed

Full Changelog: ruby/json@v2.4.1...v2.5.0

v2.4.1

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/json@v2.3.1...v2.4.1

v2.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/json@v2.3.1...v2.4.0

v2.3.1

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/json@v2.3.0...v2.3.1

v2.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/json@v2.2.0...v2.3.0

v2.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/json@v2.1.0...v2.2.0

v2.1.0

Compare Source

What's Changed

New Contributors


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Author

renovate bot commented Dec 11, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Gemfile.lock
Fetching git://github.com/flori/json.git
Retrying git clone 'git://github.com/flori/json.git' "/runner/cache/others/bundler/cache/bundler/git/json-474b41f6a58d19463d596d927d227762c0ff78c9" --bare --no-hardlinks --quiet due to error (2/4): Bundler::Source::Git::GitCommandError Git error: command `git clone 'git://github.com/flori/json.git' "/runner/cache/others/bundler/cache/bundler/git/json-474b41f6a58d19463d596d927d227762c0ff78c9" --bare --no-hardlinks --quiet` in directory /tmp/renovate/repos/github/0xcaffebabe/0xcaffebabe.github.io has failed.
Retrying git clone 'git://github.com/flori/json.git' "/runner/cache/others/bundler/cache/bundler/git/json-474b41f6a58d19463d596d927d227762c0ff78c9" --bare --no-hardlinks --quiet due to error (3/4): Bundler::Source::Git::GitCommandError Git error: command `git clone 'git://github.com/flori/json.git' "/runner/cache/others/bundler/cache/bundler/git/json-474b41f6a58d19463d596d927d227762c0ff78c9" --bare --no-hardlinks --quiet` in directory /tmp/renovate/repos/github/0xcaffebabe/0xcaffebabe.github.io has failed.
Retrying git clone 'git://github.com/flori/json.git' "/runner/cache/others/bundler/cache/bundler/git/json-474b41f6a58d19463d596d927d227762c0ff78c9" --bare --no-hardlinks --quiet due to error (4/4): Bundler::Source::Git::GitCommandError Git error: command `git clone 'git://github.com/flori/json.git' "/runner/cache/others/bundler/cache/bundler/git/json-474b41f6a58d19463d596d927d227762c0ff78c9" --bare --no-hardlinks --quiet` in directory /tmp/renovate/repos/github/0xcaffebabe/0xcaffebabe.github.io has failed.
Git error: command `git clone 'git://github.com/flori/json.git'
"/runner/cache/others/bundler/cache/bundler/git/json-474b41f6a58d19463d596d927d227762c0ff78c9"
--bare --no-hardlinks --quiet` in directory
/tmp/renovate/repos/github/0xcaffebabe/0xcaffebabe.github.io has failed.

fatal: unable to connect to github.com:
github.com[0: 140.82.112.4]: errno=Connection timed out

fatal: unable to connect to github.com:
github.com[0: 140.82.113.3]: errno=Connection timed out

fatal: unable to connect to github.com:
github.com[0: 140.82.114.4]: errno=Connection timed out

fatal: unable to connect to github.com:
github.com[0: 140.82.114.4]: errno=Connection timed out


@renovate renovate bot force-pushed the renovate/json-2.x branch from 34f0056 to bcac1b5 Compare December 21, 2024 17:52
@renovate renovate bot force-pushed the renovate/json-2.x branch from bcac1b5 to 8906376 Compare February 12, 2025 20:27
@renovate renovate bot force-pushed the renovate/json-2.x branch from 8906376 to 293079f Compare March 13, 2025 03:25
@renovate renovate bot changed the title Update dependency json to v2 chore(deps): update dependency json to v2 Mar 30, 2025
@renovate renovate bot force-pushed the renovate/json-2.x branch from 293079f to 1504ff2 Compare April 27, 2025 04:03
@renovate renovate bot force-pushed the renovate/json-2.x branch from 1504ff2 to 27d7ea1 Compare May 10, 2025 04:06
@renovate renovate bot force-pushed the renovate/json-2.x branch from 27d7ea1 to 3ca751e Compare May 17, 2025 07:51
@renovate renovate bot force-pushed the renovate/json-2.x branch from 3ca751e to bdfda3c Compare May 24, 2025 23:53
@renovate renovate bot force-pushed the renovate/json-2.x branch from bdfda3c to 4a9bc8f Compare July 26, 2025 20:12
@renovate renovate bot force-pushed the renovate/json-2.x branch from 4a9bc8f to cb8e81c Compare August 4, 2025 19:42
@renovate renovate bot force-pushed the renovate/json-2.x branch 2 times, most recently from 46a0cdf to 5f268eb Compare September 24, 2025 20:01
@renovate renovate bot force-pushed the renovate/json-2.x branch from 5f268eb to 837a98e Compare October 8, 2025 23:45
@renovate renovate bot force-pushed the renovate/json-2.x branch from 837a98e to b651ba0 Compare October 26, 2025 00:05
@renovate renovate bot force-pushed the renovate/json-2.x branch from b651ba0 to ce77322 Compare November 8, 2025 12:03
@renovate renovate bot force-pushed the renovate/json-2.x branch 2 times, most recently from 8a69d10 to 3633d87 Compare December 5, 2025 23:16
@renovate renovate bot force-pushed the renovate/json-2.x branch from 3633d87 to 2d63725 Compare December 11, 2025 23:42
@renovate renovate bot force-pushed the renovate/json-2.x branch from 2d63725 to 3a3c6f2 Compare February 3, 2026 20:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants