Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Bump the bundler group with 3 updates #4

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 24, 2024

Bumps the bundler group with 3 updates: activesupport, cocoapods-downloader and tzinfo.

Updates activesupport from 4.2.11.1 to 6.1.7.5

Release notes

Sourced from activesupport's releases.

6.1.7.5 Release

Active Support

  • Use a temporary file for storing unencrypted files while editing

    [CVE-2023-38037]

Active Model

  • No changes.

Active Record

  • No changes.

Action View

  • No changes.

Action Pack

  • No changes.

Active Job

  • No changes.

Action Mailer

  • No changes.

Action Cable

  • No changes.

... (truncated)

Commits
  • 3a1b615 Preparing for 6.1.7.5 release
  • c2af578 bumping version / changelog
  • c85cc66 Use a temporary file for storing unencrypted files while editing
  • 7d949d7 Preparing for 6.1.7.4 release
  • f09dc7c Preparing for 6.1.7.3 release
  • 7167e53 Prepare version 6.1.7.3
  • 3cf23c3 Implement SafeBuffer#bytesplice
  • 3e0c1a5 Version 6.1.7.2
  • c443466 Version 6.1.7.1
  • a7cda7e Avoid regex backtracking in Inflector.underscore
  • Additional commits viewable in compare view

Updates cocoapods-downloader from 1.3.0 to 2.1

Release notes

Sourced from cocoapods-downloader's releases.

2.1

Enhancements
  • None.
Bug Fixes
  • Revert minimum required Ruby version to 2.6 to support macOS system ruby installations
    Eric Amorde #142

2.0

Enhancements
  • None.
Bug Fixes
  • None.
Other
  • Drop support for Bazaar (bzr)

1.6.3

Enhancements
  • None.
Bug Fixes
  • None.

1.6.2

Enhancements
  • None.
Bug Fixes
  • None.

1.6.1

Enhancements
  • None.
Bug Fixes
  • None.

... (truncated)

Changelog

Sourced from cocoapods-downloader's changelog.

2.1 (2023-11-19)

Enhancements
  • None.
Bug Fixes
  • Revert minimum required Ruby version to 2.6 to support macOS system ruby installations
    Eric Amorde #142

2.0 (2023-10-26)

Enhancements
  • None.
Bug Fixes
  • None.
Other
  • Drop support for Bazaar (bzr)

1.6.3 (2022-04-01)

Enhancements
  • None.
Bug Fixes
  • None.

1.6.2 (2022-03-28)

Enhancements
  • None.
Bug Fixes
  • None.

... (truncated)

Commits
  • 946c550 Release 2.1
  • b5983f2 Merge pull request #142 from CocoaPods/amorde/macos-system-ruby-support
  • a1859be Revert minimum required Ruby version to 2.6 to support macOS system Ruby
  • 3492e7b Merge pull request #140 from CocoaPods/2-0-stable
  • 9072f2d [CHANGELOG] Add empty Master section
  • 2d3691d Release 2.0
  • d9844ca Merge pull request #139 from CocoaPods/amorde/specs-macos
  • e84cb5e Explicitly enable file protocol in submodule test
  • 7366166 Update specs to run on macOS 12
  • e9ab295 Merge pull request #137 from CocoaPods/amorde/bump-minimum-ruby
  • Additional commits viewable in compare view

Updates tzinfo from 1.2.6 to 2.0.6

Release notes

Sourced from tzinfo's releases.

v2.0.6

  • Eliminate Object#untaint deprecation warnings on JRuby 9.4.0.0. #145.

TZInfo v2.0.6 on RubyGems.org

v2.0.5

  • Changed DateTime results to always use the proleptic Gregorian calendar. This affects DateTime results prior to 1582-10-15 and any arithmetic performed on the results that would produce a secondary result prior to 1582-10-15.
  • Added support for eager loading all the time zone and country data by calling either TZInfo::DataSource#eager_load! or TZInfo.eager_load!. Compatible with Ruby On Rails' eager_load_namespaces. #129.
  • Ignore the SECURITY file from Arch Linux's tzdata package. #134.

TZInfo v2.0.5 on RubyGems.org

v2.0.4

  • Fixed an incorrect InvalidTimezoneIdentifier exception raised when loading a zoneinfo file that includes rules specifying an additional transition to the final defined offset (for example, Africa/Casablanca in version 2018e of the Time Zone Database). #123.

TZInfo v2.0.4 on RubyGems.org

v2.0.3

  • Added support for handling "slim" format zoneinfo files that are produced by default by zic version 2020b and later. The POSIX-style TZ string is now used calculate DST transition times after the final defined transition in the file. #120.
  • Fixed TimeWithOffset#getlocal returning a TimeWithOffset with the timezone_offset still assigned when called with an offset argument on JRuby 9.3.
  • Rubinius is no longer supported.

TZInfo v2.0.3 on RubyGems.org

v2.0.2

  • Fixed 'wrong number of arguments' errors when running on JRuby 9.0. #114.
  • Fixed warnings when running on Ruby 2.8. #113.

TZInfo v2.0.2 on RubyGems.org

v2.0.1

  • Fixed "SecurityError: Insecure operation - require" exceptions when loading data with recent Ruby releases in safe mode. #100.
  • Fixed warnings when running on Ruby 2.7. #109.
  • Added a TZInfo::Timezone#=~ method that performs a regex match on the time zone identifier. #99.
  • Added a TZInfo::Country#=~ method that performs a regex match on the country code.

TZInfo v2.0.1 on RubyGems.org

v2.0.0

Added

  • to_local and period_for instance methods have been added to TZInfo::Timezone. These are similar to utc_to_local and period_for_utc, but take the UTC offset of the given time into account.
  • abbreviation, dst?, base_utc_offset and observed_utc_offset instance methods have been added to TZInfo::Timezone, returning the abbreviation, whether daylight savings time is in effect and the UTC offset of the time zone at a specified time.
  • A TZInfo::Timestamp class has been added. It can be used with TZInfo::Timezone in place of a Time or DateTime.
  • local_time, local_datetime and local_timestamp instance methods have been added to TZInfo::Timezone. These methods construct local Time, DateTime and TZInfo::Timestamp instances with the correct UTC offset and abbreviation for the time zone.
  • Support for a (yet to be released) version 2 of tzinfo-data has been added, in addition to support for version 1. The new version will remove the (no longer needed) DateTime parameters from transition times, reduce memory consumption and improve the efficiency of loading timezone and country indexes.
  • A TZInfo::VERSION constant has been added, indicating the TZInfo version number.

Changed

... (truncated)

Changelog

Sourced from tzinfo's changelog.

Version 2.0.6 - 28-Jan-2023

  • Eliminate Object#untaint deprecation warnings on JRuby 9.4.0.0. #145.

Version 2.0.5 - 19-Jul-2022

  • Changed DateTime results to always use the proleptic Gregorian calendar. This affects DateTime results prior to 1582-10-15 and any arithmetic performed on the results that would produce a secondary result prior to 1582-10-15.
  • Added support for eager loading all the time zone and country data by calling either TZInfo::DataSource#eager_load! or TZInfo.eager_load!. Compatible with Ruby On Rails' eager_load_namespaces. #129.
  • Ignore the SECURITY file from Arch Linux's tzdata package. #134.

Version 2.0.4 - 16-Dec-2020

  • Fixed an incorrect InvalidTimezoneIdentifier exception raised when loading a zoneinfo file that includes rules specifying an additional transition to the final defined offset (for example, Africa/Casablanca in version 2018e of the Time Zone Database). #123.

Version 2.0.3 - 8-Nov-2020

  • Added support for handling "slim" format zoneinfo files that are produced by default by zic version 2020b and later. The POSIX-style TZ string is now used calculate DST transition times after the final defined transition in the file. #120.
  • Fixed TimeWithOffset#getlocal returning a TimeWithOffset with the timezone_offset still assigned when called with an offset argument on JRuby 9.3.
  • Rubinius is no longer supported.

Version 2.0.2 - 2-Apr-2020

  • Fixed 'wrong number of arguments' errors when running on JRuby 9.0. #114.
  • Fixed warnings when running on Ruby 2.8. #113.

Version 2.0.1 - 24-Dec-2019

  • Fixed "SecurityError: Insecure operation - require" exceptions when loading data with recent Ruby releases in safe mode. #100.
  • Fixed warnings when running on Ruby 2.7. #109.
  • Added a TZInfo::Timezone#=~ method that performs a regex match on the time zone identifier. #99.

... (truncated)

Commits
  • d5893c9 Fix formatting.
  • 5561942 Preparing v2.0.6.
  • ec27c09 Add v1.2.11 from the 1.2 branch.
  • d77da3f Update copyright years.
  • eac33df Eliminate Object#untaint deprecation warnings on JRuby 9.4.0.0.
  • 19f984c Add Ruby 3.2 and JRuby 9.4.
  • e9fe818 Update the dependency on actions/checkout.
  • f76bc7f Fix include issues with tests on Ruby 3.2.
  • 8a781cf Revert "Workaround for 'Permission denied - NUL' errors with JRuby on Windows."
  • d9b289e Preparing v2.0.5.
  • Additional commits viewable in compare view

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the bundler group with 3 updates: [activesupport](https://github.com/rails/rails), [cocoapods-downloader](https://github.com/CocoaPods/cocoapods-downloader) and [tzinfo](https://github.com/tzinfo/tzinfo).


Updates `activesupport` from 4.2.11.1 to 6.1.7.5
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.3.4/activesupport/CHANGELOG.md)
- [Commits](rails/rails@v4.2.11.1...v6.1.7.5)

Updates `cocoapods-downloader` from 1.3.0 to 2.1
- [Release notes](https://github.com/CocoaPods/cocoapods-downloader/releases)
- [Changelog](https://github.com/CocoaPods/cocoapods-downloader/blob/master/CHANGELOG.md)
- [Commits](CocoaPods/cocoapods-downloader@1.3.0...2.1)

Updates `tzinfo` from 1.2.6 to 2.0.6
- [Release notes](https://github.com/tzinfo/tzinfo/releases)
- [Changelog](https://github.com/tzinfo/tzinfo/blob/master/CHANGES.md)
- [Commits](tzinfo/tzinfo@v1.2.6...v2.0.6)

---
updated-dependencies:
- dependency-name: activesupport
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: cocoapods-downloader
  dependency-type: indirect
  dependency-group: bundler
- dependency-name: tzinfo
  dependency-type: indirect
  dependency-group: bundler
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 24, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants