umbrellio-sequel-plugins 0.16.0.234 → 0.16.0.238

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f749e84c0e331c206984e2d33819d19597c430877539c0af20499fe4cedd01d
4
- data.tar.gz: ae9a6f15597df644ec48f901832048b14c17832ed714054ae3032478180cc23e
3
+ metadata.gz: 72e88a9e341acb48c05bd6fc58fb423c4f08d3f4c6acdbef8b325be8e04d18c7
4
+ data.tar.gz: 99f160fcbb4608b16b518b5a1e1d1ad7d66f3d3a91a4cf139b344cf85638053d
5
5
  SHA512:
6
- metadata.gz: 4cfc104d6534cc48a43f60b7c3cdf1856cdb96d6fcb3a8719a48252969aa1c564c27414c101f5d669adbc3887e82ea3e59b61cc38b063f5e95edd0ce7f8f6ce1
7
- data.tar.gz: f4a15f0828e7a12c618aed55884c953e558247ac7e14f0b31aa9b1ed37a5c09805076efd3e7c105d019e74cf498c7746bec21df98e2afa75e890bd3d2ebea690
6
+ metadata.gz: 37afc1b8ff041688d12b5df3b183591ad65edc6d97e39f287c352a9a0511f0e72af25f2bc22ba1adbb8dfb9ce47714829ae18481373117fa8bd4b8cbdc635c1e
7
+ data.tar.gz: be5467b9f9623ee66d70d8219e89d8086152946f7815d1a87f2642c06a5e55489db6b9af68ac95533d146efacbf0879c37f0a787dab40d61fd80182c35b8497a
@@ -60,8 +60,7 @@ jobs:
60
60
  PUBLISH_JOB: true
61
61
 
62
62
  # Run on push to master branch
63
- # if: github.event_name == 'push' && github.ref == 'refs/heads/master'
64
- if: github.event_name == 'push'
63
+ if: github.event_name == 'push' && github.ref == 'refs/heads/master'
65
64
 
66
65
  steps:
67
66
  - uses: actions/checkout@v4
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: umbrellio-sequel-plugins
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0.234
4
+ version: 0.16.0.238
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Umbrellio
@@ -35,7 +35,6 @@ files:
35
35
  - ".gitignore"
36
36
  - ".rspec"
37
37
  - ".rubocop.yml"
38
- - CHANGELOG.md
39
38
  - Gemfile
40
39
  - LICENSE
41
40
  - README.md
data/CHANGELOG.md DELETED
@@ -1,43 +0,0 @@
1
- # Changelog
2
- All notable changes to this project will be documented in this file.
3
-
4
- ## [0.14.0] -2023-07-17
5
- ### Added
6
- - `Fibered Connection Pool` extension;
7
-
8
- ## [0.9.0] 2022-07-01
9
- ### Added
10
- - Add `--server` option to `rails dbconsole` command.
11
-
12
- ## [0.8.0] 2022-06-29
13
- ### Added
14
- - `rails dbconsole` command support for Sequel (also aliased as `rails db`) for easy access to the DB console. See the README for installation instructions.
15
-
16
- ## [0.7.0] 2022-06-24
17
- ### Added
18
- - `DB.extension(:set_local)` - allows to set transaction locals;
19
- - Support of transaction options via `transaction_options` in migrations;
20
-
21
- ## [0.6.0] 2022-06-15
22
- ### Added
23
- - `mode` param for `Sequel::Model.plugin(:with_lock)`, defaults to `FOR NO KEY UPDATE`;
24
-
25
- ## [0.5.0] 2020-06-06
26
- ### Added
27
- - `Sequel::Model.plugin(:attr_encrypted)` - encrypts to model attributes;
28
-
29
- ## [0.4.0] 2019-11-18
30
- ### Added
31
- - `Sequel.extension(:deferrable_foreign_keys)` - makes foreign keys constraints deferrable by default;
32
-
33
- ## [0.3.2] 2018-07-03
34
- ### Added
35
- - Support sequel expressions in `with_rates`;
36
-
37
- ## [0.3.0] 2018-04-24
38
- ### Added
39
- - `currency_column` param for `CurrencyRates.with_rates`;
40
-
41
- ## [0.2.0] 2018-03-28
42
- ### Added
43
- - `Sequel.extension(:methods_in_migrations)` - support for method definitions in `Sequel.migration` instructions;