Skip to content

Commit 1917deb

Browse files
Release 2021.07.1
1 parent 0293a8d commit 1917deb

40 files changed

+1002
-4168
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
3+
package-lock.json
4+
poetry.lock
35
.python-version
46
.venv
57
_build

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ precommit:
3535
- python3 -m ensurepip
3636
- pip3 install --no-cache --upgrade pip setuptools
3737
- python3 -m pip install pre-commit
38-
- rm package-lock.json
3938
- dotnet restore "web/web.csproj"
4039
- dotnet --version
4140
script:
@@ -59,6 +58,7 @@ build_web:
5958
- public
6059
script:
6160
- cd "web"
61+
- sed -i '$s/}/,\n"banner_text":{"site_message":"Atlas Test"}}/' appsettings.json
6262
- dotnet publish -r win-x86 --self-contained false -c Release -o out
6363
artifacts:
6464
paths: ["/builds/atlas/web/atlas-dotnet/web/out/"]

.pre-commit-config.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repos:
1313

1414
# misc file cleanup
1515
- repo: https://github.com/pre-commit/pre-commit-hooks
16-
rev: v3.4.0
16+
rev: v4.0.1
1717
hooks:
1818
- id: pretty-format-json
1919
exclude: package-lock.json
@@ -26,32 +26,32 @@ repos:
2626

2727
# isort python files
2828
- repo: https://github.com/timothycrosley/isort
29-
rev: 5.7.0
29+
rev: 5.9.1
3030
hooks:
3131
- id: isort
3232
additional_dependencies: [toml]
3333
files: \.py$
3434

3535
# reformat python
3636
- repo: https://github.com/ambv/black
37-
rev: 20.8b1
37+
rev: 21.6b0
3838
hooks:
3939
- id: black
4040
files: \.py$
4141

4242
# reformat js
43-
- repo: https://github.com/pre-commit/mirrors-prettier
44-
rev: 'v2.2.1'
45-
hooks:
46-
- id: prettier
47-
name: prettier-js
48-
args: [--write,--loglevel=error]
49-
types: [javascript]
50-
files: wwwroot/js/.*.js$
43+
# - repo: https://github.com/pre-commit/mirrors-prettier
44+
# rev: 'v2.3.2'
45+
# hooks:
46+
# - id: prettier
47+
# name: prettier-js
48+
# args: [--write,--loglevel=error]
49+
# types: [javascript]
50+
# files: wwwroot/js/.*.js$
5151

5252
# reformat js
5353
- repo: https://github.com/pre-commit/mirrors-eslint
54-
rev: 'v7.19.0'
54+
rev: 'v7.29.0'
5555
hooks:
5656
- id: eslint
5757
args: [--fix]
@@ -63,7 +63,7 @@ repos:
6363

6464
# reformat css
6565
- repo: https://github.com/pre-commit/mirrors-prettier
66-
rev: 'v2.2.1'
66+
rev: 'v2.3.2'
6767
hooks:
6868
- id: prettier
6969
name: prettier-css
@@ -73,7 +73,7 @@ repos:
7373

7474
# reformat css
7575
- repo: https://github.com/awebdeveloper/pre-commit-stylelint
76-
rev: ''
76+
rev: '0.0.2'
7777
hooks:
7878
- id: stylelint
7979
files: wwwroot/css/.*.css$

docs/atlas/etl/updates/changelog.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@
1919
Changelog
2020
*********
2121

22+
Version 2021.07.1
23+
-----------------
24+
25+
- Added SlicerDicer session info to ETL
26+
- Updated certification tags to include self-service
27+
- Fixed Tableau rundata
28+
- Updated hierarchies for sessions
29+
- Added Clarity tags and tag memberships
30+
2231
Version 2021.06.1
2332
-----------------
2433

docs/atlas/updates/changelog.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,22 @@
1919
Changelog
2020
*********
2121

22+
Version 2021.07.1
23+
-----------------
24+
25+
- Added ShortName column to ReportObjectType
26+
- Added report tags for Clarity reports
27+
- Added projects to report relationships
28+
- Added Self-Service certification tag
29+
- Added SSRS Files to search
30+
- Removed hardcoded report types from search
31+
- Updated report editor to be able to add data projects to reports
32+
- Modified ReportObjectType table to include visibility
33+
- Added optional banner text to config file
34+
- Fixed script errors on projects page
35+
- Updated metrics to include components in relationships
36+
- Modified report editor to only close on x
37+
2238
Version 2021.06.1
2339
-----------------
2440

0 commit comments

Comments
 (0)