Next | Query returned 664 messages, browsing 21 to 30 | Previous

History of commit frequency

CVS Commit History:


   2023-09-09 16:23:23 by Takahiro Kambe | Files touched by this commit (1)
Log message:
lang/ruby: remove reference to ruby30

Remove references to nonexistent files.
   2023-09-09 16:21:31 by Takahiro Kambe | Files touched by this commit (1)
Log message:
lang/ruby: remove support for Ruby 3.0
   2023-09-03 17:56:58 by Takahiro Kambe | Files touched by this commit (1)
Log message:
lang/ruby: drop support for Ruby on Rails 5.2 and 6.0
   2023-09-03 17:33:42 by Takahiro Kambe | Files touched by this commit (1)
Log message:
lang/ruby: switch default Rails version to 6.1
   2023-08-26 17:29:22 by Takahiro Kambe | Files touched by this commit (14) | Package updated
Log message:
www/ruby-rails70: update to 7.0.7.2

7.0.7.2 (2023-08-22)

Active Support

* Use a temporary file for storing unencrypted files while editing
  [CVE-2023-38037]

7.0.7.1 (2023-08-22)

* No changes between this and 7.0.7.2.  This release was just to fix file
  permissions in the previous release.
   2023-08-26 17:23:29 by Takahiro Kambe | Files touched by this commit (14) | Package updated
Log message:
www/ruby-rails61: update to 6.1.7.6

6.1.7.5 (2023-08-22)

Active Support

* Use a temporary file for storing unencrypted files while editing
  [CVE-2023-38037]

6.1.7.6 (2023-08-22)

* No changes between this and 6.1.7.5.  This release was just to fix file
  permissions in the previous release.
   2023-08-11 16:14:44 by Takahiro Kambe | Files touched by this commit (14) | Package updated
Log message:
www/rails70: update to 7.0.7

Rails 7.0.7 (20223-08-10)

Active Support

* Fix Cache::NullStore with local caching for repeated reads.  (fatkodima)

* Fix to_s with no arguments not respecting custom :default formats
  (Hartley McGuire)

* Fix ActiveSupport::Inflector.humanize(nil) raising NoMethodError:
  undefined method `end_with?' for nil:NilClass.  (James Robinson)

* Fix Enumerable#sum for Enumerator#lazy.  (fatkodima, Matthew Draper,
  Jonathan Hefner)

* Improve error message when EventedFileUpdateChecker is used without a
  compatible version of the Listen gem.  (Hartley McGuire)

Active Model

* Error.full_message now strips ":base" from the message.  (zzak)

* Add a load hook for ActiveModel::Model (named active_model) to match the
  load hook for ActiveRecord::Base and allow for overriding aspects of the
  ActiveModel::Model class.

Active Record

* Restores functionality to the missing method when using enums and fixes.
  (paulreece)

* Fix StatementCache::Substitute with serialized type.  (ywenc)

* Fix :db_runtime on notification payload when application have multiple
  databases.  (Eileen M. Uchitelle)

* Correctly dump check constraints for MySQL 8.0.16+.  (Steve Hill)

* Fix ActiveRecord::QueryMethods#in_order_of to include nils, to match the
  behavior of Enumerable#in_order_of.

  For example, Post.in_order_of(:title, [nil, "foo"]) will now include \ 
posts
  with nil titles, the same as Post.all.to_a.in_order_of(:title, [nil,
  "foo"]).  (fatkodima)

* Revert "Fix autosave associations with validations added on :base of the
  associated objects."

  This change intended to remove the :base attribute from the message, but
  broke many assumptions which key these errors were stored.  (zzak)

* Fix #previously_new_record? to return true for destroyed records.

  Before, if a record was created and then destroyed,
  #previously_new_record? would return true.
  Now, any UPDATE or DELETE to a record is considered a change, and will
  result in #previously_new_record? returning false.  (Adrianna Chang)

* Revert breaking changes to has_one relationship deleting the old record
  before the new one is validated.  (zzak)

* Fix support for Active Record instances being uses in queries.

  As of 7.0.5, query arguments were deep duped to avoid mutations impacting
  the query cache, but this had the adverse effect to clearing the primary
  key when the query argument contained an ActiveRecord::Base instance.

  This broke the noticed gem.  (Jean Boussier)

Action View

* Fix render collection: @records, cache: true to cache fragments as bare
  strings.
  Previously it would incorrectly cache them as Action View buffers.  (Jean
  Boussier)

* Don't double-encode nested field_id and field_name index values.
  Pass index: @options as a default keyword argument to field_id and
  field_name view helper methods.  (Sean Doyle)

Railties

* Update default scaffold templates to set 303 (See Other) as status code on
  redirect for the update action for XHR requests other than GET or POST to
  avoid issues (e.g browsers trying to follow the redirect using the
  original request method resulting in double PATCH/PUT).  (Guillermo Iguaran)
   2023-07-09 05:30:34 by Takahiro Kambe | Files touched by this commit (14) | Package updated
Log message:
www/ruby-rails70: update to 7.0.6

Active Support

* Fix EncryptedConfiguration returning incorrect values for some Hash
  methods.  (Hartley McGuire)

* Fix arguments being destructed Enumerable#many? with block.  (Andrew
  Novoselac)

* Fix humanize for strings ending with id. (fatkodima)

Active Model

* No changes.

Active Record

* Fix autosave associations with validations added on :base of the
  associated objects.  (fatkodima)

* Fix result with anonymous PostgreSQL columns of different type from json.
  (Oleksandr Avoiants)

* Preserve timestamp when setting an ActiveSupport::TimeWithZone value to
  timestamptz attribute.  (fatkodima)

* Fix where on association with has_one/has_many polymorphic relations.

  Before:

	Treasure.where(price_estimates: PriceEstimate.all)
	#=> SELECT (...) WHERE "treasures"."id" IN (SELECT \ 
"price_estimates"."estimate_of_id" FROM \ 
"price_estimates")

Later:

	Treasure.where(price_estimates: PriceEstimate.all)
	#=> SELECT (...) WHERE "treasures"."id" IN (SELECT \ 
"price_estimates"."estimate_of_id" FROM \ 
"price_estimates" WHERE \ 
"price_estimates"."estimate_of_type" = 'Treasure')

  (Lázaro Nixon)

* Fix decrementing counter caches on optimistically locked record deletion.
  (fatkodima)

* Ensure binary-destined values have binary encoding during type cast.
  (Matthew Draper)

* Preserve existing column default functions when altering table in SQLite.
  (fatkodima)

* Remove table alias added when using where.missing or where.associated.
  (fatkodima)

* Fix Enumerable#in_order_of to only flatten first level to preserve
  nesting.  (Miha Rekar)

Action View

* No changes.

Action Pack

* No changes.

Active Job

* Fix error Active Job passed class with permitted?.  (Alex Baldwin)

Action Mailer

* No changes.

Action Cable

* Fix Action Cable Redis configuration with sentinels.  (Dmitriy Ivliev)

Active Storage

* Fix retrieving rotation value from FFmpeg on version 5.0+.

  In FFmpeg version 5.0+ the rotation value has been removed from tags.
  Instead the value can be found in side_data_list.  Along with this update
  it's possible to have values of -90, -270 to denote the video has been
  rotated.

  (Haroon Ahmed)

Action Mailbox

* No changes.

Action Text

* No changes.

Railties

* Avoid escaping paths when editing credentials.  (Jonathan Hefner)
   2023-06-29 17:42:07 by Takahiro Kambe | Files touched by this commit (6) | Package updated
Log message:
lang/ruby32-base: update bundled gem uri to 0.12.2

Fix CVE-2023-36617: ReDoS vulnerability in URI.

Bump PKGREVISION.
   2023-06-29 17:39:12 by Takahiro Kambe | Files touched by this commit (6) | Package updated
Log message:
lang/ruby31-base: update bundled gem uri to 0.12.2

Fix CVE-2023-36617: ReDoS vulnerability in URI.

Bump PKGREVISION.

Next | Query returned 664 messages, browsing 21 to 30 | Previous