Path to this page:
./
devel/ruby-actiontext61,
Rich text framework (for Rails 6.0)
Branch: CURRENT,
Version: 6.1.3.1,
Package name: ruby26-actiontext61-6.1.3.1,
Maintainer: pkgsrc-usersAction Text
Action Text brings rich text content and editing to Rails. It includes the
[Trix editor](https://trix-editor.org) that handles everything from formatting
to links to quotes to lists to embedded images and galleries. The rich text
content generated by the Trix editor is saved in its own RichText model that's
associated with any existing Active Record model in the application. Any
embedded images (or other attachments) are automatically stored using Active
Storage and associated with the included RichText model.
You can read more about Action Text in the [Action Text
Overview](https://edgeguides.rubyonrails.org/action_text_overview.html) guide.
This is for Ruby on Rails 6.1.
Master sites:
SHA1: 49d8b1e120404f0d15904496890a4d248805db03
RMD160: e1802bddd46a3bd586f5b5f05ce6a6dac8f5b28c
Filesize: 18.5 KB
Version history: (Expand)
- (2021-04-11) Updated to version: ruby26-actiontext61-6.1.3.1
- (2021-02-28) Updated to version: ruby26-actiontext61-6.1.3
- (2021-02-14) Package added to pkgsrc.se, version ruby26-actiontext61-6.1.2.1 (created)
CVS history: (Expand)
2021-04-11 15:28:02 by Takahiro Kambe | Files touched by this commit (15) |  |
Log message:
www/ruby-rails61: update to 6.1.3.1
Real changes are in devel/devel/ruby-activestorage61 only.
## Rails 6.1.3.1 (March 26, 2021) ##
* Marcel is upgraded to version 1.0.0 to avoid a dependency on GPL-licensed
mime types data.
*George Claghorn*
|
2021-02-28 16:42:41 by Takahiro Kambe | Files touched by this commit (13) |  |
Log message:
www/ruby-rails61: update to 6.1.3
Rails 6.1.3 (February 17, 2021)
[ActionPack]
* Re-define routes when not set correctly via inheritance.
*John Hawthorn*
[ActiveRecord]
* Fix the MySQL adapter to always set the right collation and charset
to the connection session.
*Rafael Mendonça França*
* Fix MySQL adapter handling of time objects when prepared statements
are enabled.
*Rafael Mendonça França*
* Fix scoping in enum fields using conditions that would generate
an IN clause.
*Ryuta Kamizono*
* Skip optimised #exist? query when #include? is called on a relation
with a having clause
Relations that have aliased select values AND a having clause that
references an aliased select value would generate an error when
#include? was called, due to an optimisation that would generate
call #exists? on the relation instead, which effectively alters
the select values of the query (and thus removes the aliased select
values), but leaves the having clause intact. Because the having
clause is then referencing an aliased column that is no longer
present in the simplified query, an ActiveRecord::InvalidStatement
error was raised.
An sample query affected by this problem:
Author.select('COUNT(*) as total_posts', 'authors.*')
.joins(:posts)
.group(:id)
.having('total_posts > 2')
.include?(Author.first)
This change adds an addition check to the condition that skips the
simplified #exists? query, which simply checks for the presence of
a having clause.
Fixes #41417
*Michael Smart*
* Increment postgres prepared statement counter before making a
prepared statement, so if the statement is aborted without Rails
knowledge (e.g., if app gets kill -9d during long-running query or
due to Rack::Timeout), app won't end up in perpetual crash state for
being inconsistent with Postgres.
*wbharding*, *Martin Tepper*
|
2021-02-14 15:08:43 by Takahiro Kambe | Files touched by this commit (4) |
Log message:
textproc/ruby-actiontext61: add package version 6.1.2.1
Action Text
Action Text brings rich text content and editing to Rails. It includes the
[Trix editor](https://trix-editor.org) that handles everything from formatting
to links to quotes to lists to embedded images and galleries. The rich text
content generated by the Trix editor is saved in its own RichText model that's
associated with any existing Active Record model in the application. Any
embedded images (or other attachments) are automatically stored using Active
Storage and associated with the included RichText model.
You can read more about Action Text in the [Action Text
Overview](https://edgeguides.rubyonrails.org/acti … rview.html) guide.
This is for Ruby on Rails 6.1.
|