Skip to content

Commit

Permalink
Merge pull request #3802 from sharetribe/go-release-8-0-0
Browse files Browse the repository at this point in the history
Release 8.0.0
  • Loading branch information
thomasmalbaux committed Jul 31, 2019
2 parents e88b8fe + 80e3012 commit 141e838
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 6 deletions.
46 changes: 45 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,56 @@ This file follows the best practices from [keepachangelog.com](http://keepachang

### Changed

### Deprecated

### Removed

### Fixed

### Security

## [8.0.0] - 2019-07-31

### Added

- Use index hint for homepage query [#3714](https://github.com/sharetribe/sharetribe/pull/3714)
- Add Albanian to the list of unsupported languages [#3718](https://github.com/sharetribe/sharetribe/pull/3718)
- Add Macedonian to the list of unsupported languages [#3725](https://github.com/sharetribe/sharetribe/pull/3725)
- Ability for providers to delete listings [#3756](https://github.com/sharetribe/sharetribe/pull/3756)
- Stripe support for Singapore [#3762](https://github.com/sharetribe/sharetribe/pull/3762)
- Cache community count [#3766](https://github.com/sharetribe/sharetribe/pull/3766)
- Ability to export listings to a CSV file [#3790](https://github.com/sharetribe/sharetribe/pull/3790)
- Allow admins to disable direct messaging between users [#3793](https://github.com/sharetribe/sharetribe/pull/3793)
- Add .html_safe to content for title [#3744](https://github.com/sharetribe/sharetribe/pull/3744)

### Changed

- Update to ruby 2.6.2 [#3701](https://github.com/sharetribe/sharetribe/pull/3701)
- Add more bot rules, disallow login paths [#3715](https://github.com/sharetribe/sharetribe/pull/3715)
- Update to Rails 5.2.3 [#3722](https://github.com/sharetribe/sharetribe/pull/3722)
- Prevent lowering minimum transaction size to less than minimum transaction fee with Stripe [#3723](https://github.com/sharetribe/sharetribe/pull/3723)
- Update to Node.js 10.15 [#3735](https://github.com/sharetribe/sharetribe/pull/3735)
- Updates to payment preference settings [#3748](https://github.com/sharetribe/sharetribe/pull/3748)
- Updated copy text from Ban to Disable [#3755](https://github.com/sharetribe/sharetribe/pull/3755)
- Category translation caching improvements [#3761](https://github.com/sharetribe/sharetribe/pull/3761)
- Stripe remove the MCC field and hardcode it [#3771](https://github.com/sharetribe/sharetribe/pull/3771)
- Move "Phone number" field down in US Stripe form [#3775](https://github.com/sharetribe/sharetribe/pull/3775)

### Deprecated

### Removed

### Fixed

- Fix to the SEO tags without price translation string [#3727](https://github.com/sharetribe/sharetribe/pull/3727)
- Fix to payment settings causing internal error when PayPal has never been enabled [#3732](https://github.com/sharetribe/sharetribe/pull/3732)
- Fix to password reset [#3763](https://github.com/sharetribe/sharetribe/pull/3763)
- Fix to Stripe US account update [#3765](https://github.com/sharetribe/sharetribe/pull/3765)
- Fix to adding links to footer [#3769](https://github.com/sharetribe/sharetribe/pull/3769)
- Fix to validation for custom date fields [#3772](https://github.com/sharetribe/sharetribe/pull/3772)
- Fix to exclude expired listings when filtering for open [#3773](https://github.com/sharetribe/sharetribe/pull/3773)
- Fix to signup page description tag [#3794](https://github.com/sharetribe/sharetribe/pull/3794)

### Security


Expand Down Expand Up @@ -673,7 +715,9 @@ This file follows the best practices from [keepachangelog.com](http://keepachang

For older releases, see [RELEASE_NOTES.md](https://github.com/sharetribe/sharetribe/blob/v5.0.0/RELEASE_NOTES.md).

[Unreleased]: https://github.com/sharetribe/sharetribe/compare/v7.5.0...HEAD
[Unreleased]: https://github.com/sharetribe/sharetribe/compare/v8.0.0...HEAD
[8.0.0]: https://github.com/sharetribe/sharetribe/compare/v7.6.0...v8.0.0
[7.6.0]: https://github.com/sharetribe/sharetribe/compare/v7.5.0...v7.6.0
[7.5.0]: https://github.com/sharetribe/sharetribe/compare/v7.4.0...v7.5.0
[7.4.0]: https://github.com/sharetribe/sharetribe/compare/v7.3.1...v7.4.0
[7.3.1]: https://github.com/sharetribe/sharetribe/compare/v7.3.0...v7.3.1
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ Would you like to work with an API-based marketplace solution that allows you to
## Technology stack

- Ruby 2.6
- Ruby on Rails 5.1.1
- MySQL 5.7
- Ruby on Rails 5.2.3
- MySQL 5.7
- React + jQuery
- Node.js 7.8 (for compiling JavaScript assets)
- Node.js 10.15 (for compiling JavaScript assets)
- "what you see is what you get" Editor [Mercury](http://jejacks0n.github.io/mercury/)
- Deploy: Custom Script (not using Mina or Cap3)
- Server: Heroku
Expand Down
12 changes: 11 additions & 1 deletion UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ heroku config:set next_maintenance_at="2016-04-29 17:15:00 +0000" --app=<your ap

See instructions how to set application in [maintenance mode in Heroku](https://devcenter.heroku.com/articles/maintenance-mode).

## Unreleased
## Upgrade from 7.6.0 to 8.0.0

Ruby version updated from 2.3.4 to 2.6.2.

Expand All @@ -51,6 +51,16 @@ gem install bundler
bundle install
```

Make sure you have node 10.15 installed.

Then follow the [#general-update-instructions].

One more note: after the Rails upgrade, "Memcache" is possibly no longer working. It was never officially supported, and at Sharetribe we rely on Redis.

- If you use Redis, run `Rails.cache.clear` via the Rails console
- If you use Memcache, things might be broken and you might need to switch to Redis
- If you didn't use either, no special instructions

## Upgrade from 7.5.0 to 7.6.0

Nothing special. See the [#general-update-instructions].
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.6.0
8.0.0

0 comments on commit 141e838

Please sign in to comment.