dependabot[bot]
f83a839009
Bump oj from 3.12.1 to 3.12.2 ( #14329 )
...
Bumps [oj](https://github.com/ohler55/oj ) from 3.12.1 to 3.12.2.
- [Release notes](https://github.com/ohler55/oj/releases )
- [Changelog](https://github.com/ohler55/oj/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ohler55/oj/compare/v3.12.1...v3.12.2 )
---
updated-dependencies:
- dependency-name: oj
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-26 09:41:11 +02:00
dependabot[bot]
36811259b2
Bump rubocop from 1.18.3 to 1.18.4 ( #14328 )
...
Bumps [rubocop](https://github.com/rubocop/rubocop ) from 1.18.3 to 1.18.4.
- [Release notes](https://github.com/rubocop/rubocop/releases )
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop/compare/v1.18.3...v1.18.4 )
---
updated-dependencies:
- dependency-name: rubocop
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-26 09:40:42 +02:00
Arit Amana
e589b11c77
Static Sections for Site Navigation - Pt2 ( #14292 )
...
* schema file undelete description
* update with main
* update with origin
* add sections in Admin
* Add "Section" radio btns to New-Link form
* Ensure links created in correct section
* Ensure links created in correct section pt2
* fix styling in admin
* complete section split on frontend
* start on specs
* complete specs
* remove unnecessary Cypress test file
* address all a11y comments in PR review
* fix broken specs due to a11y changes
2021-07-23 17:53:55 -04:00
Fernando Valverde
1826e50564
[15-min fix] Show the navigation options regardless of screen size ( #14313 )
...
* Show the navigation options regardless of screen size
* Add link back to forem homepage for small screens
* Fix link URL + add small padding
* Remove padding class
2021-07-23 14:25:00 -06:00
Alex
7a48708156
API: Add instance endpoint and spec ( #14301 )
...
* Create /api/forem_directories endpoint and spec
* PR feedback
* Update regex in spec
2021-07-23 12:10:08 -04:00
dependabot[bot]
75b870c6c6
Bump knapsack_pro from 2.18.0 to 2.18.1 ( #14309 )
...
Bumps [knapsack_pro](https://github.com/KnapsackPro/knapsack_pro-ruby ) from 2.18.0 to 2.18.1.
- [Release notes](https://github.com/KnapsackPro/knapsack_pro-ruby/releases )
- [Changelog](https://github.com/KnapsackPro/knapsack_pro-ruby/blob/master/CHANGELOG.md )
- [Commits](https://github.com/KnapsackPro/knapsack_pro-ruby/compare/v2.18.0...v2.18.1 )
---
updated-dependencies:
- dependency-name: knapsack_pro
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-23 10:10:04 -04:00
Nick Taylor
9303e1f071
[15 min fix] Added support for the --no-seed argument to bin/e2e command ( #14307 )
2021-07-22 17:04:18 -04:00
Daniel Uber
591577e6b8
[hotfix] website_url update script should handle parse errors ( #14306 )
...
* Add additional test cases to the DUS
And then handle them.
* rubocop changes
Keep let blocks together
prefer blank? to ! + present?
* Test copied script as well
Since the file was fixed, then copied - we want to test the copy that
will actually run (these _should_ be idempotent and running both back
to back will cause no harm).
2021-07-22 14:16:43 -05:00
Daniel Uber
6f84f4afe8
Validate profile field "website url" is in fact a url (don't generate local path links). ( #14302 )
...
* Validate website_url profile field is a url
related to issue #14300
May need a data update script to (fixup? remove?) invalid profiles
since not being able to save existing profiles will cause problems.
* Check that URI is a valid url
Require the scheme to be one of https or http, not something like
mailto:// or telnet:// (nobody would do that, but don't try and link
to it if they did).
* Rubocop fixup for validation rule
URI::regexp is obsolete and should not be used. Instead, use URI::DEFAULT_PARSER.make_regexp
Prefer %w[] literals for arrays of words
Prefer the new style validations `validates :column, format: value` to validates_format_of
* Permit empty website_url fields
The previous validation was rejecting nil, which was the default. This
caused a lot of user factory calls to fail (since users didn't need
website urls in the profiles during testing unless the test was about
the website url link).
* Use :url validation as suggested
* Update validation error message
The validate_url gem gives a more complete error message to the
user. Update the spec to expect this.
* Use url_field rather than text_field in profile form
https://apidock.com/rails/v6.1.3.1/ActionView/Helpers/FormHelper/url_field
* Add data update to either fixup or clear invalid website urls
Checking blazer there are about 2600 profiles with "invalid" website
urls, typically a hostname, sometimes a hostname + path component,
which should be fixed up.
Naively add https:// to the front of the url, check that a valid
scheme and host are present on the resulting url, and save.
If an invalid url is generated (specifically, if host or scheme are
nil), just set the website url (with the invalid link) to an empty
string.
It's possible we'd want to notify users affected by this, that was not
included in this pass.
* Skip validations for intentionally invalid test cases
2021-07-22 12:02:29 -05:00
Fernando Valverde
947b294042
Add ruby platform ( #14305 )
2021-07-22 09:40:03 -06:00
Nick Taylor
4858b75bb5
Added support for running E2E tests without seeded data ( #14285 )
2021-07-22 08:45:37 -04:00
Julien Maury
09269ca972
remove use of async attribute on inline scripts ( #14297 )
2021-07-22 06:45:04 -04:00
Michael Kohl
de043b3d6d
Fix brand color validation ( #14303 )
2021-07-22 09:35:20 +01:00
Michael Kohl
dc27f597fb
Remove CustomProfileField ( #14286 )
...
* Remove custom profile fields
* Update profile model
* Fix specs, more cleanup
* Remove no longer valid validation
* Update spec
* Update search serializer spec
* Update migration
2021-07-22 10:05:39 +07:00
Fernando Valverde
16ddcb74dc
Avoid showing social login options in ForemWebView ( #14260 )
...
* Minimal diff commit
* Add helper specs for display_social_login?
* Fixing some specs
* Fixing specs
* Add system specs for flow A vs flow B
* Add aria-live polite
* revert unnecessary change to spec
* Update spec/system/authentication/conditional_registration_spec.rb
Co-authored-by: rhymes <github@rhymes.dev>
* Tweaks to fix specs
* Apply review feedback
* Apply suggestions from code review
Co-authored-by: Michael Kohl <citizen428@dev.to>
* Extract helper function + refactor Regexp from display_social_login?
* Small tweak to condition
Co-authored-by: rhymes <github@rhymes.dev>
Co-authored-by: Michael Kohl <citizen428@dev.to>
2021-07-21 09:59:12 -06:00
rhymes
a118b9095a
Add JSON representation of Profile Preview Card info ( #14296 )
...
* Add tests and Railsify a few things
* Adds JSON representation of ProfilePreviewCardsController
* Load profile and setting eagerly
* Add profile preview card color
2021-07-21 16:23:54 +01:00
dependabot[bot]
359f742de6
Bump listen from 3.5.1 to 3.6.0 ( #14295 )
...
Bumps [listen](https://github.com/guard/listen ) from 3.5.1 to 3.6.0.
- [Release notes](https://github.com/guard/listen/releases )
- [Commits](https://github.com/guard/listen/compare/v3.5.1...v3.6.0 )
---
updated-dependencies:
- dependency-name: listen
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-21 10:59:22 -04:00
Julien Maury
25715d07bd
Remove defer attribute when not needed ( #14234 )
2021-07-21 10:51:41 -04:00
dependabot[bot]
c78eac209f
Bump front_matter_parser from 1.0.0 to 1.0.1 ( #14293 )
...
Bumps [front_matter_parser](https://github.com/waiting-for-dev/front_matter_parser ) from 1.0.0 to 1.0.1.
- [Release notes](https://github.com/waiting-for-dev/front_matter_parser/releases )
- [Changelog](https://github.com/waiting-for-dev/front_matter_parser/blob/master/CHANGELOG.md )
- [Commits](https://github.com/waiting-for-dev/front_matter_parser/commits/v1.0.1 )
---
updated-dependencies:
- dependency-name: front_matter_parser
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-21 10:21:12 -04:00
Suzanne Aitchison
1adf66260d
Delay the hover appearance of preview card ( #14222 )
...
* delay the hover appearance of preview card
* don't run animation if the dropdown is already held open by click
* wake up travis
* Trigger Travis CI
* remove unncessary document queries
2021-07-21 11:15:10 +01:00
Ben Halpern
94171f0cfb
Update docs on self-host page ( #14290 )
...
* Update copy on self-host page of docs
* Update copy on self-host page of docs
2021-07-20 17:31:10 -04:00
dependabot[bot]
aa570b4421
Bump redoc-cli from 0.12.1 to 0.12.2 ( #14281 )
...
Bumps [redoc-cli](https://github.com/Redocly/redoc ) from 0.12.1 to 0.12.2.
- [Release notes](https://github.com/Redocly/redoc/releases )
- [Changelog](https://github.com/Redocly/redoc/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Redocly/redoc/commits )
---
updated-dependencies:
- dependency-name: redoc-cli
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-20 16:41:44 -04:00
dependabot[bot]
8551e7294b
Bump urijs from 1.19.6 to 1.19.7 ( #14289 )
...
Bumps [urijs](https://github.com/medialize/URI.js ) from 1.19.6 to 1.19.7.
- [Release notes](https://github.com/medialize/URI.js/releases )
- [Changelog](https://github.com/medialize/URI.js/blob/gh-pages/CHANGELOG.md )
- [Commits](https://github.com/medialize/URI.js/compare/v1.19.6...v1.19.7 )
---
updated-dependencies:
- dependency-name: urijs
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-20 16:41:13 -04:00
dependabot[bot]
d09711010e
Bump autoprefixer from 10.2.6 to 10.3.1 ( #14277 )
...
Bumps [autoprefixer](https://github.com/postcss/autoprefixer ) from 10.2.6 to 10.3.1.
- [Release notes](https://github.com/postcss/autoprefixer/releases )
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md )
- [Commits](https://github.com/postcss/autoprefixer/compare/10.2.6...10.3.1 )
---
updated-dependencies:
- dependency-name: autoprefixer
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-20 16:40:12 -04:00
dependabot[bot]
4b91f7a2e6
Bump brakeman from 5.0.4 to 5.1.1 ( #14288 )
...
Bumps [brakeman](https://github.com/presidentbeef/brakeman ) from 5.0.4 to 5.1.1.
- [Release notes](https://github.com/presidentbeef/brakeman/releases )
- [Changelog](https://github.com/presidentbeef/brakeman/blob/main/CHANGES.md )
- [Commits](https://github.com/presidentbeef/brakeman/compare/v5.0.4...v5.1.1 )
---
updated-dependencies:
- dependency-name: brakeman
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-20 12:14:03 -04:00
Mac Siri
b06b446176
Allow setting nil value in Settings::Upsert ( #14228 )
2021-07-20 10:57:09 -04:00
Khadija Sidhpuri
c4185c1339
Fix shorten_urls to not remove formatting and image tags ( #14262 )
...
* fix: shorten_urls to only shorten URLs
* revert: changes to schema.rb
* modify: test to aggregate failures
Co-authored-by: rhymes <github@rhymes.dev>
* fix: shorten_urls to only strip urls
* improve: regex and variable assignments
* remove: unnecessary var assignment
Co-authored-by: rhymes <github@rhymes.dev>
2021-07-20 10:10:34 -04:00
zeotuan
9dcb332f4a
Fix Bugs in the "Copy article URL to clipboard" feature #14242 ( #14243 )
...
* change readonly input to p tag
* add pointer cursor and focus on copy post url option
* add Enter keypress eventListener to copy post url option
* add test for enter press event, refractor some test to click on copy post url option instead of just the image
* make copy post url font bold
* add scss class sidebar for dropdown && fix sidebar dropdown reaching under topheader in large screen resolution
* resolve conflict with main
* Update _actions.html.erb
* changin markup to improve accessibility
* make variable name appropriate, switch cypress to imitate user interaction
* remove dump file, fix test to use alias
2021-07-20 15:09:24 +01:00
dependabot[bot]
e354eb24e2
Bump guard from 2.17.0 to 2.18.0 ( #14287 )
...
Bumps [guard](https://github.com/guard/guard ) from 2.17.0 to 2.18.0.
- [Release notes](https://github.com/guard/guard/releases )
- [Commits](https://github.com/guard/guard/compare/v2.17.0...v2.18.0 )
---
updated-dependencies:
- dependency-name: guard
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-20 15:32:08 +02:00
dependabot[bot]
598e3d868f
Bump sass from 1.35.1 to 1.35.2 ( #14276 )
...
Bumps [sass](https://github.com/sass/dart-sass ) from 1.35.1 to 1.35.2.
- [Release notes](https://github.com/sass/dart-sass/releases )
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md )
- [Commits](https://github.com/sass/dart-sass/compare/1.35.1...1.35.2 )
---
updated-dependencies:
- dependency-name: sass
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-20 07:32:56 +01:00
dependabot[bot]
09cdc4610a
Bump honeycomb-beeline from 2.4.2 to 2.5.0 ( #14265 )
...
Bumps [honeycomb-beeline](https://github.com/honeycombio/beeline-ruby ) from 2.4.2 to 2.5.0.
- [Release notes](https://github.com/honeycombio/beeline-ruby/releases )
- [Changelog](https://github.com/honeycombio/beeline-ruby/blob/main/CHANGELOG.md )
- [Commits](https://github.com/honeycombio/beeline-ruby/compare/v2.4.2...v2.5.0 )
---
updated-dependencies:
- dependency-name: honeycomb-beeline
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-19 17:57:53 +02:00
dependabot[bot]
0afdaae5fe
Bump @testing-library/user-event from 13.1.9 to 13.2.0 ( #14279 )
...
Bumps [@testing-library/user-event](https://github.com/testing-library/user-event ) from 13.1.9 to 13.2.0.
- [Release notes](https://github.com/testing-library/user-event/releases )
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md )
- [Commits](https://github.com/testing-library/user-event/compare/v13.1.9...v13.2.0 )
---
updated-dependencies:
- dependency-name: "@testing-library/user-event"
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-19 17:55:39 +02:00
dependabot[bot]
c726c769f6
Bump @storybook/addon-links from 6.3.1 to 6.3.4 ( #14274 )
...
Bumps [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/addons/links ) from 6.3.1 to 6.3.4.
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v6.3.4/addons/links )
---
updated-dependencies:
- dependency-name: "@storybook/addon-links"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-19 16:54:13 +01:00
dependabot[bot]
16ea776ec4
Bump @storybook/addon-docs from 6.3.1 to 6.3.4 ( #14275 )
...
Bumps [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/addons/docs ) from 6.3.1 to 6.3.4.
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v6.3.4/addons/docs )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-19 15:25:59 +02:00
Suzanne Aitchison
ca5de50308
[15 min fix] Update flaky test in loggedOutFlows ( #14271 )
...
* fix flake in save click test
* rename data attr
2021-07-19 15:25:41 +02:00
Khadija Sidhpuri
2ad463f078
Allow multiple users to fetch all articles from the same RSS feed ( #14160 )
...
* fix: artiles from the same feed can be fetched from multiple accounts
* undo unintentional changes to schema.rb
* modify: article_spec and import_spec tests
* fix: failing test
* modify: import_spec:213 for user.setting
* fix: failing test import_spec:213
* add: unique index on articles canonical_url where published
* revert: schema.rb
* modify: unique url error message to include admin email
* modify: custom error message
* modify: .update to .update! (bang)
2021-07-19 15:15:32 +02:00
Rajat Talesra
b5ed02d13e
Add Rajat to core team list ( #14264 )
2021-07-19 08:41:33 -04:00
dependabot[bot]
87ff5abc10
Bump lint-staged from 11.0.0 to 11.0.1 ( #14266 )
...
Bumps [lint-staged](https://github.com/okonet/lint-staged ) from 11.0.0 to 11.0.1.
- [Release notes](https://github.com/okonet/lint-staged/releases )
- [Commits](https://github.com/okonet/lint-staged/compare/v11.0.0...v11.0.1 )
---
updated-dependencies:
- dependency-name: lint-staged
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-19 14:36:30 +02:00
dependabot[bot]
5def93a996
Bump eslint from 7.30.0 to 7.31.0 ( #14270 )
...
Bumps [eslint](https://github.com/eslint/eslint ) from 7.30.0 to 7.31.0.
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v7.30.0...v7.31.0 )
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-19 14:36:22 +02:00
dependabot[bot]
4e20d5fcd9
Bump @reach/combobox from 0.15.1 to 0.15.3 ( #14272 )
...
Bumps [@reach/combobox](https://github.com/reach/reach-ui/tree/HEAD/packages/combobox ) from 0.15.1 to 0.15.3.
- [Release notes](https://github.com/reach/reach-ui/releases )
- [Commits](https://github.com/reach/reach-ui/commits/v0.15.3/packages/combobox )
---
updated-dependencies:
- dependency-name: "@reach/combobox"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-19 14:36:16 +02:00
dependabot[bot]
4cbb4cc51f
Bump @storybook/addon-storysource from 6.3.2 to 6.3.4 ( #14268 )
...
Bumps [@storybook/addon-storysource](https://github.com/storybookjs/storybook/tree/HEAD/addons/storysource ) from 6.3.2 to 6.3.4.
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v6.3.4/addons/storysource )
---
updated-dependencies:
- dependency-name: "@storybook/addon-storysource"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-19 14:36:09 +02:00
dependabot[bot]
4c271b1edb
Bump cssom from 0.4.4 to 0.5.0 ( #14269 )
...
Bumps [cssom](https://github.com/NV/CSSOM ) from 0.4.4 to 0.5.0.
- [Release notes](https://github.com/NV/CSSOM/releases )
- [Commits](https://github.com/NV/CSSOM/commits )
---
updated-dependencies:
- dependency-name: cssom
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-19 08:13:28 -04:00
Michael Kohl
84a85fe1a4
Remove color_field input type from profiles ( #14239 )
...
* Move brand color validation to Users::Setting
* Fix specs
* Remove color_field as ProfileField input type
2021-07-19 18:42:36 +07:00
Suzanne Aitchison
bb701c4f78
Skip login modal flaky spec ( #14273 )
2021-07-19 12:31:19 +01:00
zeotuan
130c163fb6
fix podcast page missing skip functionality ( #14254 )
...
* add main-content id to podcast page
* switch to main tag to improve accessibility
2021-07-19 11:41:28 +01:00
dependabot[bot]
4f40e9fe1e
Bump @storybook/addon-a11y from 6.3.1 to 6.3.4 ( #14267 )
...
Bumps [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/addons/a11y ) from 6.3.1 to 6.3.4.
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v6.3.4/addons/a11y )
---
updated-dependencies:
- dependency-name: "@storybook/addon-a11y"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-19 10:34:49 +01:00
Keshav Biswa
247e1c48f0
Bust Content Cache after updation of Settings ( #14255 )
...
* bust content cache after settings update on admin
* removed bust_content_change_cache from the action
2021-07-19 10:20:59 +02:00
Molly Struve
d185790eed
Remove Settings Columns from User ( #14252 )
...
* Remove Settings Columns from User
* add partial feed_url index to user settings
* remove ignored columns from user model
* Update db/migrate/20210715205433_remove_settings_from_user.rb
Co-authored-by: Michael Kohl <citizen428@dev.to>
Co-authored-by: Michael Kohl <citizen428@dev.to>
2021-07-19 09:12:27 +07:00
dependabot[bot]
cd38d56e0f
Bump stripe-ruby-mock from 3.1.0.rc2 to 3.1.0.rc3 ( #14257 )
...
Bumps [stripe-ruby-mock](https://github.com/rebelidealist/stripe-ruby-mock ) from 3.1.0.rc2 to 3.1.0.rc3.
- [Release notes](https://github.com/rebelidealist/stripe-ruby-mock/releases )
- [Changelog](https://github.com/stripe-ruby-mock/stripe-ruby-mock/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rebelidealist/stripe-ruby-mock/compare/3.1.0.rc2...3.1.0.rc3 )
---
updated-dependencies:
- dependency-name: stripe-ruby-mock
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-16 13:11:57 -04:00
Nick Taylor
6fda8a7110
[15 min fix] Upgraded to Cypress 7.7.0 ( #14250 )
2021-07-16 10:28:15 -04:00