Skip to content

Commit

Permalink
Release 2021.07.1
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherpickering committed Jul 23, 2021
1 parent 0293a8d commit 1917deb
Show file tree
Hide file tree
Showing 40 changed files with 1,002 additions and 4,168 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
package-lock.json
poetry.lock
.python-version
.venv
_build
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ precommit:
- python3 -m ensurepip
- pip3 install --no-cache --upgrade pip setuptools
- python3 -m pip install pre-commit
- rm package-lock.json
- dotnet restore "web/web.csproj"
- dotnet --version
script:
Expand All @@ -59,6 +58,7 @@ build_web:
- public
script:
- cd "web"
- sed -i '$s/}/,\n"banner_text":{"site_message":"Atlas Test"}}/' appsettings.json
- dotnet publish -r win-x86 --self-contained false -c Release -o out
artifacts:
paths: ["/builds/atlas/web/atlas-dotnet/web/out/"]
Expand Down
28 changes: 14 additions & 14 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repos:

# misc file cleanup
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
rev: v4.0.1
hooks:
- id: pretty-format-json
exclude: package-lock.json
Expand All @@ -26,32 +26,32 @@ repos:

# isort python files
- repo: https://github.com/timothycrosley/isort
rev: 5.7.0
rev: 5.9.1
hooks:
- id: isort
additional_dependencies: [toml]
files: \.py$

# reformat python
- repo: https://github.com/ambv/black
rev: 20.8b1
rev: 21.6b0
hooks:
- id: black
files: \.py$

# reformat js
- repo: https://github.com/pre-commit/mirrors-prettier
rev: 'v2.2.1'
hooks:
- id: prettier
name: prettier-js
args: [--write,--loglevel=error]
types: [javascript]
files: wwwroot/js/.*.js$
# - repo: https://github.com/pre-commit/mirrors-prettier
# rev: 'v2.3.2'
# hooks:
# - id: prettier
# name: prettier-js
# args: [--write,--loglevel=error]
# types: [javascript]
# files: wwwroot/js/.*.js$

# reformat js
- repo: https://github.com/pre-commit/mirrors-eslint
rev: 'v7.19.0'
rev: 'v7.29.0'
hooks:
- id: eslint
args: [--fix]
Expand All @@ -63,7 +63,7 @@ repos:

# reformat css
- repo: https://github.com/pre-commit/mirrors-prettier
rev: 'v2.2.1'
rev: 'v2.3.2'
hooks:
- id: prettier
name: prettier-css
Expand All @@ -73,7 +73,7 @@ repos:

# reformat css
- repo: https://github.com/awebdeveloper/pre-commit-stylelint
rev: ''
rev: '0.0.2'
hooks:
- id: stylelint
files: wwwroot/css/.*.css$
Expand Down
9 changes: 9 additions & 0 deletions docs/atlas/etl/updates/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@
Changelog
*********

Version 2021.07.1
-----------------

- Added SlicerDicer session info to ETL
- Updated certification tags to include self-service
- Fixed Tableau rundata
- Updated hierarchies for sessions
- Added Clarity tags and tag memberships

Version 2021.06.1
-----------------

Expand Down
16 changes: 16 additions & 0 deletions docs/atlas/updates/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,22 @@
Changelog
*********

Version 2021.07.1
-----------------

- Added ShortName column to ReportObjectType
- Added report tags for Clarity reports
- Added projects to report relationships
- Added Self-Service certification tag
- Added SSRS Files to search
- Removed hardcoded report types from search
- Updated report editor to be able to add data projects to reports
- Modified ReportObjectType table to include visibility
- Added optional banner text to config file
- Fixed script errors on projects page
- Updated metrics to include components in relationships
- Modified report editor to only close on x

Version 2021.06.1
-----------------

Expand Down
Loading

0 comments on commit 1917deb

Please sign in to comment.