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

Renovate Update Patch & Minor Updates #945

Merged
merged 1 commit into from
Jan 4, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
boto3 ==1.34.7 -> ==1.34.11 age adoption passing confidence
cypress (source) 13.6.1 -> 13.6.2 age adoption passing confidence
esbuild 0.19.10 -> 0.19.11 age adoption passing confidence
sass 1.69.5 -> 1.69.6 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

boto/boto3 (boto3)

v1.34.11

Compare Source

=======

  • api-change:apprunner: [botocore] AWS App Runner adds Python 3.11 and Node.js 18 runtimes.
  • api-change:location: [botocore] This release introduces a new parameter to bypasses an API key's expiry conditions and delete the key.
  • api-change:quicksight: [botocore] Add LinkEntityArn support for different partitions; Add UnsupportedUserEditionException in UpdateDashboardLinks API; Add support for New Reader Experience Topics

v1.34.10

Compare Source

=======

  • api-change:codestar-connections: [botocore] New integration with the GitLab self-managed provider type.
  • api-change:kinesis-video-archived-media: [botocore] NoDataRetentionException thrown when GetImages requested for a Stream that does not retain data (that is, has a DataRetentionInHours of 0).
  • api-change:sagemaker: [botocore] Amazon SageMaker Studio now supports Docker access from within app container

v1.34.9

Compare Source

======

  • api-change:emr: [botocore] Update emr client to latest version

v1.34.8

Compare Source

======

  • api-change:iam: [botocore] Documentation updates for AWS Identity and Access Management (IAM).
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
cypress-io/cypress (cypress)

v13.6.2

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-6-2

evanw/esbuild (esbuild)

v0.19.11

Compare Source

  • Fix TypeScript-specific class transform edge case (#​3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original code
    class Foo extends Bar {
      #private = 1;
      public: any;
      constructor() {
        super();
      }
    }
    
    // Old output (with esbuild v0.19.9)
    class Foo extends Bar {
      constructor() {
        super();
        this.#private = 1;
      }
      #private;
    }
    
    // Old output (with esbuild v0.19.10)
    class Foo extends Bar {
      constructor() {
        this.#private = 1;
        super();
      }
      #private;
    }
    
    // New output
    class Foo extends Bar {
      #private = 1;
      constructor() {
        super();
      }
    }
  • Minifier: allow reording a primitive past a side-effect (#​3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

    // Original code
    function f() {
      let x = false;
      let y = x;
      const boolean = y;
      let frag = $.template(`<p contenteditable="${boolean}">hello world</p>`);
      return frag;
    }
    
    // Old output (with --minify)
    function f(){const e=!1;return $.template(`<p contenteditable="${e}">hello world</p>`)}
    
    // New output (with --minify)
    function f(){return $.template('<p contenteditable="false">hello world</p>')}
  • Minifier: consider properties named using known Symbol instances to be side-effect free (#​3561)

    Many things in JavaScript can have side effects including property accesses and ToString operations, so using a symbol such as Symbol.iterator as a computed property name is not obviously side-effect free. This release adds a special case for known Symbol instances so that they are considered side-effect free when used as property names. For example, this class declaration will now be considered side-effect free:

    class Foo {
      *[Symbol.iterator]() {
      }
    }
  • Provide the stop() API in node to exit esbuild's child process (#​3558)

    You can now call stop() in esbuild's node API to exit esbuild's child process to reclaim the resources used. It only makes sense to do this for a long-lived node process when you know you will no longer be making any more esbuild API calls. It is not necessary to call this to allow node to exit, and it's advantageous to not call this in between calls to esbuild's API as sharing a single long-lived esbuild child process is more efficient than re-creating a new esbuild child process for every API call. This API call used to exist but was removed in version 0.9.0. This release adds it back due to a user request.

sass/dart-sass (sass)

v1.69.6

Compare Source

  • Produce better output for numbers with complex units in meta.inspect() and
    debugging messages.

  • Escape U+007F DELETE when serializing strings.

  • When generating CSS error messages to display in-browser, escape all code
    points that aren't in the US-ASCII region. Previously only code points U+0100
    LATIN CAPITAL LETTER A WITH MACRON were escaped.

  • Provide official releases for musl LibC and for Android.

  • Don't crash when running meta.apply() in asynchronous mode.

JS API
  • Fix a bug where certain exceptions could produce SourceSpans that didn't
    follow the documented SourceSpan API.

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner January 1, 2024 01:37
@renovate renovate bot added dependencies Pull requests that update a dependency file Renovate labels Jan 1, 2024
@renovate renovate bot had a problem deploying to dev_945renovate January 1, 2024 01:51 Failure
@renovate renovate bot force-pushed the renovate-all-minor-patch-updates branch from e1e5266 to ea17fa2 Compare January 1, 2024 21:04
Copy link

codecov bot commented Jan 1, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (185f29a) 91.48% compared to head (db98236) 91.48%.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #945   +/-   ##
=======================================
  Coverage   91.48%   91.48%           
=======================================
  Files         168      168           
  Lines        9267     9267           
=======================================
  Hits         8478     8478           
  Misses        674      674           
  Partials      115      115           
Flag Coverage Δ
unittests 91.48% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot had a problem deploying to dev_945renovate January 1, 2024 21:18 Failure
@renovate renovate bot force-pushed the renovate-all-minor-patch-updates branch from ea17fa2 to e48ff2e Compare January 3, 2024 09:55
Copy link

github-actions bot commented Jan 3, 2024

PR Environment Terraform Plan Summary

Plan: 1 to add, 4 to change, 1 to destroy

@renovate renovate bot temporarily deployed to dev_945renovate January 3, 2024 10:16 Inactive
@renovate renovate bot force-pushed the renovate-all-minor-patch-updates branch from e48ff2e to 20b4e4d Compare January 3, 2024 10:58
@renovate renovate bot temporarily deployed to dev_945renovate January 3, 2024 11:18 Inactive
@renovate renovate bot force-pushed the renovate-all-minor-patch-updates branch from 20b4e4d to b2c0e77 Compare January 3, 2024 11:31
@renovate renovate bot temporarily deployed to dev_945renovate January 3, 2024 11:51 Inactive
@renovate renovate bot force-pushed the renovate-all-minor-patch-updates branch from b2c0e77 to acb264a Compare January 3, 2024 13:32
@renovate renovate bot temporarily deployed to dev_945renovate January 3, 2024 13:50 Inactive
@renovate renovate bot force-pushed the renovate-all-minor-patch-updates branch from acb264a to 17689c4 Compare January 4, 2024 10:14
@renovate renovate bot temporarily deployed to dev_945renovate January 4, 2024 10:34 Inactive
Copy link
Contributor

@acsauk acsauk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@acsauk acsauk merged commit 207d18e into main Jan 4, 2024
26 checks passed
@acsauk acsauk deleted the renovate-all-minor-patch-updates branch January 4, 2024 14:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file Renovate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant