Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
frocher committed Jun 13, 2021
2 parents 8cdd9f9 + 0bb7052 commit fbe6323
Show file tree
Hide file tree
Showing 132 changed files with 5,317 additions and 4,402 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.0]
### Added
- Ecoindex monitoring
- Random color for new page instead of grey.
- Treemap chart for resources details page.
- Downtime information directly on page card.
- Description field on pages.
- CHANGELOG file.
### Changed
- Directories layout in front component.
- Uptime details page improved with a more compact view of downtimes and uptimes.
- New component for HAR view in resources details page.
- Bump lighthouse version to 8.0.0.
- Bump Chartjs version to 3.x.

### Fixed
- Enter key not working on signin and signup forms.

## [1.1.1] - 2021-02-18
### Fixed
- Redirect url on signup
- Redirect url on password forgotten submission
## [1.1.0] - 2021-02-10
### Added
- Account deletion feature.
- Lighthouse performance indicator on page thumbnails.
- Explanation of roles in Members page.
- robots.txt
### Changed
- Improved mails layout.
- Bump lighthouse version to 7.0.1.
### Fixed
- Role bug when a team member is added.

## [1.0.1] - 2020-12-22
### Fixed
- Probe behavior for lighthouse and har tests.

## [1.0.0] - 2020-12-13
### Added
- Initial release.

12 changes: 12 additions & 0 deletions backend/.rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Metrics/AbcSize:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Style/ClassAndModuleChildren:
EnforcedStyle: compact
Style/SymbolArray:
EnforcedStyle: brackets
Style/WordArray:
EnforcedStyle: brackets
7 changes: 4 additions & 3 deletions backend/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ gem 'slim'
gem 'chronic_duration'

# Auth
gem 'omniauth', '=1.9.1'
gem 'devise_token_auth', '>= 0.1.42'
gem 'omniauth'
gem 'omniauth-rails_csrf_protection'
gem 'devise_token_auth'
gem 'omniauth-github'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
Expand All @@ -59,7 +60,7 @@ group :development, :test do
end

group :development do
gem 'listen', '>= 3.0.5', '< 3.3'
gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
Expand Down
Loading

0 comments on commit fbe6323

Please sign in to comment.