Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PSL auto-update #3

Open
wants to merge 471 commits into
base: master
Choose a base branch
from
Open

PSL auto-update #3

wants to merge 471 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jan 24, 2017

  1. Optimize space by removing duplicate rule value

    When the rule is stored, we can remove the value from the Rule as
    the value if effectively the key of the Hash.
    
        ➜  publicsuffix-ruby git:(before) ruby test/profilers/initialization_profiler.rb
        Total allocated: 5882690 bytes (52219 objects)
        Total retained:  1375819 bytes (24188 objects)
    
        ➜  publicsuffix-ruby git:(before) ruby test/profilers/execution_profiler.rb
        Total allocated: 15170 bytes (160 objects)
        Total retained:  0 bytes (0 objects)
    
        ➜  publicsuffix-ruby git:(after) ✗ ruby test/profilers/initialization_profiler.rb
        Total allocated: 6205130 bytes (60280 objects)
        Total retained:  1052404 bytes (16127 objects)
    
        ➜  publicsuffix-ruby git:(after) ✗ ruby test/profilers/execution_profiler.rb
        Total allocated: 15330 bytes (164 objects)
        Total retained:  0 bytes (0 objects)
    
    compared to master
    
        ➜  publicsuffix-ruby git:(master) ruby test/profilers/initialization_profiler.rb
        Total allocated: 6525758 bytes (72086 objects)
        Total retained:  1020387 bytes (19234 objects)
    
        ➜  publicsuffix-ruby git:(master) ruby test/profilers/execution_profiler.rb
        Total allocated: 204162 bytes (4420 objects)
        Total retained:  0 bytes (0 objects)
    
    Execution time is unchanged.
    
        ➜  publicsuffix-ruby git:(before) ruby test/benchmarks/bm_find.rb
    
                                       user     system      total        real
        NAME_SHORT                  0.260000   0.000000   0.260000 (  0.262684)
        NAME_SHORT (noprivate)      0.370000   0.010000   0.380000 (  0.372534)
        NAME_MEDIUM                 0.330000   0.000000   0.330000 (  0.335683)
        NAME_MEDIUM (noprivate)     0.490000   0.000000   0.490000 (  0.494590)
        NAME_LONG                   0.510000   0.010000   0.520000 (  0.519750)
        NAME_LONG (noprivate)       0.590000   0.000000   0.590000 (  0.594626)
        NAME_WILD                   0.480000   0.000000   0.480000 (  0.490432)
        NAME_WILD (noprivate)       0.580000   0.010000   0.590000 (  0.594776)
        NAME_EXCP                   0.460000   0.000000   0.460000 (  0.470119)
        NAME_EXCP (noprivate)       0.590000   0.010000   0.600000 (  0.601316)
        IAAA                        0.300000   0.000000   0.300000 (  0.305301)
        IAAA (noprivate)            0.400000   0.000000   0.400000 (  0.410586)
        IZZZ                        0.280000   0.000000   0.280000 (  0.283711)
        IZZZ (noprivate)            0.400000   0.010000   0.410000 (  0.408137)
        PAAA                        0.490000   0.000000   0.490000 (  0.501869)
        PAAA (noprivate)            0.600000   0.000000   0.600000 (  0.612187)
        PZZZ                        0.510000   0.010000   0.520000 (  0.519206)
        PZZZ (noprivate)            0.590000   0.000000   0.590000 (  0.600264)
        JP                          0.390000   0.000000   0.390000 (  0.404432)
        JP (noprivate)              0.540000   0.010000   0.550000 (  0.558351)
        IT                          0.290000   0.000000   0.290000 (  0.298931)
        IT (noprivate)              0.410000   0.000000   0.410000 (  0.420742)
        COM                         0.290000   0.010000   0.300000 (  0.300935)
        COM (noprivate)             0.400000   0.000000   0.400000 (  0.409309)
    
        ➜  publicsuffix-ruby git:(after) ✗ ruby test/benchmarks/bm_find.rb
    
                                       user     system      total        real
        NAME_SHORT                  0.320000   0.000000   0.320000 (  0.320201)
        NAME_SHORT (noprivate)      0.430000   0.000000   0.430000 (  0.443678)
        NAME_MEDIUM                 0.380000   0.000000   0.380000 (  0.388169)
        NAME_MEDIUM (noprivate)     0.490000   0.010000   0.500000 (  0.491073)
        NAME_LONG                   0.480000   0.000000   0.480000 (  0.483376)
        NAME_LONG (noprivate)       0.620000   0.010000   0.630000 (  0.634896)
        NAME_WILD                   0.570000   0.020000   0.590000 (  0.628489)
        NAME_WILD (noprivate)       0.700000   0.030000   0.730000 (  0.769070)
        NAME_EXCP                   0.580000   0.020000   0.600000 (  0.618683)
        NAME_EXCP (noprivate)       0.740000   0.030000   0.770000 (  0.799244)
        IAAA                        0.410000   0.030000   0.440000 (  0.474761)
        IAAA (noprivate)            0.550000   0.040000   0.590000 (  0.645329)
        IZZZ                        0.380000   0.020000   0.400000 (  0.432898)
        IZZZ (noprivate)            0.520000   0.020000   0.540000 (  0.579073)
        PAAA                        0.680000   0.040000   0.720000 (  0.760276)
        PAAA (noprivate)            0.720000   0.020000   0.740000 (  0.773864)
        PZZZ                        0.700000   0.040000   0.740000 (  0.782113)
        PZZZ (noprivate)            0.650000   0.010000   0.660000 (  0.664647)
        JP                          0.470000   0.000000   0.470000 (  0.478473)
        JP (noprivate)              0.580000   0.010000   0.590000 (  0.589827)
        IT                          0.360000   0.000000   0.360000 (  0.379309)
        IT (noprivate)              0.450000   0.010000   0.460000 (  0.471794)
        COM                         0.330000   0.010000   0.340000 (  0.334253)
        COM (noprivate)             0.530000   0.030000   0.560000 (  0.592813)
    weppos committed Jan 24, 2017
    Configuration menu
    Copy the full SHA
    1c4f0ca View commit details
    Browse the repository at this point in the history
  2. Allocation comparison with master is way lowe

    Using the new benchmarks introduced in dec53e6,
    the allocation is clearly lower even during execution time.
    
        ➜  publicsuffix-ruby git:(master) ✗ ruby test/profilers/find_profiler.rb
        Total allocated: 31472 bytes (691 objects)
        Total retained:  0 bytes (0 objects)
    
        ➜  publicsuffix-ruby git:(master) ✗ ruby test/profilers/domain_profiler.rb
        Total allocated: 37410 bytes (744 objects)
        Total retained:  0 bytes (0 objects)
    
    vs
    
        ➜  publicsuffix-ruby git:(thesis-hash) ruby test/profilers/find_profiler.rb
        Total allocated: 1264 bytes (22 objects)
        Total retained:  0 bytes (0 objects)
    
        ➜  publicsuffix-ruby git:(thesis-hash) ruby test/profilers/domain_profiler.rb
        Total allocated: 7202 bytes (75 objects)
        Total retained:  0 bytes (0 objects)
    weppos committed Jan 24, 2017
    Configuration menu
    Copy the full SHA
    ac39e08 View commit details
    Browse the repository at this point in the history
  3. Restructure Rule initialization

    .new now takes all parameters, as you would create a completely new
    instance when you have the data.
    
    A new method called .build is used to create a new Rule from a rule
    content.
    weppos committed Jan 24, 2017
    Configuration menu
    Copy the full SHA
    24ad179 View commit details
    Browse the repository at this point in the history
  4. Introduce Entry internal object

    Better distinguish between a Rule (public API) and an Entry (internal
    API).
    weppos committed Jan 24, 2017
    Configuration menu
    Copy the full SHA
    d363dbe View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2017

  1. Configuration menu
    Copy the full SHA
    b7fec8b View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2017

  1. Change bm_find.rb benchmark to not run on private rules

    Just keep it simple. The difference is not very noticeable. There is
    now a separate benchmark to check extensively on all rules.
    weppos committed Feb 9, 2017
    Configuration menu
    Copy the full SHA
    582efe5 View commit details
    Browse the repository at this point in the history
  2. Work around some limitations of ObjectSpace.memsize_of

    A very simple memory profiles that checks the full size of a variable
    by serializing into a binary file.
    
    Yes, I know this is very rough, but there are cases where
    ObjectSpace.memsize_of doesn't cooperate, and this is one of the
    possible workarounds.
    weppos committed Feb 9, 2017
    Configuration menu
    Copy the full SHA
    740d78c View commit details
    Browse the repository at this point in the history
  3. Fix outdated namespace

    weppos committed Feb 9, 2017
    Configuration menu
    Copy the full SHA
    c3e05d5 View commit details
    Browse the repository at this point in the history
  4. Measure the list size

    weppos committed Feb 9, 2017
    Configuration menu
    Copy the full SHA
    4d98521 View commit details
    Browse the repository at this point in the history
  5. Cleanup docs

    weppos committed Feb 9, 2017
    Configuration menu
    Copy the full SHA
    fff9739 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    498e19b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    482f534 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8f241cc View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    dd82821 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    2a79a0f View commit details
    Browse the repository at this point in the history
  11. Dropped support for Ruby < 2.1

    It doesn't support keyword arguments with no default, and proper memory
    profiling.
    weppos committed Feb 9, 2017
    Configuration menu
    Copy the full SHA
    c6560dc View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f1abbd3 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2017

  1. Merge pull request weppos#133 from weppos/thesis-hash

    Switch List implementation to use Hash-based lookup.
    
    Before
    
        $ ruby test/benchmarks/bm_find.rb
    
                                        user     system      total        real
        NAME_SHORT                  1.540000   0.000000   1.540000 (  1.560285)
        NAME_MEDIUM                 1.740000   0.020000   1.760000 (  1.774570)
        NAME_LONG                   2.050000   0.010000   2.060000 (  2.101608)
        NAME_WILD                   0.630000   0.010000   0.640000 (  0.633376)
        NAME_EXCP                   0.660000   0.000000   0.660000 (  0.663655)
        IAAA                        0.710000   0.000000   0.710000 (  0.712431)
        IZZZ                        0.620000   0.000000   0.620000 (  0.621207)
        PAAA                        6.900000   0.060000   6.960000 (  7.105149)
        PZZZ                        0.930000   0.000000   0.930000 (  0.932058)
        JP                         51.190000   0.430000  51.620000 ( 52.718784)
        IT                          9.110000   0.030000   9.140000 (  9.183792)
        COM                         7.580000   0.010000   7.590000 (  7.591188)
    
        $ ruby test/profilers/list_profsize.rb
    
           301,518   PublicSuffix::List size
           247,194   Size of rules
            54,287   Size of indexes
    
        $ ruby test/profilers/initialization_profiler.rb
    
        Total allocated: 6525680 bytes (72086 objects)
        Total retained:  1020309 bytes (19234 objects)
    
        allocated memory by class
        -----------------------------------
           3819072  Hash
           1826448  String
            557440  Array
            320080  PublicSuffix::Rule::Normal
              2040  PublicSuffix::Rule::Wildcard
               320  PublicSuffix::Rule::Exception
               240  File
                40  PublicSuffix::List
    
        allocated objects by class
        -----------------------------------
             38284  String
             16124  Hash
              9615  Array
              8002  PublicSuffix::Rule::Normal
                51  PublicSuffix::Rule::Wildcard
                 8  PublicSuffix::Rule::Exception
                 1  File
                 1  PublicSuffix::List
    
        retained memory by class
        -----------------------------------
            389541  String
            320080  PublicSuffix::Rule::Normal
            229560  Array
             78728  Hash
              2040  PublicSuffix::Rule::Wildcard
               320  PublicSuffix::Rule::Exception
                40  PublicSuffix::List
    
        retained objects by class
        -----------------------------------
              9617  String
              8002  PublicSuffix::Rule::Normal
              1554  Array
                51  PublicSuffix::Rule::Wildcard
                 8  PublicSuffix::Rule::Exception
                 1  Hash
                 1  PublicSuffix::List
    
        Allocated String Report
        -----------------------------------
              1796  "jp"
              1712  ""
               761  "no"
                    ...
    
        Retained String Report
        -----------------------------------
                 2  "aaa"
                 2  "aarp"
                 2  "abarth"
                    ...
    
        $ ruby test/profilers/find_profiler.rb
    
        Total allocated: 31472 bytes (691 objects)
        Total retained:  0 bytes (0 objects)
    
        allocated memory by class
        -----------------------------------
             26640  String
              2840  Array
               584  Hash
               584  RubyVM::Env
               400  Proc
               288  Enumerator::Lazy
                48  Enumerator::Generator
                48  Enumerator::Yielder
                40  PublicSuffix::Rule::Wildcard
    
        allocated objects by class
        -----------------------------------
               666  String
                 5  Array
                 5  Hash
                 5  Proc
                 5  RubyVM::Env
                 2  Enumerator::Lazy
                 1  Enumerator::Generator
                 1  Enumerator::Yielder
                 1  PublicSuffix::Rule::Wildcard
    
        retained memory by class
        -----------------------------------
        NO DATA
    
        retained objects by class
        -----------------------------------
        NO DATA
    
    After
    
        $ ruby test/benchmarks/bm_find.rb
    
                                        user     system      total        real
        NAME_SHORT                  0.370000   0.000000   0.370000 (  0.376614)
        NAME_MEDIUM                 0.480000   0.000000   0.480000 (  0.489633)
        NAME_LONG                   0.590000   0.010000   0.600000 (  0.603704)
        NAME_WILD                   0.570000   0.000000   0.570000 (  0.577077)
        NAME_EXCP                   0.700000   0.010000   0.710000 (  0.709454)
        IAAA                        0.400000   0.000000   0.400000 (  0.406585)
        IZZZ                        0.440000   0.000000   0.440000 (  0.436526)
        PAAA                        0.790000   0.010000   0.800000 (  0.833797)
        PZZZ                        0.740000   0.000000   0.740000 (  0.758879)
        JP                          0.760000   0.010000   0.770000 (  0.777570)
        IT                          0.400000   0.000000   0.400000 (  0.394240)
        COM                         0.400000   0.000000   0.400000 (  0.399312)
    
        $ ruby test/profilers/list_profsize.rb
    
           263,481   PublicSuffix::List size
           263,451   Size of rules
    
        $ ruby test/profilers/initialization_profiler.rb
    
        Total allocated: 6205052 bytes (60280 objects)
        Total retained:  1052326 bytes (16127 objects)
    
        allocated memory by class
        -----------------------------------
           4143744  Hash
           1416148  String
            322440  PublicSuffix::Rule::Entry
            320080  PublicSuffix::Rule::Normal
              2040  PublicSuffix::Rule::Wildcard
               320  PublicSuffix::Rule::Exception
               240  File
                40  PublicSuffix::List
    
        allocated objects by class
        -----------------------------------
             28032  String
             16124  Hash
              8061  PublicSuffix::Rule::Entry
              8002  PublicSuffix::Rule::Normal
                51  PublicSuffix::Rule::Wildcard
                 8  PublicSuffix::Rule::Exception
                 1  File
                 1  PublicSuffix::List
    
        retained memory by class
        -----------------------------------
            403400  Hash
            326446  String
            322440  PublicSuffix::Rule::Entry
                40  PublicSuffix::List
    
        retained objects by class
        -----------------------------------
              8064  String
              8061  PublicSuffix::Rule::Entry
                 1  Hash
                 1  PublicSuffix::List
    
        Retained String Report
        -----------------------------------
                 1  "*.compute.amazonaws.com.cn"
                 1  "*.githubcloudusercontent.com"
                 1  "0.bg"
                    ...
    
        $ ruby test/profilers/find_profiler.rb
    
        Total allocated: 1728 bytes (24 objects)
        Total retained:  0 bytes (0 objects)
    
        allocated memory by class
        -----------------------------------
              1048  Hash
               520  String
                80  Array
                40  PublicSuffix::Rule::Normal
                40  PublicSuffix::Rule::Wildcard
    
        allocated objects by class
        -----------------------------------
                13  String
                 7  Hash
                 2  Array
                 1  PublicSuffix::Rule::Normal
                 1  PublicSuffix::Rule::Wildcard
    
        retained memory by class
        -----------------------------------
        NO DATA
    
        retained objects by class
        -----------------------------------
        NO DATA
    weppos committed Feb 10, 2017
    Configuration menu
    Copy the full SHA
    c45dc94 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2017

  1. Configuration menu
    Copy the full SHA
    7b600f3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request weppos#135 from typeoneerror/hotfix-docs-typo

    [DOCS] corrects param name in List#parse
    weppos committed Mar 25, 2017
    Configuration menu
    Copy the full SHA
    eae246a View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2017

  1. Update list

    weppos committed Apr 10, 2017
    Configuration menu
    Copy the full SHA
    52b2343 View commit details
    Browse the repository at this point in the history
  2. Rubocop 0.48.1 is buggy

    weppos committed Apr 10, 2017
    Configuration menu
    Copy the full SHA
    578737c View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2017

  1. Configuration menu
    Copy the full SHA
    bb12e71 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2017

  1. Create README.md

    weppos committed Jun 10, 2017
    Configuration menu
    Copy the full SHA
    66698da View commit details
    Browse the repository at this point in the history
  2. Merge pull request weppos#140 from pjg/improve-documentation-and-code…

    …-comments
    
    Since by default, the `*` rule is being applied, some code examples were incorrect in code comments.
    
    I've also added strict checking examples to the README.
    weppos committed Jun 10, 2017
    Configuration menu
    Copy the full SHA
    86721b2 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2017

  1. Configuration menu
    Copy the full SHA
    16a502f View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2017

  1. Fix rubocop new preferences

    weppos committed Aug 4, 2017
    Configuration menu
    Copy the full SHA
    6f175d6 View commit details
    Browse the repository at this point in the history
  2. Update definitions

    weppos committed Aug 4, 2017
    Configuration menu
    Copy the full SHA
    97ef80b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    995e9e5 View commit details
    Browse the repository at this point in the history
  4. Release 3.0.0

    weppos committed Aug 4, 2017
    Configuration menu
    Copy the full SHA
    3a8a8c5 View commit details
    Browse the repository at this point in the history
  5. Update Travis config

    weppos committed Aug 4, 2017
    Configuration menu
    Copy the full SHA
    a157c3d View commit details
    Browse the repository at this point in the history
  6. 2.0 is no longer supported

    weppos committed Aug 4, 2017
    Configuration menu
    Copy the full SHA
    dc7702d View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2017

  1. Fix wrong docs

    weppos committed Oct 31, 2017
    Configuration menu
    Copy the full SHA
    03436a8 View commit details
    Browse the repository at this point in the history
  2. Fix Rubocop offenses

    weppos committed Oct 31, 2017
    Configuration menu
    Copy the full SHA
    f1b3142 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2017

  1. Improve performance and avoid allocation.

    Rob Holland committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    ad6a326 View commit details
    Browse the repository at this point in the history
  2. Merge pull request weppos#146 from clearbit/master

    Improve performance and avoid allocation.
    weppos committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    1c6742f View commit details
    Browse the repository at this point in the history
  3. Updated definitions

    weppos committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    8a2baf1 View commit details
    Browse the repository at this point in the history
  4. Changelog for wepposGH-146

    weppos committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    d63f20c View commit details
    Browse the repository at this point in the history
  5. Release 3.0.1

    weppos committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    0c0561d View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2018

  1. Update Rubocop

    weppos committed Feb 12, 2018
    Configuration menu
    Copy the full SHA
    844f898 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    15d1739 View commit details
    Browse the repository at this point in the history
  3. Update definitions

    weppos committed Feb 12, 2018
    Configuration menu
    Copy the full SHA
    da7b20b View commit details
    Browse the repository at this point in the history
  4. Release 3.0.2

    weppos committed Feb 12, 2018
    Configuration menu
    Copy the full SHA
    65ab7c9 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2018

  1. Update docblock

    weppos committed Jun 11, 2018
    Configuration menu
    Copy the full SHA
    8bbd236 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2018

  1. Update .rubocop_defaults.yml (weppos#153)

    Fix error "Error: The `Style/TrailingCommaInLiteral` cop no longer exists. Please use `Style/TrailingCommaInArrayLiteral` and/or `Style/TrailingCommaInHashLiteral` instead."
    jonhue authored and weppos committed Jun 26, 2018
    Configuration menu
    Copy the full SHA
    8841e49 View commit details
    Browse the repository at this point in the history
  2. Fix Rubocop new warnings

    weppos committed Jun 26, 2018
    Configuration menu
    Copy the full SHA
    4556aa4 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2018

  1. Update definitions (weppos#154)

    wcmonty authored and weppos committed Aug 15, 2018
    Configuration menu
    Copy the full SHA
    a9feb70 View commit details
    Browse the repository at this point in the history
  2. Release 3.0.3

    weppos committed Aug 15, 2018
    Configuration menu
    Copy the full SHA
    93aad6a View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2018

  1. Update .travis.yml

    weppos committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    65e7b5f View commit details
    Browse the repository at this point in the history
  2. Switch to CodeCov

    weppos committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    38b89a9 View commit details
    Browse the repository at this point in the history
  3. Fix offenses

    weppos committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    f749c1a View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2019

  1. Fix typo in comment (weppos#159)

    pcai authored and weppos committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    916d013 View commit details
    Browse the repository at this point in the history
  2. Make Travis happy

    weppos committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    f05f156 View commit details
    Browse the repository at this point in the history
  3. Upgrade Bundler

    weppos committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    1fb5578 View commit details
    Browse the repository at this point in the history
  4. Minimum Ruby version is 2.3

    weppos committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    1f10154 View commit details
    Browse the repository at this point in the history
  5. Fix version mismatch

    weppos committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    2803479 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2019

  1. Upgrade to Rubocop 0.70

    weppos committed May 27, 2019
    Configuration menu
    Copy the full SHA
    d3ea96c View commit details
    Browse the repository at this point in the history
  2. Update definitions list (weppos#160)

    GQuirino authored and weppos committed May 27, 2019
    Configuration menu
    Copy the full SHA
    245836e View commit details
    Browse the repository at this point in the history
  3. Release 3.1.0

    weppos committed May 27, 2019
    Configuration menu
    Copy the full SHA
    22ce7d5 View commit details
    Browse the repository at this point in the history
  4. Fix version in README

    weppos committed May 27, 2019
    Configuration menu
    Copy the full SHA
    732a651 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2019

  1. Update PSL

    weppos committed Jun 25, 2019
    Configuration menu
    Copy the full SHA
    34046e3 View commit details
    Browse the repository at this point in the history
  2. Reinstate support to Ruby 2.1 and 2.2

    Closes wepposGH-161, Closes wepposGH-162
    weppos committed Jun 25, 2019
    Configuration menu
    Copy the full SHA
    ae7cf82 View commit details
    Browse the repository at this point in the history
  3. Release 3.1.1

    weppos committed Jun 25, 2019
    Configuration menu
    Copy the full SHA
    ed7c414 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d6e4914 View commit details
    Browse the repository at this point in the history
  5. Release 4.0.0

    weppos committed Jun 25, 2019
    Configuration menu
    Copy the full SHA
    87343b8 View commit details
    Browse the repository at this point in the history
  6. Test Ruby 2.7

    weppos committed Jun 25, 2019
    Configuration menu
    Copy the full SHA
    27d9ff9 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2019

  1. Create FUNDING.yml

    weppos committed Jun 26, 2019
    Configuration menu
    Copy the full SHA
    3648a1c View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2019

  1. Add Tidelift link

    weppos committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    da7f5a8 View commit details
    Browse the repository at this point in the history
  2. Updated definitions

    weppos committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    76bb080 View commit details
    Browse the repository at this point in the history
  3. Release 4.0.1

    weppos committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    1a17386 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2019

  1. Update CHANGELOG.md

    weppos committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    e03a267 View commit details
    Browse the repository at this point in the history
  2. Create SECURITY.md

    weppos committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    894cceb View commit details
    Browse the repository at this point in the history
  3. Update README.md

    weppos committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    3d6b74c View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2019

  1. Release 4.0.2

    weppos committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    626883d View commit details
    Browse the repository at this point in the history
  2. Update rubocop

    weppos committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    af3244f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ec6bc1d View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2020

  1. Update .travis.yml

    weppos committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    d076009 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bac3a1d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    41f54ea View commit details
    Browse the repository at this point in the history
  4. Welcome 2020

    weppos committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    da650c8 View commit details
    Browse the repository at this point in the history
  5. Release 4.0.3

    weppos committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    84fc0d1 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2020

  1. Configuration menu
    Copy the full SHA
    c65e0e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c14c3ed View commit details
    Browse the repository at this point in the history
  3. Update definitions

    weppos committed Jan 31, 2020
    Configuration menu
    Copy the full SHA
    9947cca View commit details
    Browse the repository at this point in the history
  4. Update .gitignore

    weppos committed Jan 31, 2020
    Configuration menu
    Copy the full SHA
    369b177 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2020

  1. Update README.md

    weppos committed Feb 15, 2020
    Configuration menu
    Copy the full SHA
    b8f8145 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    weppos committed Feb 15, 2020
    Configuration menu
    Copy the full SHA
    929532d View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2020

  1. Update SECURITY.md

    weppos committed Feb 16, 2020
    Configuration menu
    Copy the full SHA
    16695da View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2020

  1. Update rubocop requirement from 0.79.0 to 0.80.0 (weppos#169)

    Updates the requirements on [rubocop](https://github.com/rubocop-hq/rubocop) to permit the latest version.
    - [Release notes](https://github.com/rubocop-hq/rubocop/releases)
    - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md)
    - [Commits](rubocop/rubocop@v0.79.0...v0.80.0)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    dependabot-preview[bot] committed Feb 19, 2020
    Configuration menu
    Copy the full SHA
    ee03cb4 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2020

  1. Update rubocop requirement from 0.80.0 to 0.80.1 (weppos#170)

    Updates the requirements on [rubocop](https://github.com/rubocop-hq/rubocop) to permit the latest version.
    - [Release notes](https://github.com/rubocop-hq/rubocop/releases)
    - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md)
    - [Commits](rubocop/rubocop@v0.80.0...v0.80.1)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    dependabot-preview[bot] committed Mar 3, 2020
    Configuration menu
    Copy the full SHA
    c6dcdf6 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2020

  1. Update to Rubocop 0.81.0

    weppos committed Apr 5, 2020
    Configuration menu
    Copy the full SHA
    da6e504 View commit details
    Browse the repository at this point in the history
  2. Update definitions

    weppos committed Apr 5, 2020
    Configuration menu
    Copy the full SHA
    167552c View commit details
    Browse the repository at this point in the history
  3. Release 4.0.3

    weppos committed Apr 5, 2020
    Configuration menu
    Copy the full SHA
    a98db48 View commit details
    Browse the repository at this point in the history
  4. Update Travis badge link

    weppos committed Apr 5, 2020
    Configuration menu
    Copy the full SHA
    8d034e3 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2020

  1. Create codecov.yml

    weppos committed Apr 7, 2020
    Configuration menu
    Copy the full SHA
    6f650da View commit details
    Browse the repository at this point in the history

Commits on May 9, 2020

  1. Update definitions

    weppos committed May 9, 2020
    Configuration menu
    Copy the full SHA
    6465387 View commit details
    Browse the repository at this point in the history
  2. Add project metadata to the gemspec (weppos#172)

    As per https://guides.rubygems.org/specification-reference/#metadata,
    add metadata to the gemspec file. This'll allow people to more easily
    access the source code, raise issues and read the changelog. These
    bug_tracker_uri, changelog_uri, documentation_uri, homepage_uri and
    source_code_uri links will appear on the rubygems page at
    https://rubygems.org/gems/public_suffix and be available via the
    rubygems API after the next release.
    orien committed May 9, 2020
    Configuration menu
    Copy the full SHA
    db463e5 View commit details
    Browse the repository at this point in the history
  3. Add CI workflow

    weppos committed May 9, 2020
    Configuration menu
    Copy the full SHA
    8eb07f7 View commit details
    Browse the repository at this point in the history
  4. Update tests.yml

    weppos committed May 9, 2020
    Configuration menu
    Copy the full SHA
    8ce9f8c View commit details
    Browse the repository at this point in the history
  5. Update tests.yml

    weppos committed May 9, 2020
    Configuration menu
    Copy the full SHA
    4fc6126 View commit details
    Browse the repository at this point in the history
  6. Release 4.0.5

    weppos committed May 9, 2020
    Configuration menu
    Copy the full SHA
    f0cc99e View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2020

  1. Configuration menu
    Copy the full SHA
    c101bd5 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2020

  1. Updated definitions

    weppos committed Sep 2, 2020
    Configuration menu
    Copy the full SHA
    89c74b0 View commit details
    Browse the repository at this point in the history
  2. Update rubocop

    weppos committed Sep 2, 2020
    Configuration menu
    Copy the full SHA
    c61d25e View commit details
    Browse the repository at this point in the history
  3. Ignore rubocop cop

    weppos committed Sep 2, 2020
    Configuration menu
    Copy the full SHA
    e3eedfd View commit details
    Browse the repository at this point in the history
  4. Last release with 2.3

    Prepare to remove 2.3. Some depds already no longer support it.
    This version will support it (without tests), then I'll prepare
    for a major bump and 2.3 removal.
    weppos committed Sep 2, 2020
    Configuration menu
    Copy the full SHA
    a302119 View commit details
    Browse the repository at this point in the history
  5. Release 4.0.6

    weppos committed Sep 2, 2020
    Configuration menu
    Copy the full SHA
    2e0bee3 View commit details
    Browse the repository at this point in the history
  6. Add definitions section to README.md (weppos#176)

    There are several acronyms used throughout this README file that would benefit from more information on them to put the code example and usage into better context, and allow a developer to just stay on this page without having to further search for these definitions.  A section at the bottom has been added for definitions.
    cseeman committed Sep 2, 2020
    Configuration menu
    Copy the full SHA
    0898e5a View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2020

  1. Configuration menu
    Copy the full SHA
    ba72b15 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6fa9751 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2021

  1. Create Dependabot config file (weppos#178)

    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    Co-authored-by: Simone Carletti <weppos@weppos.net>
    dependabot-preview[bot] and weppos committed Jan 6, 2021
    Configuration menu
    Copy the full SHA
    d6c251a View commit details
    Browse the repository at this point in the history
  2. Use instance_of? instead of comparing classes

    Simone Carletti committed Jan 6, 2021
    Configuration menu
    Copy the full SHA
    c4c3012 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2021

  1. Disable Coverage

    weppos committed Apr 30, 2021
    Configuration menu
    Copy the full SHA
    db76aea View commit details
    Browse the repository at this point in the history
  2. Test with Ruby 3

    weppos committed Apr 30, 2021
    Configuration menu
    Copy the full SHA
    f03cec8 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2021

  1. CI: Remove EOL versions

    Simone Carletti committed Dec 3, 2021
    Configuration menu
    Copy the full SHA
    c50a052 View commit details
    Browse the repository at this point in the history
  2. Format

    Simone Carletti committed Dec 3, 2021
    Configuration menu
    Copy the full SHA
    47bee57 View commit details
    Browse the repository at this point in the history
  3. Replace Travis with GitHub Actions

    Simone Carletti committed Dec 3, 2021
    Configuration menu
    Copy the full SHA
    450825e View commit details
    Browse the repository at this point in the history
  4. Delete .travis.yml

    Simone Carletti committed Dec 3, 2021
    Configuration menu
    Copy the full SHA
    da31476 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2022

  1. Configuration menu
    Copy the full SHA
    405c291 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2022

  1. Add release workflow

    weppos committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    434f0bd View commit details
    Browse the repository at this point in the history
  2. Fixed YARD rake task

    weppos committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    b741b4f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f153a19 View commit details
    Browse the repository at this point in the history
  4. Update definitions

    weppos committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    0028a2f View commit details
    Browse the repository at this point in the history
  5. Update year

    weppos committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    cfd3381 View commit details
    Browse the repository at this point in the history
  6. Release 4.0.7

    weppos committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    071ba49 View commit details
    Browse the repository at this point in the history
  7. CI: use bundler-cache (weppos#187)

    This enables the ruby/setup-ruby Action's caching system.
    olleolleolle committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    f5e7254 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2022

  1. Update tests.yml

    weppos committed Jul 14, 2022
    Configuration menu
    Copy the full SHA
    2396b08 View commit details
    Browse the repository at this point in the history
  2. Update tests.yml

    weppos committed Jul 14, 2022
    Configuration menu
    Copy the full SHA
    fb74b44 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2022

  1. Setup autoupdate workflow

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    7e2008e View commit details
    Browse the repository at this point in the history
  2. Update release.yml

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    a4a0f5a View commit details
    Browse the repository at this point in the history
  3. Update psl-update.yml

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    ff46557 View commit details
    Browse the repository at this point in the history
  4. Update psl-update.yml

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    b2e3932 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    013e6d1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bf4d0f8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    15d8497 View commit details
    Browse the repository at this point in the history
  8. Updated list from source (weppos#193)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    aa8ab9a View commit details
    Browse the repository at this point in the history
  9. Update rubocop

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    5e3379b View commit details
    Browse the repository at this point in the history
  10. Update workflowa

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    0a0ad7d View commit details
    Browse the repository at this point in the history
  11. Update tests.yml

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    4017771 View commit details
    Browse the repository at this point in the history
  12. Revert "Update rubocop"

    This reverts commit 5e3379b.
    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    da5bbc7 View commit details
    Browse the repository at this point in the history
  13. Restore Rubocop

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    3696c1c View commit details
    Browse the repository at this point in the history
  14. Upgrade Rubocop

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    c36b40c View commit details
    Browse the repository at this point in the history
  15. Upgrade Rubocop to 1.x

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    585e678 View commit details
    Browse the repository at this point in the history
  16. Release 5.0.0

    weppos committed Jul 24, 2022
    Configuration menu
    Copy the full SHA
    3e32063 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2022

  1. Updated list from source (weppos#194)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jul 29, 2022
    Configuration menu
    Copy the full SHA
    a9612d1 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2022

  1. Updated list from source (weppos#195)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Aug 6, 2022
    Configuration menu
    Copy the full SHA
    94262be View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2022

  1. Updated list from source (weppos#196)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Aug 16, 2022
    Configuration menu
    Copy the full SHA
    2d0c186 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2022

  1. Update dependabot.yml

    weppos committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    d4077ae View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2022

  1. Updated list from source (weppos#198)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Sep 2, 2022
    Configuration menu
    Copy the full SHA
    c62a0c8 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2022

  1. Updated list from source (weppos#199)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Sep 4, 2022
    Configuration menu
    Copy the full SHA
    f86639f View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2022

  1. Updated list from source (weppos#200)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Sep 16, 2022
    Configuration menu
    Copy the full SHA
    c101e0b View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2022

  1. Updated list from source (weppos#201)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    4ebb6ea View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2022

  1. Updated list from source (weppos#202)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    c495417 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2022

  1. Updated list from source (weppos#203)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    c870183 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2022

  1. Updated list from source (weppos#204)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Oct 8, 2022
    Configuration menu
    Copy the full SHA
    02b372a View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. Updated list from source (weppos#205)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    dae6552 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2022

  1. Updated list from source (weppos#206)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Oct 13, 2022
    Configuration menu
    Copy the full SHA
    a3c6422 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2022

  1. Updated list from source (weppos#207)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    3dc11d8 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2022

  1. Updated list from source (weppos#208)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Oct 16, 2022
    Configuration menu
    Copy the full SHA
    2f606fd View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2022

  1. Updated list from source (weppos#209)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Oct 21, 2022
    Configuration menu
    Copy the full SHA
    7fc5e5f View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2022

  1. Updated list from source (weppos#210)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    aac50a4 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2022

  1. Updated list from source (weppos#211)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    b88102c View commit details
    Browse the repository at this point in the history
  2. Lock mocha dependency

    Wait until issue freerange/mocha#581 is addressed.
    weppos committed Nov 3, 2022
    Configuration menu
    Copy the full SHA
    d002043 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2022

  1. Update mocha requirement from ~> 1.16.0 to ~> 2.0.1 (weppos#212)

    Updates the requirements on [mocha](https://github.com/freerange/mocha) to permit the latest version.
    - [Release notes](https://github.com/freerange/mocha/releases)
    - [Changelog](https://github.com/freerange/mocha/blob/main/RELEASE.md)
    - [Commits](freerange/mocha@v1.16.0...v2.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: mocha
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 4, 2022
    Configuration menu
    Copy the full SHA
    dce8d77 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2022

  1. Updated list from source (weppos#213)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 5, 2022
    Configuration menu
    Copy the full SHA
    3e89be0 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2022

  1. Updated list from source (weppos#214)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 11, 2022
    Configuration menu
    Copy the full SHA
    b847179 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2022

  1. Bump cadwallion/publish-rubygems-action (weppos#215)

    Bumps [cadwallion/publish-rubygems-action](https://github.com/cadwallion/publish-rubygems-action) from 8f9e0538302643309e4e43bf48cd34173ca48cfc to d9474d9633f4674e59afb0c343f2dafe25181328.
    - [Release notes](https://github.com/cadwallion/publish-rubygems-action/releases)
    - [Commits](cadwallion/publish-rubygems-action@8f9e053...d9474d9)
    
    ---
    updated-dependencies:
    - dependency-name: cadwallion/publish-rubygems-action
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 15, 2022
    Configuration menu
    Copy the full SHA
    126f555 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2022

  1. Updated list from source (weppos#216)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 16, 2022
    Configuration menu
    Copy the full SHA
    5b8a29e View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2022

  1. Updated list from source (weppos#217)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    0432e07 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2022

  1. Updated list from source (weppos#219)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 24, 2022
    Configuration menu
    Copy the full SHA
    e237cf5 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2022

  1. Updated list from source (weppos#220)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 30, 2022
    Configuration menu
    Copy the full SHA
    f4daa1a View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2022

  1. Release 5.0.1

    weppos committed Dec 7, 2022
    Configuration menu
    Copy the full SHA
    8985740 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2022

  1. Updated list from source (weppos#222)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Dec 9, 2022
    Configuration menu
    Copy the full SHA
    3fe4612 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2023

  1. Configuration menu
    Copy the full SHA
    bc53ab7 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2023

  1. Updated list from source (weppos#224)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jan 31, 2023
    Configuration menu
    Copy the full SHA
    668bda5 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2023

  1. Updated list from source (weppos#225)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 1, 2023
    Configuration menu
    Copy the full SHA
    3f811b3 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2023

  1. Updated list from source (weppos#226)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 9, 2023
    Configuration menu
    Copy the full SHA
    69a78ae View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2023

  1. Updated list from source (weppos#227)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 11, 2023
    Configuration menu
    Copy the full SHA
    d9d921e View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2023

  1. Updated list from source (weppos#228)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 20, 2023
    Configuration menu
    Copy the full SHA
    f0f0ac6 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2023

  1. Updated list from source (weppos#229)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 23, 2023
    Configuration menu
    Copy the full SHA
    bb3cbc4 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2023

  1. Updated list from source (weppos#231)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 27, 2023
    Configuration menu
    Copy the full SHA
    f332e64 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2023

  1. Updated list from source (weppos#232)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    33daaef View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2023

  1. Updated list from source (weppos#233)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Mar 9, 2023
    Configuration menu
    Copy the full SHA
    5af597a View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2023

  1. Updated list from source (weppos#235)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    207e29b View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2023

  1. Updated list from source (weppos#236)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Apr 12, 2023
    Configuration menu
    Copy the full SHA
    c3671ed View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2023

  1. Updated list from source (weppos#238)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Apr 16, 2023
    Configuration menu
    Copy the full SHA
    5919f4b View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2023

  1. Updated list from source (weppos#239)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Apr 27, 2023
    Configuration menu
    Copy the full SHA
    f8d9f8f View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2023

  1. Bump peter-evans/create-pull-request from 4 to 5 (weppos#237)

    Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 4 to 5.
    - [Release notes](https://github.com/peter-evans/create-pull-request/releases)
    - [Commits](peter-evans/create-pull-request@v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: peter-evans/create-pull-request
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Apr 28, 2023
    Configuration menu
    Copy the full SHA
    907df69 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2023

  1. Updated list from source (weppos#240)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed May 5, 2023
    Configuration menu
    Copy the full SHA
    cdb1cd2 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2023

  1. Configuration menu
    Copy the full SHA
    37dac97 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2023

  1. Updated list from source (weppos#241)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jun 8, 2023
    Configuration menu
    Copy the full SHA
    3d5b07e View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2023

  1. Updated list from source (weppos#242)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jun 12, 2023
    Configuration menu
    Copy the full SHA
    baa3784 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2023

  1. Updated list from source (weppos#243)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jun 14, 2023
    Configuration menu
    Copy the full SHA
    1dc447d View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2023

  1. Updated list from source (weppos#244)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jun 15, 2023
    Configuration menu
    Copy the full SHA
    76e85e0 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2023

  1. Updated list from source (weppos#245)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jun 20, 2023
    Configuration menu
    Copy the full SHA
    3cc407c View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2023

  1. Updated list from source (weppos#247)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jul 1, 2023
    Configuration menu
    Copy the full SHA
    58a964e View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2023

  1. Updated list from source (weppos#248)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jul 3, 2023
    Configuration menu
    Copy the full SHA
    d673b2a View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2023

  1. Updated list from source (weppos#249)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    2b46c08 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. Update year

    weppos committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    fe724c2 View commit details
    Browse the repository at this point in the history
  2. Release 5.0.2

    weppos committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    d5739ad View commit details
    Browse the repository at this point in the history
  3. Fix Ruby release workflow

    weppos committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    0b06867 View commit details
    Browse the repository at this point in the history
  4. Release 5.0.3

    weppos committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    1ac1ae4 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2023

  1. Update FUNDING.yml

    weppos committed Jul 12, 2023
    Configuration menu
    Copy the full SHA
    6e1d94c View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2023

  1. Updated list from source (weppos#250)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    57e4d81 View commit details
    Browse the repository at this point in the history
  2. Fix spacing

    weppos committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    00a8ec3 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2023

  1. Update mocha requirement from ~> 2.0.1 to ~> 2.1.0 (weppos#251)

    Updates the requirements on [mocha](https://github.com/freerange/mocha) to permit the latest version.
    - [Changelog](https://github.com/freerange/mocha/blob/main/RELEASE.md)
    - [Commits](freerange/mocha@v2.0.1...v2.1.0)
    
    ---
    updated-dependencies:
    - dependency-name: mocha
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Jul 28, 2023
    Configuration menu
    Copy the full SHA
    462b680 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2023

  1. Updated list from source (weppos#252)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jul 30, 2023
    Configuration menu
    Copy the full SHA
    66e252d View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

  1. Updated list from source (weppos#253)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    650faae View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2023

  1. Updated list from source (weppos#254)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Aug 6, 2023
    Configuration menu
    Copy the full SHA
    48d4759 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Updated list from source (weppos#255)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    9e50afb View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2023

  1. Updated list from source (weppos#256)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Aug 25, 2023
    Configuration menu
    Copy the full SHA
    251ae70 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2023

  1. Updated list from source (weppos#257)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Aug 27, 2023
    Configuration menu
    Copy the full SHA
    3500941 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

  1. Reduce gem size (weppos#258)

    The current published gem includes test files or build files that are actually unneeded.
    This change removes such files from a published gem.
    
    In addition, this removes `test_files` from the gemspec since it is no longer supported.
    See https://guides.rubygems.org/specification-reference/
    
    Verification:
    
    ```console
    $ bundle exec rake build && gem unpack pkg/*.gem
    public_suffix 5.0.3 built to pkg/public_suffix-5.0.3.gem.
    Unpacked gem: '/Users/masafumi.koba/git/ybiquitous/publicsuffix-ruby/public_suffix-5.0.3'
    
    $ tree public_suffix-*
    public_suffix-5.0.3/
    ├── .yardopts
    ├── 2.0-Upgrade.md
    ├── CHANGELOG.md
    ├── LICENSE.txt
    ├── README.md
    ├── SECURITY.md
    ├── data/
    │   └── list.txt
    └── lib/
        ├── public_suffix/
        │   ├── domain.rb
        │   ├── errors.rb
        │   ├── list.rb
        │   ├── rule.rb
        │   └── version.rb
        └── public_suffix.rb
    
    4 directories, 13 files
    ```
    ybiquitous committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    4883fbd View commit details
    Browse the repository at this point in the history
  2. Update SECURITY.md

    weppos committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    b0bde49 View commit details
    Browse the repository at this point in the history
  3. Update SECURITY.md

    weppos committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    e05b7a2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2a84a64 View commit details
    Browse the repository at this point in the history
  5. CHANGELOG for wepposGH-259

    weppos committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    26e0fee View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2023

  1. Bump actions/checkout from 3 to 4 (weppos#260)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Sep 5, 2023
    Configuration menu
    Copy the full SHA
    0616990 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2023

  1. Updated list from source (weppos#261)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    7729825 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2023

  1. Updated list from source (weppos#262)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    892f94d View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2023

  1. Updated list from source (weppos#263)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Sep 26, 2023
    Configuration menu
    Copy the full SHA
    8eda272 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2023

  1. Updated list from source (weppos#264)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Oct 2, 2023
    Configuration menu
    Copy the full SHA
    df92b8c View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Updated list from source (weppos#266)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    07ddcab View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2023

  1. Updated list from source (weppos#267)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 4, 2023
    Configuration menu
    Copy the full SHA
    df38193 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Updated list from source (weppos#269)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    d8b853a View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Release 5.0.4

    weppos committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    a311826 View commit details
    Browse the repository at this point in the history
  2. Update release.yml

    weppos committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    a86b1e5 View commit details
    Browse the repository at this point in the history
  3. Update release.yml

    weppos committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    d500f07 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2023

  1. Updated list from source (weppos#270)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    30639a3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b57b9e0 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Updated list from source (weppos#272)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    1a707b3 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Updated list from source (weppos#273)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    0bdaf0f View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2023

  1. Updated list from source (weppos#274)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    3a60e5e View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Updated list from source (weppos#275)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    26d0eb9 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2024

  1. Updated list from source (weppos#276)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jan 8, 2024
    Configuration menu
    Copy the full SHA
    74189a3 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. Updated list from source (weppos#277)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    d7bd1be View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Updated list from source (weppos#278)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    65c71b2 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Updated list from source (weppos#279)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jan 29, 2024
    Configuration menu
    Copy the full SHA
    629f05c View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. Updated list from source (weppos#280)

    Co-authored-by: weppos <weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Jan 31, 2024
    Configuration menu
    Copy the full SHA
    94662e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ada7d78 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2024

  1. Bump peter-evans/create-pull-request from 5 to 6 (weppos#282)

    Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 5 to 6.
    - [Release notes](https://github.com/peter-evans/create-pull-request/releases)
    - [Commits](peter-evans/create-pull-request@v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: peter-evans/create-pull-request
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    30b3c88 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. Updated list from source (weppos#283)

    Co-authored-by: weppos <5387+weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    6a3e271 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Updated list from source (weppos#284)

    Co-authored-by: weppos <5387+weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    149a844 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2024

  1. Updated list from source (weppos#285)

    Co-authored-by: weppos <5387+weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 6, 2024
    Configuration menu
    Copy the full SHA
    4fc38de View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. Updated list from source (weppos#286)

    Co-authored-by: weppos <5387+weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    a245df3 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2024

  1. Updated list from source (weppos#287)

    Co-authored-by: weppos <5387+weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    42cad0a View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2024

  1. Updated list from source (weppos#288)

    Co-authored-by: weppos <5387+weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    f8555d3 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Updated list from source (weppos#289)

    Co-authored-by: weppos <5387+weppos@users.noreply.github.com>
    github-actions[bot] and weppos committed Mar 27, 2024
    Configuration menu
    Copy the full SHA
    a82ae30 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. Configuration menu
    Copy the full SHA
    185a93d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b357766 View commit details
    Browse the repository at this point in the history