Skip to content

Commit 06ad222

Browse files
authored
Merge branch 'master' into dkoston/add_list_ip_access_rules
2 parents eda96dc + a73c18e commit 06ad222

25 files changed

+1618
-162
lines changed

.changelog/1427.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
```release-note:enhancement
2+
access_seats: Add UpdateAccessUserSeat() to list IP Access Rules
3+
```
4+
5+
```release-note:enhancement
6+
access_user: Add GetAccessUserActiveSessions() to get all active sessions for a Access/Zero-Trust user.
7+
```
8+
9+
```release-note:enhancement
10+
access_user: Add GetAccessUserSingleActiveSession() to get an active session for a Access/Zero-Trust user.
11+
```
12+
13+
```release-note:enhancement
14+
access_user: Add GetAccessUserFailedLogins() to get all failed login attempts for a Access/Zero-Trust user.
15+
```
16+
17+
```release-note:enhancement
18+
access_user: Add GetAccessUserLastSeenIdentity() to get last seen identity for a Access/Zero-Trust user.
19+
```
20+
21+
```release-note:enhancement
22+
access_user: Add ListAccessUsers() to get a list of users for a Access/Zero-Trust account.
23+
```

.changelog/1433.txt

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
```release-note:breaking-change
2+
devices_policy: `UpdateDeviceClientCertificatesZone` is renamed to `UpdateDeviceClientCertificates` with updated method signatures
3+
```
4+
5+
```release-note:breaking-change
6+
devices_policy: `GetDeviceClientCertificatesZone` is renamed to `GetDeviceClientCertificates` with updated method signatures
7+
```
8+
9+
```release-note:breaking-change
10+
devices_policy: `DeviceClientCertificates` is renamed to `DeviceClientCertificates`
11+
```
12+
13+
```release-note:breaking-change
14+
devices_policy: `GetDeviceClientCertificates` is updated with method signatures matching the library conventions
15+
```
16+
17+
```release-note:breaking-change
18+
devices_policy: `CreateDeviceSettingsPolicy` is updated with method signatures matching the library conventions
19+
```
20+
21+
```release-note:breaking-change
22+
devices_policy: `UpdateDefaultDeviceSettingsPolicy` is updated with method signatures matching the library conventions
23+
```
24+
25+
```release-note:breaking-change
26+
devices_policy: `UpdateDeviceSettingsPolicy` is updated with method signatures matching the library conventions
27+
```
28+
29+
```release-note:breaking-change
30+
devices_policy: `DeleteDeviceSettingsPolicy` is updated with method signatures matching the library conventions
31+
```
32+
33+
```release-note:breaking-change
34+
devices_policy: `GetDefaultDeviceSettingsPolicy` is updated with method signatures matching the library conventions
35+
```
36+
37+
```release-note:breaking-change
38+
devices_policy: `GetDeviceSettingsPolicy` is updated with method signatures matching the library conventions
39+
```
40+
41+
```release-note:enhancement
42+
devices_policy: Add support for listing device settings policies
43+
```

.changelog/1434.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:dependency
2+
deps: bumps golang.org/x/time from 0.3.0 to 0.4.0
3+
```

.changelog/1436.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
teams_rules: Add support for resolver policies
3+
```

.changelog/1438.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:dependency
2+
deps: bumps github.com/hashicorp/go-retryablehttp from 0.7.4 to 0.7.5
3+
```

.changelog/1439.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:dependency
2+
deps: bumps golang.org/x/net from 0.17.0 to 0.18.0
3+
```

.changelog/1440.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
per_hostname_tls_setting: use `buildURI` for defining the query parameters when sorting
3+
```

.changelog/1441.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
load_balancing: Add support for virtual network id in origins
3+
```

.github/dependabot.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
version: 2
22
updates:
3-
- package-ecosystem: gomod
3+
- package-ecosystem: "gomod"
44
directory: "/"
55
schedule:
6-
interval: daily
6+
interval: "daily"
77
- package-ecosystem: "github-actions"
88
directory: "/"
99
schedule:
1010
interval: "daily"
11+
- package-ecosystem: "docker"
12+
directory: "/"
13+
schedule:
14+
interval: "daily"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: ["1.18", "1.19", "1.20"]
7+
go-version: ["1.19", "1.20", "1.21"]
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/setup-go@v4

0 commit comments

Comments
 (0)