Starkast / wikimum

:sparkles: Starkast wiki
https://starkast.wiki/
MIT License
4 stars 1 forks source link

Bump webmock from 3.23.0 to 3.23.1 #634

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 4 months ago

Bumps webmock from 3.23.0 to 3.23.1.

Changelog

Sourced from webmock's changelog.

3.23.1

Commits
  • 1b23927 Added Ruby 3.3 to the list of supported Ruby versions in README
  • 13b8a28 Version 3.23.1
  • 0092f5d Merge pull request #1056 from IFTTT/master
  • 6cbfed0 Much simpler
  • 54519b2 Use Async::Socket if is present
  • 83b6ec7 Update version.rb
  • 001f15f Use single-quotes
  • 39a4c5c Replace Async::IO::Socket usage with stdlib Socket for async-http adapter to ...
  • See full diff in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
github-actions[bot] commented 4 months ago

Diff URLs

github-actions[bot] commented 4 months ago

gem compare bigdecimal 3.1.6 3.1.8

````ruby Compared versions: ["3.1.6", "3.1.8"] DIFFERENT date: 3.1.6: 2024-01-18 00:00:00 UTC 3.1.8: 2024-05-07 00:00:00 UTC DIFFERENT metadata: 3.1.6: {} 3.1.8: {"changelog_uri"=>"https://github.com/ruby/bigdecimal/blob/master/CHANGES.md"} DIFFERENT require_paths: 3.1.6: ["/opt/hostedtoolcache/Ruby/3.2.4/x64/lib/ruby/gems/3.2.0/extensions/x86_64-linux/3.2.0/bigdecimal-3.1.6", "lib"] 3.1.8: ["/opt/hostedtoolcache/Ruby/3.2.4/x64/lib/ruby/gems/3.2.0/extensions/x86_64-linux/3.2.0/bigdecimal-3.1.8", "lib"] DIFFERENT rubygems_version: 3.1.6: 3.6.0.dev 3.1.8: 3.5.9 DIFFERENT version: 3.1.6: 3.1.6 3.1.8: 3.1.8 DIFFERENT files: 3.1.6->3.1.8: * Changed: bigdecimal.gemspec +2/-0 ext/bigdecimal/bigdecimal.c +83/-27 ````
github-actions[bot] commented 4 months ago

gem compare --diff bigdecimal 3.1.6 3.1.8

````ruby Compared versions: ["3.1.6", "3.1.8"] DIFFERENT files: 3.1.6->3.1.8: * Changed: bigdecimal.gemspec --- /tmp/d20240527-1893-zuotnq/bigdecimal-3.1.6/bigdecimal.gemspec 2024-05-27 02:37:05.005890510 +0000 +++ /tmp/d20240527-1893-zuotnq/bigdecimal-3.1.8/bigdecimal.gemspec 2024-05-27 02:37:05.009890536 +0000 @@ -54,0 +55,2 @@ + + s.metadata["changelog_uri"] = s.homepage + "/blob/master/CHANGES.md" ext/bigdecimal/bigdecimal.c --- /tmp/d20240527-1893-zuotnq/bigdecimal-3.1.6/ext/bigdecimal/bigdecimal.c 2024-05-27 02:37:05.005890510 +0000 +++ /tmp/d20240527-1893-zuotnq/bigdecimal-3.1.8/ext/bigdecimal/bigdecimal.c 2024-05-27 02:37:05.009890536 +0000 @@ -34 +34 @@ -#define BIGDECIMAL_VERSION "3.1.6" +#define BIGDECIMAL_VERSION "3.1.8" @@ -1782,0 +1783,11 @@ +/* + * call-seq: + * a * b -> bigdecimal + * + * Multiply by the specified value. + * + * The result precision will be the precision of the sum of each precision. + * + * See BigDecimal#mult. + */ + @@ -3259,0 +3271 @@ +/* :nodoc: */ @@ -3263 +3275 @@ - return self; + return self; @@ -3760,0 +3773,6 @@ +/* call-seq: + * BigDecimal.interpret_loosely(string) -> bigdecimal + * + * Returns the +BigDecimal+ converted loosely from +string+. + */ + @@ -4240,0 +4259,11 @@ +static inline VALUE +BigDecimal_literal(const char *str) +{ + VALUE arg = rb_str_new_cstr(str); + VALUE val = f_BigDecimal(1, &arg, rb_cBigDecimal); + rb_gc_register_mark_object(val); + return val; +} + +#define BIGDECIMAL_LITERAL(var, val) (BIGDECIMAL_ ## var = BigDecimal_literal(#val)) + @@ -4397 +4425,0 @@ - VALUE arg; @@ -4535,3 +4563 @@ - arg = rb_str_new2("+0"); - BIGDECIMAL_POSITIVE_ZERO = f_BigDecimal(1, &arg, rb_cBigDecimal); - rb_gc_register_mark_object(BIGDECIMAL_POSITIVE_ZERO); + BIGDECIMAL_LITERAL(POSITIVE_ZERO, +0); @@ -4540,8 +4566,4 @@ - arg = rb_str_new2("-0"); - BIGDECIMAL_NEGATIVE_ZERO = f_BigDecimal(1, &arg, rb_cBigDecimal); - rb_gc_register_mark_object(BIGDECIMAL_NEGATIVE_ZERO); - - /* Positive infinity value. */ - arg = rb_str_new2("+Infinity"); - BIGDECIMAL_POSITIVE_INFINITY = f_BigDecimal(1, &arg, rb_cBigDecimal); - rb_gc_register_mark_object(BIGDECIMAL_POSITIVE_INFINITY); + BIGDECIMAL_LITERAL(NEGATIVE_ZERO, -0); + + /* Positive infinity[rdoc-ref:BigDecimal@Infinity] value. */ + rb_define_const(rb_cBigDecimal, "INFINITY", BIGDECIMAL_LITERAL(POSITIVE_INFINITY, +Infinity)); @@ -4550,12 +4572,4 @@ - arg = rb_str_new2("-Infinity"); - BIGDECIMAL_NEGATIVE_INFINITY = f_BigDecimal(1, &arg, rb_cBigDecimal); - rb_gc_register_mark_object(BIGDECIMAL_NEGATIVE_INFINITY); - - /* 'Not a Number' value. */ - arg = rb_str_new2("NaN"); - BIGDECIMAL_NAN = f_BigDecimal(1, &arg, rb_cBigDecimal); - rb_gc_register_mark_object(BIGDECIMAL_NAN); - - /* Special value constants */ - rb_define_const(rb_cBigDecimal, "INFINITY", BIGDECIMAL_POSITIVE_INFINITY); - rb_define_const(rb_cBigDecimal, "NAN", BIGDECIMAL_NAN); + BIGDECIMAL_LITERAL(NEGATIVE_INFINITY, -Infinity); + + /* '{Not a Number}[rdoc-ref:BigDecimal@Not+a+Number]' value. */ + rb_define_const(rb_cBigDecimal, "NAN", BIGDECIMAL_LITERAL(NAN, NaN)); @@ -5205,0 +5220,42 @@ +struct VpCtoV_args { + Real *a; + const char *int_chr; + size_t ni; + const char *frac; + size_t nf; + const char *exp_chr; + size_t ne; +}; + +static VALUE +call_VpCtoV(VALUE arg) +{ + struct VpCtoV_args *x = (struct VpCtoV_args *)arg; + return (VALUE)VpCtoV(x->a, x->int_chr, x->ni, x->frac, x->nf, x->exp_chr, x->ne); +} + +static int +protected_VpCtoV(Real *a, const char *int_chr, size_t ni, const char *frac, size_t nf, const char *exp_chr, size_t ne, int free_on_error) +{ + struct VpCtoV_args args; + int state = 0; + + args.a = a; + args.int_chr = int_chr; + args.ni = ni; + args.frac = frac; + args.nf = nf; + args.exp_chr = exp_chr; + args.ne = ne; + + VALUE result = rb_protect(call_VpCtoV, (VALUE)&args, &state); + if (state) { + if (free_on_error) { + rbd_free_struct(a); + } + rb_jump_tag(state); + } + + return (int)result; +} + @@ -5425 +5481 @@ - VpCtoV(vp, psz, ni, psz + ipf, nf, psz + ipe, ne); + protected_VpCtoV(vp, psz, ni, psz + ipf, nf, psz + ipe, ne, true); ````
github-actions[bot] commented 4 months ago

gem compare public_suffix 5.0.4 5.0.5

````ruby Compared versions: ["5.0.4", "5.0.5"] DIFFERENT date: 5.0.4: 2023-11-17 00:00:00 UTC 5.0.5: 2024-04-02 00:00:00 UTC DIFFERENT metadata: 5.0.4: {"bug_tracker_uri"=>"https://github.com/weppos/publicsuffix-ruby/issues", "changelog_uri"=>"https://github.com/weppos/publicsuffix-ruby/blob/master/CHANGELOG.md", "documentation_uri"=>"https://rubydoc.info/gems/public_suffix/5.0.4", "homepage_uri"=>"https://simonecarletti.com/code/publicsuffix-ruby", "source_code_uri"=>"https://github.com/weppos/publicsuffix-ruby/tree/v5.0.4"} 5.0.5: {"bug_tracker_uri"=>"https://github.com/weppos/publicsuffix-ruby/issues", "changelog_uri"=>"https://github.com/weppos/publicsuffix-ruby/blob/master/CHANGELOG.md", "documentation_uri"=>"https://rubydoc.info/gems/public_suffix/5.0.5", "homepage_uri"=>"https://simonecarletti.com/code/publicsuffix-ruby", "source_code_uri"=>"https://github.com/weppos/publicsuffix-ruby/tree/v5.0.5"} DIFFERENT rubygems_version: 5.0.4: 3.4.10 5.0.5: 3.5.3 DIFFERENT version: 5.0.4: 5.0.4 5.0.5: 5.0.5 DIFFERENT files: 5.0.4->5.0.5: * Changed: CHANGELOG.md +7/-1 LICENSE.txt +1/-1 README.md +1/-1 data/list.txt +239/-80 lib/public_suffix.rb +1/-1 lib/public_suffix/domain.rb +1/-1 lib/public_suffix/errors.rb +1/-1 lib/public_suffix/list.rb +1/-1 lib/public_suffix/rule.rb +1/-1 lib/public_suffix/version.rb +2/-2 DIFFERENT extra_rdoc_files: 5.0.4->5.0.5: * Changed: LICENSE.txt +1/-1 ````
github-actions[bot] commented 4 months ago

gem compare --diff public_suffix 5.0.4 5.0.5

````ruby Compared versions: ["5.0.4", "5.0.5"] DIFFERENT files: 5.0.4->5.0.5: * Changed: CHANGELOG.md --- /tmp/d20240527-1961-275waq/public_suffix-5.0.4/CHANGELOG.md 2024-05-27 02:37:10.681922638 +0000 +++ /tmp/d20240527-1961-275waq/public_suffix-5.0.5/CHANGELOG.md 2024-05-27 02:37:10.685922659 +0000 @@ -4,0 +5,6 @@ +## 5.0.5 + +### Changed + +- Updated definitions. + @@ -9 +15 @@ -- Reduced .gem file size (GH-259). [Thanks @ybiquitous] +- Reduced .gem file size (GH-258). [Thanks @ybiquitous] LICENSE.txt --- /tmp/d20240527-1961-275waq/public_suffix-5.0.4/LICENSE.txt 2024-05-27 02:37:10.681922638 +0000 +++ /tmp/d20240527-1961-275waq/public_suffix-5.0.5/LICENSE.txt 2024-05-27 02:37:10.685922659 +0000 @@ -1 +1 @@ -Copyright (c) 2009-2023 Simone Carletti +Copyright (c) 2009-2024 Simone Carletti README.md --- /tmp/d20240527-1961-275waq/public_suffix-5.0.4/README.md 2024-05-27 02:37:10.681922638 +0000 +++ /tmp/d20240527-1961-275waq/public_suffix-5.0.5/README.md 2024-05-27 02:37:10.685922659 +0000 @@ -212 +212 @@ -Copyright (c) 2009-2023 Simone Carletti. This is Free Software distributed under the MIT license. +Copyright (c) 2009-2024 Simone Carletti. This is Free Software distributed under the MIT license. data/list.txt --- /tmp/d20240527-1961-275waq/public_suffix-5.0.4/data/list.txt 2024-05-27 02:37:10.685922659 +0000 +++ /tmp/d20240527-1961-275waq/public_suffix-5.0.5/data/list.txt 2024-05-27 02:37:10.689922680 +0000 @@ -6713 +6713 @@ -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2023-11-03T15:13:18Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-03-28T15:13:37Z @@ -6991,4 +6990,0 @@ -// avianca : Avianca Inc. -// https://www.iana.org/domains/root/db/avianca.html -avianca - @@ -7019,4 +7014,0 @@ -// bananarepublic : The Gap, Inc. -// https://www.iana.org/domains/root/db/bananarepublic.html -bananarepublic - @@ -7547,4 +7538,0 @@ -// comcast : Comcast IP Holdings I, LLC -// https://www.iana.org/domains/root/db/comcast.html -comcast - @@ -7754,0 +7743,4 @@ +// desi +// https://www.iana.org/domains/root/db/desi.html +desi + @@ -7799 +7791 @@ -// diy : Lifestyle Domain Holdings, Inc. +// diy : Internet Naming Company LLC @@ -7931,4 +7922,0 @@ -// etisalat : Emirates Telecommunications Corporation (trading as Etisalat) -// https://www.iana.org/domains/root/db/etisalat.html -etisalat - @@ -8107 +8095 @@ -// food : Lifestyle Domain Holdings, Inc. +// food : Internet Naming Company LLC @@ -8167 +8155 @@ -// fun : Radix FZC DMCC +// fun : Radix Technologies Inc. @@ -8315 +8303 @@ -// goo : NTT Resonant Inc. +// goo : NTT DOCOMO, INC. @@ -8367,4 +8354,0 @@ -// guardian : The Guardian Life Insurance Company of America -// https://www.iana.org/domains/root/db/guardian.html -guardian - @@ -8503 +8487 @@ -// host : Radix FZC DMCC +// host : Radix Technologies Inc. @@ -8723 +8707 @@ -// juegos : Internet Naming Company LLC +// juegos : Dog Beach, LLC @@ -8911 +8895 @@ -// lifestyle : Lifestyle Domain Holdings, Inc. +// lifestyle : Internet Naming Company LLC @@ -8951 +8935 @@ -// living : Lifestyle Domain Holdings, Inc. +// living : Internet Naming Company LLC @@ -9395,4 +9378,0 @@ -// oldnavy : The Gap, Inc. -// https://www.iana.org/domains/root/db/oldnavy.html -oldnavy - @@ -9419 +9399 @@ -// online : Radix FZC DMCC +// online : Radix Technologies Inc. @@ -9623 +9603 @@ -// press : Radix FZC DMCC +// press : Radix Technologies Inc. @@ -9931,4 +9910,0 @@ -// sca : SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ) -// https://www.iana.org/domains/root/db/sca.html -sca - @@ -10079 +10055 @@ -// site : Radix FZC DMCC +// site : Radix Technologies Inc. @@ -10159 +10135 @@ -// space : Radix FZC DMCC +// space : Radix Technologies Inc. @@ -10211 +10187 @@ -// store : Radix FZC DMCC +// store : Radix Technologies Inc. @@ -10327 +10303 @@ -// tech : Radix FZC DMCC +// tech : Radix Technologies Inc. @@ -10511 +10487 @@ -// uno : Radix FZC DMCC +// uno : Radix Technologies Inc. @@ -10527 +10503 @@ -// vana : Lifestyle Domain Holdings, Inc. +// vana : Internet Naming Company LLC @@ -10611,4 +10586,0 @@ -// volkswagen : Volkswagen Group of America Inc. -// https://www.iana.org/domains/root/db/volkswagen.html -volkswagen - @@ -10679 +10651 @@ -// website : Radix FZC DMCC +// website : Radix Technologies Inc. @@ -10682,0 +10655,4 @@ +// wed +// https://www.iana.org/domains/root/db/wed.html +wed + @@ -10771,4 +10746,0 @@ -// xfinity : Comcast IP Holdings I, LLC -// https://www.iana.org/domains/root/db/xfinity.html -xfinity - @@ -11015,4 +10986,0 @@ -// xn--mgbaakc7dvf : Emirates Telecommunications Corporation (trading as Etisalat) -// https://www.iana.org/domains/root/db/xn--mgbaakc7dvf.html -اتصالات - @@ -11219,0 +11188,6 @@ +// 12CHARS: https://12chars.com +// Submitted by Kenny Niehage +12chars.dev +12chars.it +12chars.pro + @@ -11228,0 +11203,5 @@ +// A2 Hosting +// Submitted by Tyler Hall +a2hosted.com +cpserver.com + @@ -11244,0 +11224,4 @@ +// Adaptable.io : https://adaptable.io +// Submitted by Mark Terrel +adaptable.app + @@ -11248,0 +11232 @@ +aem.live @@ -11250,0 +11235 @@ +aem.page @@ -11322 +11307 @@ -// Reference: 4d863337-ff98-4501-a6f2-361eba8445d6 +// Reference: 9e37648f-a66c-4655-9ab1-5981f8737197 @@ -11336,0 +11322 @@ +execute-api.ca-west-1.amazonaws.com @@ -11508 +11494 @@ -// Reference: 0e801048-08f2-4064-9cb8-e7373e0b57f4 +// Reference: cd5c8b3a-67b7-4b40-9236-c87ce81a3d10 @@ -11606,0 +11593,10 @@ +s3.dualstack.ca-west-1.amazonaws.com +s3-accesspoint.dualstack.ca-west-1.amazonaws.com +s3-accesspoint-fips.dualstack.ca-west-1.amazonaws.com +s3-fips.dualstack.ca-west-1.amazonaws.com +s3-website.dualstack.ca-west-1.amazonaws.com +s3.ca-west-1.amazonaws.com +s3-accesspoint.ca-west-1.amazonaws.com +s3-accesspoint-fips.ca-west-1.amazonaws.com +s3-fips.ca-west-1.amazonaws.com +s3-website.ca-west-1.amazonaws.com @@ -11789 +11785 @@ -// Reference: fe8c9e94-5a22-486d-8750-991a3a9b13c6 +// Reference: ce8ae0b1-0070-496d-be88-37c31837af9d @@ -11801,0 +11798,3 @@ +notebook-fips.ca-central-1.sagemaker.aws +notebook.ca-west-1.sagemaker.aws +notebook-fips.ca-west-1.sagemaker.aws @@ -11888 +11887 @@ -// Reference: 05c44955-977c-4b57-938a-f2af92733f9f +// Reference: 30717f72-4007-4f0f-8ed4-864c6f2efec9 @@ -11933,0 +11933,2 @@ +webview-assets.aws-cloud9.il-central-1.amazonaws.com +vfs.cloud9.il-central-1.amazonaws.com @@ -11995,0 +11997,5 @@ +// AWS re:Post Private +// Submitted by AWS Security +// Reference: 83385945-225f-416e-9aa0-ad0632bfdcee +*.private.repost.aws + @@ -12012,0 +12019,4 @@ +// Apis Networks: https://apisnetworks.com +// Submitted by Matt Saladna +panel.dev + @@ -12029,0 +12040,4 @@ +// Aquapal : https://aquapal.net/ +// Submitted by Aki Ueno +f5.si + @@ -12123,0 +12138,4 @@ +// Besties : https://besties.house +// Submitted by Hazel Cora +pages.gay + @@ -12168,0 +12187,4 @@ +// Brave : https://brave.com +// Submitted by Andrea Brancaleoni +*.s.brave.io + @@ -12193,0 +12216 @@ +*.my.canvasite.cn @@ -12194,0 +12218 @@ +*.my.canva.site @@ -12385,0 +12410,4 @@ +// Convex : https://convex.dev/ +// Submitted by James Cowling +convex.site + @@ -12406,0 +12435,4 @@ +// cPanel L.L.C. : https://www.cpanel.net/ +// Submitted by Dustin Scherer +*.cprapid.com + @@ -12410,0 +12443,4 @@ +// Crisp IM SAS : https://crisp.chat/ +// Submitted by Baptiste Jamin +on.crisp.email + @@ -12430,0 +12467,7 @@ +// Cyclic Software : https://www.cyclic.sh +// Submitted by Kam Lasater +cyclic.app +cyclic.cloud +cyclic-app.com +cyclic.co.in + @@ -12910,0 +12954,4 @@ +// EasyWP : https://www.easywp.com +// Submitted by +*.ewp.live + @@ -13025,4 +13071,0 @@ -// Facebook, Inc. -// Submitted by Peter Ruibal -apps.fbsbx.com - @@ -13185,0 +13229,4 @@ +// FlutterFlow : https://flutterflow.io +// Submitted by Anton Emelyanov +flutterflow.app + @@ -13196 +13243 @@ -// Forgerock : https://www.forgerock.com +// Forgerock : https://www.forgerock.com @@ -13253,0 +13301,4 @@ +// GCom Internet : https://www.gcom.net.au +// Submitted by Leo Julius +aliases121.com + @@ -13427,0 +13479,4 @@ +// GoDaddy Registry : https://registry.godaddy +// Submitted by Rohan Durrant +graphic.design + @@ -13437,4 +13491,0 @@ -// UKHomeOffice : https://www.gov.uk/government/organisations/home-office -// Submitted by Jon Shanks -homeoffice.gov.uk - @@ -13451,2 +13502 @@ -run.app -a.run.app +*.run.app @@ -13606,0 +13657,6 @@ +// Homebase : https://homebase.id/ +// Submitted by Jason Babo +*.kin.one +*.id.pub +*.kin.pub + @@ -13684 +13740 @@ -// Submitted by Jacob Slater +// Submitted by June Slater @@ -13732,0 +13789,4 @@ +// ir.md : https://nic.ir.md +// Submitted by Ali Soizi +ir.md + @@ -14059,0 +14120,5 @@ +// Meta Platforms, Inc. : https://meta.com/ +// Submitted by Jacob Cordero +atmeta.com +apps.fbsbx.com + @@ -14079,0 +14145,2 @@ +// Managed by Corporate Domains +// Microsoft Azure : https://home.azure @@ -14080,0 +14148,4 @@ +cloudapp.azure.com +azure-api.net +azureedge.net +azurefd.net @@ -14083 +14153,0 @@ -cloudapp.net @@ -14096,0 +14167,4 @@ +cloudapp.net +trafficmanager.net +blob.core.windows.net +servicebus.windows.net @@ -14109,0 +14184,4 @@ +// MODX Systems LLC : https://modx.com +// Submitted by Elizabeth Southwell +modx.dev + @@ -14170,0 +14249 @@ +ngrok.pro @@ -14182,0 +14262,4 @@ +// NFT.Storage : https://nft.storage/ +// Submitted by Vasco Santos or +ipfs.nftstorage.link + @@ -14486 +14569,2 @@ -bc.platform.sh +*.upsun.app +upsunapp.com @@ -14504,0 +14589,4 @@ +// Pley AB : https://www.pley.com/ +// Submitted by Henning Pohl +pley.games + @@ -14580,0 +14669,2 @@ +myradweb.net +servername.us @@ -14647 +14737,3 @@ -// Submitted by Lincoln Bergeson +// Submitted by Lincoln Bergeson +replit.app +id.replit.app @@ -14651,0 +14744,27 @@ +replit.dev +archer.replit.dev +bones.replit.dev +canary.replit.dev +global.replit.dev +hacker.replit.dev +id.replit.dev +janeway.replit.dev +kim.replit.dev +kira.replit.dev +kirk.replit.dev +odo.replit.dev +paris.replit.dev +picard.replit.dev +pike.replit.dev +prerelease.replit.dev +reed.replit.dev +riker.replit.dev +sisko.replit.dev +spock.replit.dev +staging.replit.dev +sulu.replit.dev +tarpit.replit.dev +teams.replit.dev +tucker.replit.dev +wesley.replit.dev +worf.replit.dev @@ -14748 +14867 @@ -// Submitted by Michael Biven +// Submitted by Michael Biven and Aaron Romeo @@ -14751,0 +14871 @@ +*.001.test.code-builder-stg.platform.salesforce.com @@ -14766,0 +14887 @@ +cockpit.fr-par.scw.cloud @@ -14776,0 +14898 @@ +cockpit.nl-ams.scw.cloud @@ -14781,0 +14904 @@ +cockpit.pl-waw.scw.cloud @@ -14890 +15013 @@ -// Former AFNIC's SLDs +// Former AFNIC's SLDs @@ -14929,0 +15053,8 @@ +// STACKIT : https://www.stackit.de/en/ +// Submitted by STACKIT-DNS Team (Simon Stier) +runs.onstackit.cloud +stackit.gg +stackit.rocks +stackit.run +stackit.zone + @@ -14995,0 +15127,13 @@ +// stereosense GmbH : https://www.involve.me +// Submitted by Florian Burmann +feedback.ac +forms.ac +assessments.cx +calculators.cx +funnels.cx +paynow.cx +quizzes.cx +researched.cx +tests.cx +surveys.so + @@ -15003,0 +15148,6 @@ +// Streak : https://streak.com +// Submitted by Blake Kadatz +streak-link.com +streaklinks.com +streakusercontent.com + @@ -15065,0 +15216 @@ +*.c.ts.net @@ -15268 +15418,0 @@ -blog.kg @@ -15301,0 +15452,5 @@ +// Webflow, Inc. : https://www.webflow.com +// Submitted by Webflow Security Team +webflow.io +webflowtest.io + @@ -15419,0 +15575,4 @@ + +// ZAP-Hosting GmbH & Co. KG : https://zap-hosting.com +// Submitted by Julian Alker +zap.cloud lib/public_suffix.rb --- /tmp/d20240527-1961-275waq/public_suffix-5.0.4/lib/public_suffix.rb 2024-05-27 02:37:10.685922659 +0000 +++ /tmp/d20240527-1961-275waq/public_suffix-5.0.5/lib/public_suffix.rb 2024-05-27 02:37:10.689922680 +0000 @@ -7 +7 @@ -# Copyright (c) 2009-2023 Simone Carletti +# Copyright (c) 2009-2024 Simone Carletti lib/public_suffix/domain.rb --- /tmp/d20240527-1961-275waq/public_suffix-5.0.4/lib/public_suffix/domain.rb 2024-05-27 02:37:10.685922659 +0000 +++ /tmp/d20240527-1961-275waq/public_suffix-5.0.5/lib/public_suffix/domain.rb 2024-05-27 02:37:10.689922680 +0000 @@ -7 +7 @@ -# Copyright (c) 2009-2023 Simone Carletti +# Copyright (c) 2009-2024 Simone Carletti lib/public_suffix/errors.rb --- /tmp/d20240527-1961-275waq/public_suffix-5.0.4/lib/public_suffix/errors.rb 2024-05-27 02:37:10.685922659 +0000 +++ /tmp/d20240527-1961-275waq/public_suffix-5.0.5/lib/public_suffix/errors.rb 2024-05-27 02:37:10.689922680 +0000 @@ -7 +7 @@ -# Copyright (c) 2009-2023 Simone Carletti +# Copyright (c) 2009-2024 Simone Carletti lib/public_suffix/list.rb --- /tmp/d20240527-1961-275waq/public_suffix-5.0.4/lib/public_suffix/list.rb 2024-05-27 02:37:10.685922659 +0000 +++ /tmp/d20240527-1961-275waq/public_suffix-5.0.5/lib/public_suffix/list.rb 2024-05-27 02:37:10.689922680 +0000 @@ -7 +7 @@ -# Copyright (c) 2009-2023 Simone Carletti +# Copyright (c) 2009-2024 Simone Carletti lib/public_suffix/rule.rb --- /tmp/d20240527-1961-275waq/public_suffix-5.0.4/lib/public_suffix/rule.rb 2024-05-27 02:37:10.685922659 +0000 +++ /tmp/d20240527-1961-275waq/public_suffix-5.0.5/lib/public_suffix/rule.rb 2024-05-27 02:37:10.689922680 +0000 @@ -7 +7 @@ -# Copyright (c) 2009-2023 Simone Carletti +# Copyright (c) 2009-2024 Simone Carletti lib/public_suffix/version.rb --- /tmp/d20240527-1961-275waq/public_suffix-5.0.4/lib/public_suffix/version.rb 2024-05-27 02:37:10.685922659 +0000 +++ /tmp/d20240527-1961-275waq/public_suffix-5.0.5/lib/public_suffix/version.rb 2024-05-27 02:37:10.689922680 +0000 @@ -7 +7 @@ -# Copyright (c) 2009-2023 Simone Carletti +# Copyright (c) 2009-2024 Simone Carletti @@ -12 +12 @@ - VERSION = "5.0.4" + VERSION = "5.0.5" ````
github-actions[bot] commented 4 months ago

gem compare webmock 3.23.0 3.23.1

````ruby Compared versions: ["3.23.0", "3.23.1"] DIFFERENT date: 3.23.0: 2024-02-25 00:00:00 UTC 3.23.1: 2024-05-24 00:00:00 UTC DIFFERENT metadata: 3.23.0: {"bug_tracker_uri"=>"https://github.com/bblimke/webmock/issues", "changelog_uri"=>"https://github.com/bblimke/webmock/blob/v3.23.0/CHANGELOG.md", "documentation_uri"=>"https://www.rubydoc.info/gems/webmock/3.23.0", "source_code_uri"=>"https://github.com/bblimke/webmock/tree/v3.23.0", "wiki_uri"=>"https://github.com/bblimke/webmock/wiki"} 3.23.1: {"bug_tracker_uri"=>"https://github.com/bblimke/webmock/issues", "changelog_uri"=>"https://github.com/bblimke/webmock/blob/v3.23.1/CHANGELOG.md", "documentation_uri"=>"https://www.rubydoc.info/gems/webmock/3.23.1", "source_code_uri"=>"https://github.com/bblimke/webmock/tree/v3.23.1", "wiki_uri"=>"https://github.com/bblimke/webmock/wiki"} DIFFERENT rubygems_version: 3.23.0: 3.5.6 3.23.1: 3.5.7 DIFFERENT version: 3.23.0: 3.23.0 3.23.1: 3.23.1 DIFFERENT files: 3.23.0->3.23.1: * Changed: CHANGELOG.md +6/-0 README.md +2/-0 lib/webmock/http_lib_adapters/async_http_client_adapter.rb +6/-2 lib/webmock/version.rb +1/-1 ````
github-actions[bot] commented 4 months ago

gem compare --diff webmock 3.23.0 3.23.1

````ruby Compared versions: ["3.23.0", "3.23.1"] DIFFERENT files: 3.23.0->3.23.1: * Changed: CHANGELOG.md --- /tmp/d20240527-2069-45nnvx/webmock-3.23.0/CHANGELOG.md 2024-05-27 02:37:16.217951205 +0000 +++ /tmp/d20240527-2069-45nnvx/webmock-3.23.1/CHANGELOG.md 2024-05-27 02:37:16.225951247 +0000 @@ -2,0 +3,6 @@ +# 3.23.1 + +* Added support for async-http version >= 0.65.0 [PR](https://github.com/bblimke/webmock/pull/1056) + + Thanks to [Jacob Frautschi](https://github.com/jakeonfire) + README.md --- /tmp/d20240527-2069-45nnvx/webmock-3.23.0/README.md 2024-05-27 02:37:16.217951205 +0000 +++ /tmp/d20240527-2069-45nnvx/webmock-3.23.1/README.md 2024-05-27 02:37:16.229951267 +0000 @@ -45,0 +46 @@ +* MRI 3.3 @@ -1204,0 +1206 @@ +* Jacob Frautschi lib/webmock/http_lib_adapters/async_http_client_adapter.rb --- /tmp/d20240527-2069-45nnvx/webmock-3.23.0/lib/webmock/http_lib_adapters/async_http_client_adapter.rb 2024-05-27 02:37:16.221951226 +0000 +++ /tmp/d20240527-2069-45nnvx/webmock-3.23.1/lib/webmock/http_lib_adapters/async_http_client_adapter.rb 2024-05-27 02:37:16.229951267 +0000 @@ -154,0 +155,4 @@ + def socket_class + defined?(Async::IO::Socket) ? Async::IO::Socket : Socket + end + @@ -157 +161 @@ - Async::IO::Socket.pair(Socket::AF_UNIX, Socket::SOCK_STREAM) + socket_class.pair(Socket::AF_UNIX, Socket::SOCK_STREAM) @@ -159 +163 @@ - Async::IO::Socket.pair(Socket::AF_INET, Socket::SOCK_STREAM) + socket_class.pair(Socket::AF_INET, Socket::SOCK_STREAM) lib/webmock/version.rb --- /tmp/d20240527-2069-45nnvx/webmock-3.23.0/lib/webmock/version.rb 2024-05-27 02:37:16.225951247 +0000 +++ /tmp/d20240527-2069-45nnvx/webmock-3.23.1/lib/webmock/version.rb 2024-05-27 02:37:16.237951309 +0000 @@ -4 +4 @@ - VERSION = '3.23.0' unless defined?(::WebMock::VERSION) + VERSION = '3.23.1' unless defined?(::WebMock::VERSION) ````