Skip to content

Commit 6fb23bb

Browse files
authored
fix(fastly): Increase maximum dictionary size to 25,000 items. (#666)
* fix(fastly): Increase maximum dictionary size to 25,000 items. * Add changelog entry.
1 parent 601549d commit 6fb23bb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
### Bug fixes:
1212

13+
- fix(fastly): Increase maximum dictionary size to 25,000 items. ([#666](https://github.com/fastly/go-fastly/pull/666))
14+
1315
### Dependencies:
1416
- build(deps): `actions/create-github-app-token` from 1 to 2 ([#654](https://github.com/fastly/go-fastly/pull/654))
1517
- build(deps): `golang.org/x/sys` from 0.31.0 to 0.32.0 ([#652](https://github.com/fastly/go-fastly/pull/652))

fastly/fastly.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const (
2626

2727
// MaximumDictionarySize represents the maximum number of items that can be
2828
// placed within an Edge Dictionary.
29-
MaximumDictionarySize = 10000
29+
MaximumDictionarySize = 25000
3030

3131
// MaximumACLSize represents the maximum number of entries that can be placed
3232
// within an ACL.

0 commit comments

Comments
 (0)