activerecord 8.1.0 → 8.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a92548efaf2245d66ddb7383470faf4182ac1d28a65f71824ba6a83c69b753fd
4
- data.tar.gz: e019fc7a41a862fa0f0393ee6d8dd46589af1dd04ee0c9f1ddfde6716401c011
3
+ metadata.gz: b7b18af13d6104f184766545f02331ab69f8adf68e94d279c1c5322e6dcae354
4
+ data.tar.gz: a68c959652dc4a661c9d86d26dcacfca0fb1c723d23f09ba5c67c744911a05b6
5
5
  SHA512:
6
- metadata.gz: db83ab09afcb9232bc722208fd8add11064cefc613667592711d7ec21347e0933eddec2a9cdf1f4eb7f07a973a11d54a821b776da0861e320cfece6684e47a3c
7
- data.tar.gz: 4e47cbdb388a3f4e00b55f775bf2d9397b80e1f27478e8ce00b4cb783d3ee8de72088c5303697d1080c2f5f58d6c81c053c980c984f2755d6d8224453fa684f2
6
+ metadata.gz: c86cf51a07c0a5da92cf811eba3743aa7bba1727bc2509348468614323d0ab6ff3200d5718e0b132f93b765c2961d050e068dd5d6e972a55510212cf7087ccd1
7
+ data.tar.gz: e7ee18efff038f1011d88c4ab137512618c73c2bc9e33132c101439fa921f05051f3dbe91ece48a7aa5e1daae081ec9af7af3536d57f4d862ccd5130de86d479
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## Rails 8.1.1 (October 28, 2025) ##
2
+
3
+ * No changes.
4
+
5
+
1
6
  ## Rails 8.1.0 (October 22, 2025) ##
2
7
 
3
8
  * Fix SQLite3 data loss during table alterations with CASCADE foreign keys.
@@ -9,7 +9,7 @@ module ActiveRecord
9
9
  module VERSION
10
10
  MAJOR = 8
11
11
  MINOR = 1
12
- TINY = 0
12
+ TINY = 1
13
13
  PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "active_record"
4
3
  require "rails"
4
+ require "active_record"
5
5
  require "active_support/core_ext/object/try"
6
6
  require "active_model/railtie"
7
7
 
@@ -869,7 +869,9 @@ module ActiveRecord
869
869
  # Active Record's schema_cache.
870
870
  #
871
871
  # [:on_duplicate]
872
- # Configure the SQL update sentence that will be used in case of conflict.
872
+ # Configure the behavior that will be used in case of conflict. Use `:skip`
873
+ # to ignore any conflicts or provide a safe SQL fragment wrapped with
874
+ # `Arel.sql`.
873
875
  #
874
876
  # NOTE: If you use this option you must provide all the columns you want to update
875
877
  # by yourself.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.1.0
4
+ version: 8.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
@@ -15,28 +15,28 @@ dependencies:
15
15
  requirements:
16
16
  - - '='
17
17
  - !ruby/object:Gem::Version
18
- version: 8.1.0
18
+ version: 8.1.1
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - '='
24
24
  - !ruby/object:Gem::Version
25
- version: 8.1.0
25
+ version: 8.1.1
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: activemodel
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - '='
31
31
  - !ruby/object:Gem::Version
32
- version: 8.1.0
32
+ version: 8.1.1
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - '='
38
38
  - !ruby/object:Gem::Version
39
- version: 8.1.0
39
+ version: 8.1.1
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: timeout
42
42
  requirement: !ruby/object:Gem::Requirement
@@ -478,10 +478,10 @@ licenses:
478
478
  - MIT
479
479
  metadata:
480
480
  bug_tracker_uri: https://github.com/rails/rails/issues
481
- changelog_uri: https://github.com/rails/rails/blob/v8.1.0/activerecord/CHANGELOG.md
482
- documentation_uri: https://api.rubyonrails.org/v8.1.0/
481
+ changelog_uri: https://github.com/rails/rails/blob/v8.1.1/activerecord/CHANGELOG.md
482
+ documentation_uri: https://api.rubyonrails.org/v8.1.1/
483
483
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
484
- source_code_uri: https://github.com/rails/rails/tree/v8.1.0/activerecord
484
+ source_code_uri: https://github.com/rails/rails/tree/v8.1.1/activerecord
485
485
  rubygems_mfa_required: 'true'
486
486
  rdoc_options:
487
487
  - "--main"