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

fix(deps): update non-major dependencies #8090

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 26, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@kong-ui-public/spec-renderer (source) 2.3.4 -> 2.3.8 age adoption passing confidence
@kong/kongponents (source) 9.12.1 -> 9.14.6 age adoption passing confidence
@segment/analytics-next (source) 1.75.0 -> 1.76.0 age adoption passing confidence
activesupport (source, changelog) 7.2.1.1 -> 7.2.2 age adoption passing confidence
algoliasearch 5.9.1 -> 5.12.0 age adoption passing confidence
execa 9.4.1 -> 9.5.1 age adoption passing confidence
liquid-c (source) 4.0.1 -> 4.2.0 age adoption passing confidence
netlify-cli 17.37.1 -> 17.37.2 age adoption passing confidence
postcss-custom-properties (source) 14.0.2 -> 14.0.3 age adoption passing confidence
puppeteer (source) 23.6.0 -> 23.6.1 age adoption passing confidence
rubocop (source, changelog) 1.67.0 -> 1.68.0 age adoption passing confidence
ruby-lsp 0.17.16 -> 0.21.1 age adoption passing confidence
sass 1.80.3 -> 1.80.5 age adoption passing confidence
vite (source) 5.4.9 -> 5.4.10 age adoption passing confidence
vue-instantsearch 4.19.7 -> 4.19.9 age adoption passing confidence

Release Notes

Kong/public-ui-components (@​kong-ui-public/spec-renderer)

v2.3.8

Compare Source

Note: Version bump only for package @​kong-ui-public/spec-renderer

v2.3.7

Compare Source

Bug Fixes
  • deps: update all non-major dependencies with stable version (#​1742) (105e0f2)

v2.3.6

Compare Source

Note: Version bump only for package @​kong-ui-public/spec-renderer

v2.3.5

Compare Source

Note: Version bump only for package @​kong-ui-public/spec-renderer

Kong/kongponents (@​kong/kongponents)

v9.14.6

Compare Source

Bug Fixes
  • kselect: add item-creation-validator prop [KHCP-13862] (#​2485) (bf31855)

v9.14.5

Compare Source

Bug Fixes
  • kselect: don't emit query-change on select [KHCP-13895] (#​2493) (87b11ea)

v9.14.4

Compare Source

Bug Fixes
  • kbutton: pass to as long as it's a router-link [KM-644] (#​2491) (cb1ff3b)

v9.14.3

Compare Source

Bug Fixes

v9.14.2

Compare Source

Bug Fixes

v9.14.1

Compare Source

Bug Fixes

v9.14.0

Compare Source

Features

9.13.1 (2024-10-25)

Bug Fixes

v9.13.1

Compare Source

Bug Fixes

v9.13.0

Compare Source

Features

9.12.1 (2024-10-17)

Bug Fixes
segmentio/analytics-next (@​segment/analytics-next)

v1.76.0

Compare Source

Minor Changes
rails/rails (activesupport)

v7.2.2: 7.2.2

Compare Source

Active Support

  • Include options when instrumenting ActiveSupport::Cache::Store#delete and ActiveSupport::Cache::Store#delete_multi.

    Adam Renberg Tamm

  • Print test names when running rails test -v for parallel tests.

    John Hawthorn, Abeid Ahmed

Active Model

  • Fix regression in alias_attribute to work with user defined methods.

    alias_attribute would wrongly assume the attribute accessor was generated by Active Model.

    class Person
      include ActiveModel::AttributeMethods
    
      define_attribute_methods :name
      attr_accessor :name
    
      alias_attribute :full_name, :name
    end
    
    person.full_name # => NoMethodError: undefined method `attribute' for an instance of Person

    Jean Boussier

Active Record

  • Fix support for query_cache: false in database.yml.

    query_cache: false would no longer entirely disable the Active Record query cache.

    zzak

  • Set .attributes_for_inspect to :all by default.

    For new applications it is set to [:id] in config/environment/production.rb.

    In the console all the attributes are always shown.

    Andrew Novoselac

  • PG::UnableToSend: no connection to the server is now retryable as a connection-related exception

    Kazuma Watanabe

  • Fix marshalling of unsaved associated records in 7.1 format.

    The 7.1 format would only marshal associated records if the association was loaded.
    But associations that would only contain unsaved records would be skipped.

    Jean Boussier

  • Fix incorrect SQL query when passing an empty hash to ActiveRecord::Base.insert.

    David Stosik

  • Allow to save records with polymorphic join tables that have inverse_of
    specified.

    Markus Doits

  • Fix association scopes applying on the incorrect join when using a polymorphic has_many through:.

    Joshua Young

  • Fix dependent: :destroy for bi-directional has one through association.

    Fixes #​50948.

    class Left < ActiveRecord::Base
      has_one :middle, dependent: :destroy
      has_one :right, through: :middle
    end
    
    class Middle < ActiveRecord::Base
      belongs_to :left, dependent: :destroy
      belongs_to :right, dependent: :destroy
    end
    
    class Right < ActiveRecord::Base
      has_one :middle, dependent: :destroy
      has_one :left, through: :middle
    end

    In the above example left.destroy wouldn't destroy its associated Right
    record.

    Andy Stewart

  • Properly handle lazily pinned connection pools.

    Fixes #​53147.

    When using transactional fixtures with system tests to similar tools
    such as capybara, it could happen that a connection end up pinned by the
    server thread rather than the test thread, causing
    "Cannot expire connection, it is owned by a different thread" errors.

    Jean Boussier

  • Fix ActiveRecord::Base.with to accept more than two sub queries.

    Fixes #​53110.

    User.with(foo: [User.select(:id), User.select(:id), User.select(:id)]).to_sql
    undefined method `union' for an instance of Arel::Nodes::UnionAll (NoMethodError)

    The above now works as expected.

    fatkodima

  • Properly release pinned connections with non joinable connections.

    Fixes #​52973

    When running system tests with transactional fixtures on, it could happen that
    the connection leased by the Puma thread wouldn't be properly released back to the pool,
    causing "Cannot expire connection, it is owned by a different thread" errors in later tests.

    Jean Boussier

  • Make Float distinguish between float4 and float8 in PostgreSQL.

    Fixes #​52742

    Ryota Kitazawa, Takayuki Nagatomi

  • Fix an issue where .left_outer_joins used with multiple associations that have
    the same child association but different parents does not join all parents.

    Previously, using .left_outer_joins with the same child association would only join one of the parents.

    Now it will correctly join both parents.

    Fixes #​41498.

    Garrett Blehm

  • Ensure ActiveRecord::Encryption.config is always ready before access.

    Previously, ActiveRecord::Encryption configuration was deferred until ActiveRecord::Base
    was loaded. Therefore, accessing ActiveRecord::Encryption.config properties before
    ActiveRecord::Base was loaded would give incorrect results.

    ActiveRecord::Encryption now has its own loading hook so that its configuration is set as
    soon as needed.

    When ActiveRecord::Base is loaded, even lazily, it in turn triggers the loading of
    ActiveRecord::Encryption, thus preserving the original behavior of having its config ready
    before any use of ActiveRecord::Base.

    Maxime Réty

  • Add TimeZoneConverter#== method, so objects will be properly compared by
    their type, scale, limit & precision.

    Address #​52699.

    Ruy Rocha

Action View

  • No changes.

Action Pack

  • Fix non-GET requests not updating cookies in ActionController::TestCase.

    Jon Moss, Hartley McGuire

Active Job

  • No changes.

Action Mailer

  • No changes.

Action Cable

  • No changes.

Active Storage

  • No changes.

Action Mailbox

  • No changes.

Action Text

  • No changes.

Railties

  • No changes.

Guides

  • No changes.

v7.2.1.2: 7.2.1.2

Compare Source

Active Support

  • No changes.

Active Model

  • No changes.

Active Record

  • No changes.

Action View

  • No changes.

Action Pack

  • No changes.

Active Job

  • No changes.

Action Mailer

  • Fix NoMethodError in block_format helper

    Michael Leimstaedtner

Action Cable

  • No changes.

Active Storage

  • No changes.

Action Mailbox

  • No changes.

Action Text

  • No changes.

Railties

  • No changes.

Guides

  • No changes.
algolia/algoliasearch-client-javascript (algoliasearch)

v5.12.0

Compare Source

v5.11.0

Compare Source

v5.10.2

Compare Source

v5.10.1

Compare Source

v5.10.0

Compare Source

sindresorhus/execa (execa)

v9.5.1

Compare Source

v9.5.0

Compare Source

netlify/cli (netlify-cli)

v17.37.2

Compare Source

Bug Fixes
csstools/postcss-plugins (postcss-custom-properties)

v14.0.3

Compare Source

October 23, 2024

puppeteer/puppeteer (puppeteer)

v23.6.1

Compare Source

rubocop/rubocop (rubocop)

v1.68.0

Compare Source

New features
Bug fixes
  • #​13401: Fix a false negative for Style/RedundantLineContinuation when there is a line continuation at the EOF. ([@​koic][])
  • #​13368: Fix an incorrect autocorrect for Naming/BlockForwarding with Style/ExplicitBlockArgument. ([@​koic][])
  • #​13391: Fix deserialization of unknown encoding offenses. ([@​earlopain][])
  • #​13348: Ensure Style/BlockDelimiters autocorrection does not move other code between the block and comment. ([@​dvandersluis][])
  • #​13382: Fix an error during error handling for custom ruby extractors when the extractor is a class. ([@​earlopain][])
  • #​13309: Fix a false negative for Lint/UselessAssignment cop when there is a useless assignment followed by a block. ([@​pCosta99][])
  • #​13255: Fix false negatives for Style/MapIntoArray when using non-splatted arguments. ([@​vlad-pisanov][])
  • #​13356: Fix a false positive for Layout/SpaceBeforeBrackets when there is a dot before []=. ([@​earlopain][])
  • #​13365: Fix false positives for Lint/SafeNavigationConsistency when using safe navigation on the LHS with operator method on the RHS of &&. ([@​koic][])
  • #​13390: Fix false positives for Style/GuardClause when using a local variable assigned in a conditional expression in a branch. ([@​koic][])
  • #​13337: Fix false positives for Style/RedundantLineContinuation when required line continuations for && is used with an assignment after a line break. ([@​koic][])
  • #​13387: Fix false positives in Style/RedundantParentheses when parentheses are used around method chain with do...end block in keyword argument. ([@​koic][])
  • #​13341: Fix false positives for Lint/SafeNavigationChain when a safe navigation operator is used with a method call as the RHS operand of && for the same receiver. ([@​koic][])
  • #​13324: Fix --disable-uncorrectable to not insert a comment inside a string continuation. ([@​dvandersluis][])
  • #​13364: Fix incorrect autocorrect with Lint/UselessAssignment a multiple assignment or for contains an inner assignment. ([@​dvandersluis][])
  • #​13353: Fix an incorrect autocorrect for Style/BlockDelimiters when EnforcedStyle: semantic is set and used with Layout/SpaceInsideBlockBraces. ([@​koic][])
  • #​13361: Fix false positives for Style/RedundantInterpolationUnfreeze and Style/RedundantFreeze when strings contain interpolated global, instance, and class variables. ([@​vlad-pisanov][])
  • #​13343: Prevent Layout/LineLength from breaking up a method with arguments chained onto a heredoc delimiter. ([@​dvandersluis][])
  • #​13374: Return exit code 0 with --display-only-correctable and --display-only-safe-correctable when no offenses are displayed. ([@​dvandersluis][])
  • #​13193: Fix false positive in Style/MultipleComparison when ComparisonsThreshold exceeds 2. ([@​fatkodima][],[@​vlad-pisanov][])
  • #​13325: Fix an incorrect autocorrect for Lint/NonAtomicFileOperation when using a postfix unless for file existence checks before creating a file, in cases with Dir.mkdir. ([@​kotaro0522][])
  • #​13397: Update PercentLiteralCorrector to be able to write pairs of delimiters without excessive escaping. ([@​dvandersluis][])
  • #​13336: Update Style/SafeNavigation to not autocorrect if the RHS of an and node is an or node. ([@​dvandersluis][])
  • #​13378: When removing parens in Style/TernaryParentheses with a send node condition, ensure its arguments are parenthesized. ([@​dvandersluis][])
Changes
  • #​13347: When running rubocop -V, show the analysis Ruby version of the current directory. ([@​earlopain][])
Shopify/ruby-lsp (ruby-lsp)

v0.21.1

v0.21.1

🐛 Bug Fixes

v0.21.0

v0.21.0

🚧 Breaking Changes

✨ Enhancements

🐛 Bug Fixes

📦 Other Changes

v0.20.1

v0.20.1

✨ Enhancements

🐛 Bug Fixes

v0.20.0

v0.20.0

🚧 Breaking Changes

✨ Enhancements

📦 Other Changes

v0.19.1

v0.19.1

✨ Enhancements

🐛 Bug Fixes

v0.19.0

v0.19.0

🚧 Breaking Changes

✨ Enhancements

🐛 Bug Fixes

📦 Other Changes

v0.18.4

v0.18.4

✨ Enhancements

🐛 Bug Fixes

📦 Other Changes

v0.18.3

v0.18.3

🐛 Bug Fixes

📦 Other Changes

v0.18.2

v0.18.2

✨ Enhancements

🐛 Bug Fixes


Configuration

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

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

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@renovate renovate bot requested a review from a team as a code owner October 26, 2024 01:42
@renovate renovate bot added the review:tech Request for technical review on the docs platform or processes. label Oct 26, 2024
Copy link

netlify bot commented Oct 26, 2024

Deploy Preview for kongdocs ready!

Name Link
🔨 Latest commit f1ec0f3
🔍 Latest deploy log https://app.netlify.com/sites/kongdocs/deploys/6724160ee8a4b20008868238
😎 Deploy Preview https://deploy-preview-8090--kongdocs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
9 paths audited
Performance: 93 (🟢 up 3 from production)
Accessibility: 92 (no change from production)
Best Practices: 98 (🟢 up 8 from production)
SEO: 99 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from ab1af35 to 53cdbd4 Compare October 31, 2024 18:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
review:tech Request for technical review on the docs platform or processes.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants