administrate-field-belongs_to_search 0.9.0 → 0.10.0

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: fec56dd202a71da6720c59e2e1a1404811385625fd04d468331b905616c0aa55
4
- data.tar.gz: dc0aca827cb1e57a8cbf68a2b6de67080edd17a3b6eef0ba1f8bd4f82d4ff60d
3
+ metadata.gz: 05753d67d1024b53e5d2dfa56843978290f2e03cdceff1b83f3c7b37f246dbd2
4
+ data.tar.gz: b29ff8273140d0814e33af6e2b4f57fbd2a19737b3534d26c3cd876707172615
5
5
  SHA512:
6
- metadata.gz: 949f1822e006d3fe8c061799b46acfff309e3b3cabd8ae3352763cc261bc5414d3a766c81035b6e392af6c5a59163372e23526334e169ad7d67d02f6c42ee538
7
- data.tar.gz: dd18cf954c5636e95ff47a71780b5d34c095df81bfdd2c424655b1f50b0848769ee7bbb7f891381da3aee46c59ad192f9ea33fe36df5e9f0badc5b08d81bbf9c
6
+ metadata.gz: 3801190e83bf68f8e9096427d24b1ce3cd3e47edae1e2fb475547f049cc7e1ca7bc7393329ca55069205aeaae260d0a44426e68ad6ee4500d420ed878a669cd6
7
+ data.tar.gz: 128f81bbcdedc846c94e0230dd01c5a415f03766b394e606728d184db9ee486913fd70f8210f6a5d7c5e9643eb0120804607a6772d0a87492285f043292640bd
@@ -3,20 +3,26 @@
3
3
  ######################################################################################################################
4
4
  name: Semgrep
5
5
  on:
6
+ workflow_dispatch: {}
6
7
  pull_request: {}
8
+ push:
9
+ branches:
10
+ - main
11
+ - master
12
+ paths:
13
+ - .github/workflows/semgrep.yml
7
14
  schedule:
8
- - cron: '0 2 * * 0' # Once a week at 2am.
15
+ - cron: "0 2 * * 0" # Once a week at 2am.
9
16
 
10
17
  jobs:
11
18
  semgrep:
12
- name: Scan
13
- runs-on: buildjet-2vcpu-ubuntu-2204
19
+ name: Semgrep
20
+ runs-on: warp-ubuntu-latest-x64-2x
14
21
  timeout-minutes: 15 # There's been issues with some runs hanging. This times out after 15 minutes instead of the default 360.
22
+ env:
23
+ SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
15
24
  container:
16
- image: returntocorp/semgrep
17
- if: (github.actor != 'dependabot[bot]')
25
+ image: semgrep/semgrep
18
26
  steps:
19
27
  - uses: actions/checkout@v4
20
28
  - run: semgrep ci
21
- env:
22
- SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Upcoming release
4
4
 
5
+ ## 0.10.0
6
+
7
+ * Loosen dependency version requirements eeeeeven further
8
+
5
9
  ## 0.9.0
6
10
 
7
11
  * Loosen dependency version requirements eeeven further
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Administrate::Field::BelongsToSearch
2
2
 
3
- [![Build Status](https://travis-ci.org/fishbrain/administrate-field-belongs_to_search.svg?branch=master)](https://travis-ci.org/fishbrain/administrate-field-belongs_to_search)
4
3
  [![Gem Version](https://badge.fury.io/rb/administrate-field-belongs_to_search.svg)](https://badge.fury.io/rb/administrate-field-belongs_to_search)
5
- [![Coverage Status](https://coveralls.io/repos/github/fishbrain/administrate-field-belongs_to_search/badge.svg?branch=master)](https://coveralls.io/github/fishbrain/administrate-field-belongs_to_search?branch=master)
4
+
5
+ **This gem is not actively maintained by Fishbrain.**
6
6
 
7
7
  A plugin to search through `belongs_to` associations in [thoughtbot's Administrate](https://github.com/thoughtbot/administrate) Rails engine.
8
8
 
@@ -59,8 +59,6 @@ This plugin is Copyright © 2017 Fishbrain AB. It is licensed under the MIT lice
59
59
 
60
60
  ![Fishbrain AB](http://i.imgur.com/wOMiqE8.png)
61
61
 
62
- This plugin is maintained by [Fishbrain AB](https://fishbrain.com).
63
-
64
62
  At Fishbrain, we're passionate about the outdoors and conservation. Together, we work to bring you the best app for fishing, hands down.
65
63
 
66
64
  If you love working with amazing and talented people in tight-knit teams, [join us](https://fishbrain.com/jobs/)!
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.name = 'administrate-field-belongs_to_search'
6
- gem.version = '0.9.0'.freeze
6
+ gem.version = '0.10.0'.freeze
7
7
  gem.authors = ['Fishbrain']
8
8
  gem.email = ['support@fishbrain.com']
9
9
  gem.homepage = 'https://github.com/fishbrain/administrate-field-belongs_to_search'
@@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
16
16
 
17
17
  gem.add_dependency 'administrate', '>= 0.3', '< 1.0'
18
18
  gem.add_dependency 'jbuilder', '~> 2'
19
- gem.add_dependency 'rails', '>= 4.2', '< 7.2'
19
+ gem.add_dependency 'rails', '>= 4.2', '< 8.0'
20
20
  gem.add_dependency 'selectize-rails', '~> 0.6'
21
21
 
22
22
  gem.add_development_dependency 'coveralls', '~> 0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: administrate-field-belongs_to_search
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fishbrain
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-28 00:00:00.000000000 Z
11
+ date: 2024-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: administrate
@@ -53,7 +53,7 @@ dependencies:
53
53
  version: '4.2'
54
54
  - - "<"
55
55
  - !ruby/object:Gem::Version
56
- version: '7.2'
56
+ version: '8.0'
57
57
  type: :runtime
58
58
  prerelease: false
59
59
  version_requirements: !ruby/object:Gem::Requirement
@@ -63,7 +63,7 @@ dependencies:
63
63
  version: '4.2'
64
64
  - - "<"
65
65
  - !ruby/object:Gem::Version
66
- version: '7.2'
66
+ version: '8.0'
67
67
  - !ruby/object:Gem::Dependency
68
68
  name: selectize-rails
69
69
  requirement: !ruby/object:Gem::Requirement
@@ -223,7 +223,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
223
223
  - !ruby/object:Gem::Version
224
224
  version: '0'
225
225
  requirements: []
226
- rubygems_version: 3.4.6
226
+ rubygems_version: 3.5.3
227
227
  signing_key:
228
228
  specification_version: 4
229
229
  summary: Plugin that adds search capabilities to belongs_to associations for Administrate