File tree 3 files changed +18
-7
lines changed
3 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 56
56
57
57
- name : Install dependencies
58
58
run : |
59
- python -m pip install --upgrade pip
60
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
61
- if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
59
+ python -m pip install --no-cache-dir -- upgrade pip
60
+ if [ -f requirements.txt ]; then pip install --no-cache-dir - r requirements.txt; fi
61
+ if [ -f requirements-dev.txt ]; then pip install --no-cache-dir - r requirements-dev.txt; fi
62
62
63
63
- name : QA checks (ruff-format, ruff-lint, mypy)
64
64
run : |
@@ -102,9 +102,9 @@ jobs:
102
102
103
103
- name : Install dependencies
104
104
run : |
105
- python -m pip install --upgrade pip
106
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
107
- if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
105
+ python -m pip install --no-cache-dir -- upgrade pip
106
+ if [ -f requirements.txt ]; then pip install --no-cache-dir - r requirements.txt; fi
107
+ if [ -f requirements-dev.txt ]; then pip install --no-cache-dir - r requirements-dev.txt; fi
108
108
109
109
- name : Run integration tests
110
110
env : # Test tenant environment variables
Original file line number Diff line number Diff line change
1
+ ## 5.0.2 (March 11, 2025)
2
+
3
+ ### New Features
4
+
5
+ - Added handling for ` doc ` and ` errorDoc ` in ` AtlanError ` .
6
+ - Introduced secure agent support in ` OracleCrawler ` .
7
+
8
+ ### QOL Improvements
9
+
10
+ - Fixed vulnerabilities reported by ` dependabot ` .
11
+
1
12
## 5.0.1 (March 03, 2025)
2
13
3
14
### New Features
Original file line number Diff line number Diff line change 1
- 5.0.1
1
+ 5.0.2
You can’t perform that action at this time.
0 commit comments