Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
thoughtbot, inc.
administrate
Commits
4a84bb86
Unverified
Commit
4a84bb86
authored
7 years ago
by
Nick Charlton
Browse files
Options
Download
Email Patches
Plain Diff
Release version 0.10.0.
parent
acaad1e4
main
add-action-text-field
add-webpacker
attachment-field
dependabot/bundler/activesupport-7.0.4.3
ev-ruby-3-upgrade
github/fork/DavidGeismarLtd/add-scope-to-polymorphic-field
github/fork/RaeRachael/namespace_generators
github/fork/assembleco/redescribed
github/fork/bhtabor/master
github/fork/cabe56/patch-1
github/fork/das3in/guard-against-uninitialized-model
github/fork/dgmstuart/decorators-revised
github/fork/edimossilva/fix-redirect-after-destroy-resource-without-index-route
github/fork/elrosa/order-for-has-one-relationships
github/fork/fastruby/feature/simplecov-support
github/fork/geniuskidkanyi/asset-fix
github/fork/jumjamjohn/master
github/fork/mauriciozaffari/master
github/fork/muriloime/main
github/fork/n-studio/compile-assets
github/fork/pablobm/associated-primary-key
github/fork/pablobm/multimodel
github/fork/pablobm/rails70
github/fork/rinsed-org/selectize
github/fork/sedubois/collection-select
github/fork/sedubois/punditize
github/fork/sedubois/rich-text
more-permissive-params
nc-sassc-seg-fault-fix
nc-switch-to-github-actions
pr/1941
remove-scss
remove-system-tests-compatibility
upgrade-ruby-3.1.0
v0.18.0
v0.17.0
v0.16.0
v0.15.0
v0.14.0
v0.13.0
v0.12.0
v0.11.0
v0.10.0
No related merge requests found
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
CHANGELOG.md
+22
-0
CHANGELOG.md
Gemfile.lock
+2
-2
Gemfile.lock
gemfiles/rails42.gemfile
+1
-0
gemfiles/rails42.gemfile
gemfiles/rails50.gemfile
+1
-0
gemfiles/rails50.gemfile
gemfiles/rails51.gemfile
+1
-0
gemfiles/rails51.gemfile
gemfiles/rails52.gemfile
+47
-0
gemfiles/rails52.gemfile
gemfiles/sass_3_4.gemfile
+1
-0
gemfiles/sass_3_4.gemfile
lib/administrate/version.rb
+1
-1
lib/administrate/version.rb
with
76 additions
and
3 deletions
+76
-3
CHANGELOG.md
+
22
-
0
View file @
4a84bb86
...
@@ -16,6 +16,28 @@
...
@@ -16,6 +16,28 @@
## Changes
## Changes
### 0.10.0 (April 20, 2018)
*
[BUGFIX] [#1121] Fix a bug where polymorphic fields could throw an exception.
*
[BUGFIX] [#1129] Include time for date_time field in index.
*
[i18n] [#1132] Add missing Russian locale error message.
*
[DOC] [#1131] Document that numbers are searchable.
*
[DOC] [#1145] Add
`.byebug_history`
and
`gemfiles/.bundle/`
to .gitignore.
*
[COMPAT] [#1148] Support Rails 5.2.
*
[DOC] [#1119] Add link to Authorization documentation.
*
[BUGFIX] [#1107] Exclude routes with modules, but no namespace.
*
[i18n] [#1117] Add translation for Albanian language.
*
[i18n] [#1115] Translate error message to Japanese.
*
[DOC] [#1106] Update Customizing Views docs with sidebar generator.
*
[FEATURE] [#1005] Add ability to search through association fields.
*
[FEATURE] [#1059] Use associated_class to render belongs_to links.
*
[FEATURE] [#961] Show errors when has_many restrict_with_error.
*
[FEATURE] [#1104] Add
`scope`
option to Field::BelongsTo.
*
[BUGFIX] [#1070] Use application timezone by default for DateTime fields.
*
[FEATURE] [#998] Add a password field type.
*
[FEATURE] [#903] Added Time Field.
*
[COMPAT] [#1103] Use cross-DB way to cast search queries to strings.
### 0.9.0 (February 17, 2018)
### 0.9.0 (February 17, 2018)
*
[COMPAT] [#1098] Update all the dependent gems.
*
[COMPAT] [#1098] Update all the dependent gems.
...
...
This diff is collapsed.
Click to expand it.
Gemfile.lock
+
2
-
2
View file @
4a84bb86
PATH
PATH
remote: .
remote: .
specs:
specs:
administrate (0.
9
.0)
administrate (0.
10
.0)
actionpack (>= 4.2, < 6.0)
actionpack (>= 4.2, < 6.0)
actionview (>= 4.2, < 6.0)
actionview (>= 4.2, < 6.0)
activerecord (>= 4.2, < 6.0)
activerecord (>= 4.2, < 6.0)
...
@@ -118,7 +118,7 @@ GEM
...
@@ -118,7 +118,7 @@ GEM
parser (>= 2.2.3.0)
parser (>= 2.2.3.0)
rainbow (~> 2.2)
rainbow (~> 2.2)
terminal-table (>= 1.5.1)
terminal-table (>= 1.5.1)
jquery-rails (4.3.
1
)
jquery-rails (4.3.
3
)
rails-dom-testing (>= 1, < 3)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
thor (>= 0.14, < 2.0)
...
...
This diff is collapsed.
Click to expand it.
gemfiles/rails42.gemfile
+
1
-
0
View file @
4a84bb86
...
@@ -35,6 +35,7 @@ group :test do
...
@@ -35,6 +35,7 @@ group :test do
gem "shoulda-matchers"
gem "shoulda-matchers"
gem "timecop"
gem "timecop"
gem "webmock"
gem "webmock"
gem "pundit"
end
end
group :staging, :production do
group :staging, :production do
...
...
This diff is collapsed.
Click to expand it.
gemfiles/rails50.gemfile
+
1
-
0
View file @
4a84bb86
...
@@ -35,6 +35,7 @@ group :test do
...
@@ -35,6 +35,7 @@ group :test do
gem "shoulda-matchers"
gem "shoulda-matchers"
gem "timecop"
gem "timecop"
gem "webmock"
gem "webmock"
gem "pundit"
end
end
group :staging, :production do
group :staging, :production do
...
...
This diff is collapsed.
Click to expand it.
gemfiles/rails51.gemfile
+
1
-
0
View file @
4a84bb86
...
@@ -35,6 +35,7 @@ group :test do
...
@@ -35,6 +35,7 @@ group :test do
gem "shoulda-matchers"
gem "shoulda-matchers"
gem "timecop"
gem "timecop"
gem "webmock"
gem "webmock"
gem "pundit"
end
end
group :staging, :production do
group :staging, :production do
...
...
This diff is collapsed.
Click to expand it.
gemfiles/rails52.gemfile
0 → 100644
+
47
-
0
View file @
4a84bb86
# This file was generated by Appraisal
source "https://rubygems.org"
gem "administrate-field-image"
gem "autoprefixer-rails"
gem "faker"
gem "globalid"
gem "pg", "0.21.0"
gem "redcarpet"
gem "sentry-raven"
gem "unicorn"
gem "actionpack", "~> 5.2.0"
gem "actionview", "~> 5.2.0"
gem "activerecord", "~> 5.2.0"
group :development, :test do
gem "appraisal"
gem "awesome_print"
gem "bundler-audit", require: false
gem "byebug"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "i18n-tasks"
gem "pry-rails"
gem "rspec-rails"
end
group :test do
gem "ammeter"
gem "database_cleaner"
gem "formulaic"
gem "launchy"
gem "poltergeist"
gem "shoulda-matchers"
gem "timecop"
gem "webmock"
gem "pundit"
end
group :staging, :production do
gem "rack-timeout"
gem "rails_stdout_logging"
gem "uglifier"
end
gemspec path: "../"
This diff is collapsed.
Click to expand it.
gemfiles/sass_3_4.gemfile
+
1
-
0
View file @
4a84bb86
...
@@ -33,6 +33,7 @@ group :test do
...
@@ -33,6 +33,7 @@ group :test do
gem "shoulda-matchers"
gem "shoulda-matchers"
gem "timecop"
gem "timecop"
gem "webmock"
gem "webmock"
gem "pundit"
end
end
group :staging, :production do
group :staging, :production do
...
...
This diff is collapsed.
Click to expand it.
lib/administrate/version.rb
+
1
-
1
View file @
4a84bb86
module
Administrate
module
Administrate
VERSION
=
"0.
9
.0"
.
freeze
VERSION
=
"0.
10
.0"
.
freeze
end
end
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets