Commit Graph

65 Commits

Author SHA1 Message Date
Jon Dufresne
aa81f67a9e Trim trailing whitespace from *.md files
Fixes the error:

    Run bin/check-changelogs ./rails
    ............F

    Offenses:

    ./rails/railties/CHANGELOG.md:4 Trailing whitespace detected.
2022-12-17 15:27:51 -08:00
Rafael Mendonça França
83d85b2207
Start Rails 7.1 development 2021-12-07 15:52:30 +00:00
Rafael Mendonça França
d177551c30
Preparing for 7.0.0.alpha2 release 2021-09-15 18:22:51 -04:00
Rafael Mendonça França
9b7be48212
Preparing for 7.0.0.alpha1 release 2021-09-15 17:55:08 -04:00
Xavier Noria
be69569544 Updates guides CHANGELOG 2021-08-27 09:17:58 +02:00
Brendon Muir
54cde9d4c7 ActiveStorage: The parameters sent to ffmpeg for are now configurable
The configuration key is `config.active_storage.video_preview_arguments`.

This commit also better documents a previous commit from Jonathan Hefner (@ jonathanhefner) that changes the default video image preview to use scene detection to generate a better preview.
2021-06-16 14:15:34 +12:00
Rafael Mendonça França
59f7f5889e
Start Rails 6.2 development 🎉 2020-12-03 01:35:29 +00:00
Rafael Mendonça França
8389f9902c
Preparing for 6.1.0.rc1 release 2020-11-02 21:12:47 +00:00
Sam Bostock
e79364610c
Fallback to $MEMCACHE_SERVERS if no servers given
By default, Dalli has two fallbacks if no server addresses are given:

- $MEMCACHE_SERVERS
- "127.0.0.1:11211"

However, MemCacheStore does its own check for addresses, and falls back
to "localhost:11211" if none are present.

This can lead to bugs in migrations from the deprecated :dalli_store
(provided by the Dalli) to :mem_cache_store:

```diff
-config.cache_store = :dalli_store     # could be implicitly relying on $MEMCACHE_SERVERS
+config.cache_store = :mem_cache_store # ignores $MEMCACHE_SERVERS
```

By removing our own fallback and simply passing `nil` to Dalli::Client,
we get its fallback logic for free. Tests are added so we can detect if
this ever changes.
2020-10-20 23:50:52 -04:00
Vipul A M
536a7e5bdd Changes over AR Querying guide [ci skip]
- User bookstore models for all examples
- Add diagram changes
- Add Output changes
- Expansion of Enum documentation
- Lots of Grammar fixes

Co-authored-by: Ashley Engelund (weedySeaDragon @ github)
2020-05-27 23:44:24 +05:30
Rafael Mendonça França
9834be6565
Start Rails 6.1 development 2019-04-24 15:57:14 -04:00
Edward Rudd
90a8ce6450 add documentation about variants 2019-04-03 18:10:09 -04:00
eileencodes
7c87fd5635 Prep release
* Update RAILS_VERSION
* Bundle
* rake update_versions
* rake changelog:header
2019-03-11 11:58:15 -04:00
Rafael Mendonça França
5e6e505083
Preparing for 6.0.0.beta2 release 2019-02-25 17:45:04 -05:00
bogdanvlviv
0bc62b9c27
Add missing entries to guides' changelog file [ci skip]
We added "Action Mailbox Basics", "Action Text Overview" guides(#34812, #34878)
I think it makes to mention about it in the changelog file. (Similar to 7200ec92f8)
Note that entries retain original author since
I just moved content from readme files to the guides.
2019-01-21 09:16:51 +00:00
Rafael Mendonça França
5a0230c67f
Preparing for 6.0.0.beta1 release 2019-01-18 15:42:12 -05:00
Kasper Timm Hansen
1b7c3222e8
Require Ruby 2.5 for Rails 6.
Generally followed the pattern for https://github.com/rails/rails/pull/32034

* Removes needless CI configs for 2.4
* Targets 2.5 in rubocop
* Updates existing CHANGELOG entries for fewer merge conflicts
* Removes Hash#slice extension as that's inlined on Ruby 2.5.
* Removes the need for send on define_method in MethodCallAssertions.
2018-12-19 21:47:50 +01:00
Xavier Noria
5f35c60f84 reflect c03bba4 in CHANGELOGs 2018-09-08 09:50:05 +02:00
Rafael Mendonça França
ba0ae542ca
Remove changelog header for unreleased version
We only add the header when releasing to avoid some conflicts.

[ci skip]
2018-03-13 15:20:57 -04:00
Jeremy Daer
d4eb0dc89e Rails 6 requires Ruby 2.4.1+
Skipping over 2.4.0 to sidestep the `"symbol_from_string".to_sym.dup` bug.

References #32028
2018-02-17 15:34:57 -08:00
Rafael Mendonça França
1c383df324 Start Rails 6.0 development!!!
🎉🎉🎉
2018-01-30 18:51:17 -05:00
Rafael Mendonça França
2837d0f334
Preparing for 5.2.0.beta2 release 2017-11-28 14:41:02 -05:00
Rafael Mendonça França
cceeeb6e57
Preparing for 5.2.0.beta1 release 2017-11-27 14:50:03 -05:00
Matthew Draper
6c08d480f1 Start Rails 5.2 development 2017-03-22 10:11:39 +10:30
Rafael Mendonça França
f4acdd83ff
Preparing for 5.1.0.beta1 release 2017-02-23 14:53:21 -05:00
Rafael Mendonça França
8ecc5ab1d8 Start Rails 5.1 development 🎉 2016-05-10 03:46:56 -03:00
Rafael Mendonça França
fbdcf5221a Preparing for 5.0.0.rc1 release 2016-05-06 16:54:40 -05:00
eileencodes
f7a986012a Prep Rails 5 beta 4 2016-04-27 15:48:47 -05:00
Vipul A M
bcd7559a65 - Add changelog for new guide: AC overview from https://github.com/rails/rails/pull/23176
[ci skip]
2016-04-10 20:49:27 +05:30
Vipul A M
bfc0d5eb8b - Fixed changelog related to i18 key changes. Added author
- Made all sentences to end properly
[ci skip]
2016-04-10 20:46:19 +05:30
Prathamesh Sonpatki
7f1fc1ee09
Update example of passing a proc to :message option for validating records [ci skip]
- This change is made as the behavior for `:message` proc was changed in
  https://github.com/rails/rails/pull/24119.
- Also check
  https://github.com/rails/rails/pull/24431#issuecomment-206106790 for
  reference.
2016-04-06 09:29:01 +05:30
eileencodes
dbfa8fdfc2 Preparing for 5.0.0.beta3 release
Adds changelog headers for beta3 release
2016-02-24 11:14:40 -05:00
Sean Griffin
49f6ce63f3 Preparing for Rails 5.0.0.beta2 2016-02-01 14:37:52 -07:00
Akshay Vishnoi
5bae9d4f30 [ci skip] No more no changes entries in the CHANGELOGs (cases left in #22718) 2015-12-22 01:20:29 +05:30
eileencodes
099ddfdefd Add CHANGELOG headers for Rails 5.0.0.beta1 2015-12-18 15:58:25 -05:00
maclover7
8e35ab8610 Add code of conduct to README.md and to contributing guide [ci skip] 2015-08-18 19:53:31 -04:00
Eliot Sykes
fc11ea4a0d Add Active Job to Configuring Guide [ci skip] 2015-04-09 18:41:46 +01:00
Zachary Scott
d9f8b58d98 Merge pull request #18485 from andreynering/robots.txt
Adding 'Search Engines Indexing' Section [ci skip]
2015-02-16 10:08:01 -08:00
Andrey Nering
017de712ee Add Single Table Inheritance to guides [ci skip] 2015-01-31 17:07:14 -02:00
Andrey Nering
2a428eda47 Adding 'Search Engines Indexing' Section [ci skip] 2015-01-14 19:18:47 -02:00
Andrey Nering
2c76d201e0 Fix name on changelog [ci skip] 2014-12-17 20:03:37 -02:00
Zachary Scott
34914c6fd7 Add CHANGELOG for #18034 [ci skip] 2014-12-15 18:36:02 -08:00
Rafael Mendonça França
f25ad07f5a Start Rails 5 development 🎉
We will support only Ruby >= 2.1.

But right now we don't accept pull requests with syntax changes to drop
support to Ruby 1.9.
2014-11-28 15:00:06 -02:00
Robin Dupret
d93ae4fca8 Quick pass through Active Support and guides CHANGELOG
[ci skip]
2014-06-29 20:13:49 +02:00
John Kelly Ferguson
45072f34d2 Rename Posts to Articles in Guides' Getting Started App, continuation of #15215 [ci skip] 2014-05-25 18:48:14 -04:00
John Kelly Ferguson
3a480b45d6 Update all Rails 4.1.0 references in guides to 4.1.1 [ci skip] 2014-05-24 18:51:23 -04:00
John Kelly Ferguson
5ec797e2ca Improve readability of Explain Queries table in guides [ci skip] 2014-05-24 18:16:07 -04:00
Guillermo Iguaran
a0155b2f55 Update CHANGELOG.md
Most recent change should be moved to the top
2014-05-21 22:20:37 -05:00
John Kelly Ferguson
d02c810e29 Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip] 2014-05-21 23:01:45 -04:00
Rafael Mendonça França
30a41e76f6 new CHANGELOGs entries are in the top [ci skip] 2014-04-08 17:34:34 -03:00